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

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

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..

link|improve this answer
Thank you so much! – Dan the Man Feb 11 '11 at 22:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.