Monkey V66: android opengl2.0 problems

Monkey Forums/Monkey Bug Reports/Monkey V66: android opengl2.0 problems

AdamRedwoods(Posted 2012) [#1]
This line did not pick up in android mojo:
if( MonkeyConfig.OPENGL_GLES20_ENABLED.equals( "1" ) ){

I changed it to "true" and then Opengl2.0 was picked up, otherwise it wasn't.


But even after the change, I was getting
"called unimplemented OpenGL ES API" errors.

Can't figure out why, since I was able to run opengles2.0 before.


AdamRedwoods(Posted 2012) [#2]
I'm going to add to this Bug Report:

Even with "mak/gles20cube.monkey" test, I'm getting a large number of
"libEGL called unimplemented opengl es api" errors.

The app works, but these errors appear.

EDIT:
the reason is another
MonkeyConfig.OPENGL_GLES20_ENABLED.equals( "1" )
not working in android mojo. works better with "true"

EDIT:
Also i've been having problems with android 2.2 opengles20
#ANDROID_NATIVE_GL_ENABLED="true" ''did not work
#ANDROID_NATIVE_GL_ENABLED=True ''did work


UDPATE
okok, so i didn't know the entire monkey config was set to not use quotes for numbers and booleans, so this may not be a problem anymore. will test.