Android runs OpenGL ES 1.1 or 1.0?
Posted
by cjserio
on Stack Overflow
See other posts from Stack Overflow
or by cjserio
Published on 2010-01-12T05:13:15Z
Indexed on
2010/05/25
6:21 UTC
Read the original article
Hit count: 189
I'm developing a native app for Android and I'm trying to use functions such as glIsEnabled which appear to be only available in OpenGL ES 1.1. Google's docs claim that NDK 1.6R1 supports OpenGL ES v1.1 but the function call fails with "unimplemented Open GL ES API" and if i do a glGetString(GL_VERSION) it returns "OpenGL ES 1.0 CM" as the version.
So if 1.1 is available, what do I have to link against to get it or what else do i need to change to get it?
© Stack Overflow or respective owner