Reputation: 1100
How can I get list of opengl extensions in Android, if I not have reference for GL10 context, and create own one is not an option coz it's to long.
Upvotes: 1
Views: 1227
Reputation: 9995
You can use this extension viewer: https://play.google.com/store/apps/details?id=com.realtechvr.glview
or you can query the extensions via this call:
GLES20.glGetString(GLES20.GL_EXTENSIONS)
Upvotes: 3