README 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. Repro steps:
  2. build, install and run the attached test program TestEgl.apk
  3. The program does not draw anything to the screen, it just prints to the log, so use adb logcat to watch the output.
  4. Expected behavior:
  5. constantly increasing "step" count:
  6. W/TestActivity( 1885): ****** step 235 resume
  7. W/TestActivity( 1885): step 236 pause
  8. W/TestActivity( 1885): ****** step 236 resume
  9. and so on.
  10. Actual behavior:
  11. W/TestActivity( 1466): ****** step 25 resume
  12. W/TestActivity( 1466): step 26 pause
  13. W/TestActivity( 1466): ****** step 26 resume
  14. W/dalvikvm( 1466): threadid=8: thread exiting with uncaught exception (group=0x4001d7f0)
  15. E/AndroidRuntime( 1466): FATAL EXCEPTION: GLThread 9
  16. E/AndroidRuntime( 1466): java.lang.RuntimeException: createContext failed: EGL_BAD_ALLOC
  17. E/AndroidRuntime( 1466): at android.opengl.GLSurfaceView$EglHelper.throwEglException(GLSurfaceView.java:1067)
  18. E/AndroidRuntime( 1466): at android.opengl.GLSurfaceView$EglHelper.throwEglException(GLSurfaceView.java:1059)
  19. E/AndroidRuntime( 1466): at android.opengl.GLSurfaceView$EglHelper.start(GLSurfaceView.java:925)
  20. E/AndroidRuntime( 1466): at android.opengl.GLSurfaceView$GLThread.guardedRun(GLSurfaceView.java:1236)
  21. E/AndroidRuntime( 1466): at android.opengl.GLSurfaceView$GLThread.run(GLSurfaceView.java:1106)
  22. W/TestActivity( 1466): step 27 pause
  23. W/TestActivity( 1466): ****** step 27 resume
  24. W/TestActivity( 1466): step 28 pause
  25. W/TestActivity( 1466): ****** step 28 resume
  26. See http://b/issue?id=2550745 for further details.