summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJack Palevich <jackpal@google.com>2009-10-13 20:10:19 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-13 20:10:19 -0700
commita0fb8eb138b946231113b1fbdd1059ea2346ef3a (patch)
tree7fb11cf2fec13ee717e0629fc834a8171528ad09
parent86a19b3d2c873113d6da49257cf720f90d1c2498 (diff)
parent09e7ef8aadb480349e9f63dcab155cb466296e92 (diff)
downloadframeworks_base-a0fb8eb138b946231113b1fbdd1059ea2346ef3a.zip
frameworks_base-a0fb8eb138b946231113b1fbdd1059ea2346ef3a.tar.gz
frameworks_base-a0fb8eb138b946231113b1fbdd1059ea2346ef3a.tar.bz2
am 09e7ef8a: am a5bfe52d: Merge change Ib3558f35 into eclair-mr2
Merge commit '09e7ef8aadb480349e9f63dcab155cb466296e92' * commit '09e7ef8aadb480349e9f63dcab155cb466296e92': Make our choice of surface explicit.
-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);