fixes "white screen" bug

This commit is contained in:
rachytski 2011-02-17 23:09:45 +02:00 committed by Alex Zolotarev
parent 0aa0d5ea16
commit 4bcea3c763

View file

@ -41,12 +41,12 @@
eaglLayer.opaque = YES;
/// ColorFormat : RGBA8
/// Backbuffer : NO
/// ColorFormat : RGB565
/// Backbuffer : YES, (to prevent from loosing content when mixing with ordinary layers).
eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:NO],
[NSNumber numberWithBool:YES],
kEAGLDrawablePropertyRetainedBacking,
kEAGLColorFormatRGBA8,
kEAGLColorFormatRGB565,
kEAGLDrawablePropertyColorFormat,
nil];