Cocos2D 0.99.5 CCDirector 像素格式?

发布于 2024-10-17 00:31:30 字数 82 浏览 2 评论 0原文

我正在尝试在 CCDirector 中设置像素格式,但找不到该方法。

我的cocos2d版本好像没有这个方法?

奇怪的

I'm trying to set the pixel format in my CCDirector but i can't find the method.

It seems to me that my version of cocos2d doesn't have that method??

Strange

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

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

发布评论

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

评论(1

暖阳 2024-10-24 00:31:30

在您的应用程序委托中,查找此行:

EAGLView *glView = [EAGLView viewWithFrame:[window bounds]
                               pixelFormat:kEAGLColorFormatRGB565   // kEAGLColorFormatRGBA8
                               depthFormat:0                        // GL_DEPTH_COMPONENT16_OES
                    ];

或搜索

EAGLView *glView 

,您会找到它..

In your app delegate, look for this line:

EAGLView *glView = [EAGLView viewWithFrame:[window bounds]
                               pixelFormat:kEAGLColorFormatRGB565   // kEAGLColorFormatRGBA8
                               depthFormat:0                        // GL_DEPTH_COMPONENT16_OES
                    ];

or search for

EAGLView *glView 

and you will find it..

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