forked from organicmaps/organicmaps
[iOS] Make texture format always 565 for EAGLView, as it works on 3G and consumes less memory
This commit is contained in:
parent
dcab3decb7
commit
0bb9e03036
1 changed files with 2 additions and 6 deletions
|
@ -51,21 +51,17 @@
|
|||
|
||||
renderContext->makeCurrent();
|
||||
|
||||
// to avoid grid bug on 3G device
|
||||
yg::RtFormat fmt = yg::Rt4Bpp;
|
||||
NSString * layerFmt = kEAGLColorFormatRGB565;
|
||||
|
||||
if ([[NSString stringWithFormat:@"%s", glGetString(GL_RENDERER)] hasPrefix:@"PowerVR MBX"])
|
||||
{
|
||||
fmt = yg::Rt8Bpp;
|
||||
layerFmt = kEAGLColorFormatRGBA8;
|
||||
}
|
||||
|
||||
/// ColorFormat : RGB565
|
||||
/// Backbuffer : YES, (to prevent from loosing content when mixing with ordinary layers).
|
||||
eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys:
|
||||
[NSNumber numberWithBool:NO],
|
||||
kEAGLDrawablePropertyRetainedBacking,
|
||||
layerFmt,
|
||||
kEAGLColorFormatRGB565,
|
||||
kEAGLDrawablePropertyColorFormat,
|
||||
nil];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue