Hi all,
I'm getting a couple of warnings when compiling against v0.99.5-rc0, any ideas how to fix these? Thanks.
warning: no '-initWithFrame:pixelFormat:depthFormat:preserveBackbuffer:' method found
warning: 'initWithName:delay:frames:' is deprecated
The code that generates the first warning is:
glView = [[EAGLView alloc]
initWithFrame:[window bounds]
pixelFormat:kEAGLColorFormatRGB565 // we conserve video memory here
depthFormat:GL_DEPTH_COMPONENT24_OES // we need a depth buffer for better z ordering
preserveBackbuffer:NO];
The code that generates the second warning is:
self = [self initWithName:nameFormat delay:delay frames:animFrames];