summaryrefslogtreecommitdiff
path: root/opengl
diff options
context:
space:
mode:
author Jeff Hamilton <jham@android.com> 2009-09-25 21:56:25 -0500
committer Jeff Hamilton <jham@android.com> 2009-09-25 21:56:25 -0500
commit1e8393fab54ec7562db51eee801f61dbb647428c (patch)
tree2ce8bf8ab5c289935a2ac4c586ed4c8de2ffa9b8 /opengl
parent9ec779dab3b1b21eacd1e46b5476e12761130c96 (diff)
Fix the build.
Change-Id: Ie4b61f8e8dde864c4d99b8723cd5ff290a373279
Diffstat (limited to 'opengl')
-rw-r--r--opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java b/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
index 8b94deca96..2dae090950 100644
--- a/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
+++ b/opengl/tests/gl2_jni/src/com/android/gl2jni/GL2JNIView.java
@@ -118,7 +118,7 @@ class GL2JNIView extends GLSurfaceView {
}
EGLConfig[] configs = new EGLConfig[numConfigs];
egl.eglChooseConfig(display, s_configAttribs2, configs, numConfigs, num_config);
- return configs[0s];
+ return configs[0];
}
}