I am developing a native Android application, and I am trying to use features like glIsEnabled, which seem to be available only in OpenGL ES 1.1. Google docs claim that NDK 1.6R1 supports OpenGL ES v1.1, but the function call fails with the "unrealized Open GL ES API", and if I do glGetString (GL_VERSION), it returns "OpenGL ES 1.0 CM" as the version.
So, if 1.1 is available, what do I need to bind to get it, or what else do I need to change to get it?
source
share