Android Cocos2d Xoom 图像像素化问题

发布于 2024-12-06 06:52:08 字数 872 浏览 1 评论 0 原文

我正在使用 Android Cocos2d Ref。 (http://code.google.com/p/cocos2d-android-1)。

所有功能均可在标准设备、三星平板电脑(1024*600 分辨率)下正常运行。 问题始于 Motorola Xoom (1280*800)。

Cocos2d不支持高于1024的图像分辨率吗?

如果有任何其他替代 Cocos2d 源,请告诉我。

我附上了3张图片.. Rainbow.jpg - 原始图像 原始图像

cocos_github_issue.png - 使用 (http://code.google.com/p/cocos2d-android) 在此处输入图像描述

cocos_lib_issue.png - 使用 (http://github.com/ZhouWeikuan/cocos2d) 在此处输入图像描述

I am working with Android Cocos2d Ref. (http://code.google.com/p/cocos2d-android-1).

All the things working fine with Standard Device, Samsung Tablet with (1024*600 Resolution).
Problem starts with Motorola Xoom (1280*800).

Is the Cocos2d not supporting Image Resolution higher that 1024?

Let me know If there is any other alternate Cocos2d source.

I have attached 3 Images..
rainbow.jpg - Original Image
Original Image

cocos_github_issue.png - Image that is rendering on device by using (http://code.google.com/p/cocos2d-android)
enter image description here

cocos_lib_issue.png - Image that is rendering on device by using (http://github.com/ZhouWeikuan/cocos2d)
enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一抹微笑 2024-12-13 06:52:08

Cocos2d不支持高于1024的图像分辨率吗?

这可能是正确的。在 ios 上,大多数设备的最大尺寸不可达 2048,但较旧的设备仍限制为最大尺寸 1024。我认为这是 OpenGL 的限制而不是 Cocos2d 的限制。我相信 OpenGL 1.1 及更低版本仅限于 1024 * 1024 纹理。

如果您可以直接调用 opengl 调用,请尝试与此等效的 Java:

glGetIntegerv(GL_MAX_TEXTURE_SIZE, &result);

Is the Cocos2d not supporting Image Resolution higher that 1024?

That's likely correct. On ios it's not upto 2048 on most devices, but older devices are still limited to 1024 max size. I think this is an OpenGL limitation rather than Cocos2d. OpenGL 1.1 and lower are, I believe, limited to 1024 * 1024 textures.

If you can call opengl calls directly, try the Java equivalent of this:

glGetIntegerv(GL_MAX_TEXTURE_SIZE, &result);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文