From 29e0bd2f5a80fdfe0e5b482a1df86363afcecbfa Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 18 Sep 2012 15:36:10 -0700 Subject: GLSurfaceView defaults to 888 instead of 565 Change-Id: Ie00fe578136365031e4bb878a04b68dc40e24b9e --- opengl/java/android/opengl/GLSurfaceView.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'opengl/java') diff --git a/opengl/java/android/opengl/GLSurfaceView.java b/opengl/java/android/opengl/GLSurfaceView.java index 8acbae3..54dcaaa 100644 --- a/opengl/java/android/opengl/GLSurfaceView.java +++ b/opengl/java/android/opengl/GLSurfaceView.java @@ -83,7 +83,7 @@ import android.view.SurfaceView; * *

*

Specifying the android.view.Surface

- * By default GLSurfaceView will create a PixelFormat.RGB_565 format surface. If a translucent + * By default GLSurfaceView will create a PixelFormat.RGB_888 format surface. If a translucent * surface is required, call getHolder().setFormat(PixelFormat.TRANSLUCENT). * The exact format of a TRANSLUCENT surface is device dependent, but it will be * a 32-bit-per-pixel surface with 8 bits per component. @@ -94,7 +94,7 @@ import android.view.SurfaceView; * well as how many bits are allocated to each channel. Therefore, the first thing * GLSurfaceView has to do when starting to render is choose what EGLConfig to use. *

- * By default GLSurfaceView chooses a EGLConfig that has an RGB_565 pixel format, + * By default GLSurfaceView chooses a EGLConfig that has an RGB_888 pixel format, * with at least a 16-bit depth buffer and no stencil. *

* If you would prefer a different EGLConfig @@ -414,7 +414,7 @@ public class GLSurfaceView extends SurfaceView implements SurfaceHolder.Callback * is called. *

* If no setEGLConfigChooser method is called, then by default the - * view will choose an RGB_565 surface with a depth buffer depth of + * view will choose an RGB_888 surface with a depth buffer depth of * at least 16 bits. * * @param needDepth @@ -432,7 +432,7 @@ public class GLSurfaceView extends SurfaceView implements SurfaceHolder.Callback * is called. *

* If no setEGLConfigChooser method is called, then by default the - * view will choose an RGB_565 surface with a depth buffer depth of + * view will choose an RGB_888 surface with a depth buffer depth of * at least 16 bits. * */ @@ -968,13 +968,13 @@ public class GLSurfaceView extends SurfaceView implements SurfaceHolder.Callback } /** - * This class will choose a RGB_565 surface with + * This class will choose a RGB_888 surface with * or without a depth buffer. * */ private class SimpleEGLConfigChooser extends ComponentSizeChooser { public SimpleEGLConfigChooser(boolean withDepthBuffer) { - super(5, 6, 5, 0, withDepthBuffer ? 16 : 0, 0); + super(8, 8, 8, 0, withDepthBuffer ? 16 : 0, 0); } } -- cgit v1.1