summaryrefslogtreecommitdiffstats
path: root/opengl
diff options
context:
space:
mode:
Diffstat (limited to 'opengl')
-rw-r--r--opengl/tests/gldual/src/com/android/gldual/GLDualActivity.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/opengl/tests/gldual/src/com/android/gldual/GLDualActivity.java b/opengl/tests/gldual/src/com/android/gldual/GLDualActivity.java
index a4f25fa..9d88f64 100644
--- a/opengl/tests/gldual/src/com/android/gldual/GLDualActivity.java
+++ b/opengl/tests/gldual/src/com/android/gldual/GLDualActivity.java
@@ -33,6 +33,7 @@ public class GLDualActivity extends Activity {
super.onCreate(icicle);
View root = getLayoutInflater().inflate(R.layout.gldual_activity, null);
mGLView = (GLSurfaceView) root.findViewById(R.id.gl1);
+ mGLView.setEGLConfigChooser(5,6,5,0,0,0);
mGLView.setRenderer(new TriangleRenderer());
mGL2View = (GLDualGL2View) root.findViewById(R.id.gl2);
setContentView(root);