November 21st, 2011, 08:28 PM
|
#1 (permalink)
|
|
New Member
Join Date: Nov 2011
Posts: 1
Device(s):
Thanks: 0
Thanked 0 Times in 0 Posts
|
OpenGL ES 2 seems to crash
Hi, I'm new to Java and Android. I quickly put my focus to OpenGL ES 2. When my emulator (API 14.0) is running, I can go through API Demos and select BasicGLSurfaceView (OpenGLES2), the app runs and a triangle spins. When I load the project into Eclipse and build, the same program stops working in the emulator as soon as I unlock the phone and let it load, or load it from list of apps. For this reason, I'm 90% sure the problem is Eclipse building it. I've already spent 2 days trying to resolve this and it's frustrating. I've reinstalled already and have everything properly installed. This seems to be the only problem of its kind- Ive googled for hours, so probably a stupid error
Heres what I get from running the untouched sample into Eclipse
Logcat at crash-----------------
11-19 21:35:52.887: E/AndroidRuntime(556): FATAL EXCEPTION: GLThread 75
11-19 21:35:52.887: E/AndroidRuntime(556): java.lang.IllegalArgumentException: No configs match configSpec
11-19 21:35:52.887: E/AndroidRuntime(556): at android.opengl.GLSurfaceView$BaseConfigChooser.cho oseConfig(GLSurfaceView.java:825)
11-19 21:35:52.887: E/AndroidRuntime(556): at android.opengl.GLSurfaceView$EglHelper.start(GLSur faceView.java:981)
11-19 21:35:52.887: E/AndroidRuntime(556): at android.opengl.GLSurfaceView$GLThread.guardedRun(G LSurfaceView.java:1335)
11-19 21:35:52.887: E/AndroidRuntime(556): at android.opengl.GLSurfaceView$GLThread.run(GLSurfac eView.java:1189)
Console------------------------------
[2011-11-19 21:34:40 - BasicGLSurfaceView] New emulator found: emulator-5554
[2011-11-19 21:34:40 - BasicGLSurfaceView] Waiting for HOME('android.process.acore') to be launched...
[2011-11-19 21:35:16 - BasicGLSurfaceView] WARNING: Application does not specify an API level requirement!
[2011-11-19 21:35:16 - BasicGLSurfaceView] Device API version is 14 (Android 4.0.1)
[2011-11-19 21:35:16 - BasicGLSurfaceView] HOME is up on device 'emulator-5554'
[2011-11-19 21:35:16 - BasicGLSurfaceView] Uploading BasicGLSurfaceView.apk onto device 'emulator-5554'
[2011-11-19 21:35:16 - BasicGLSurfaceView] Installing BasicGLSurfaceView.apk...
[2011-11-19 21:35:49 - BasicGLSurfaceView] Success!
[2011-11-19 21:35:50 - BasicGLSurfaceView] Starting activity com.example.android.basicglsurfaceview.BasicGLSurf aceViewActivity on device emulator-5554
[2011-11-19 21:35:52 - BasicGLSurfaceView] ActivityManager: Starting: Intent { act=...
|
|
|
Last edited by stephenl7797; November 21st, 2011 at 08:33 PM.
|
|