• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

How do I actually use OpenGL ES 3.2 for android?

suicune

Lurker
I want to use version 3.2 so i put this in my manifest xml:
uses-feature android:glEsVersion=“0x00030002” android:required=“true”

However it still seems to be using version 3.0, because I get prints on the console that look like this:
D/EGL_emulation: eglMakeCurrent: 0xea022050: ver 3 0 (tinfo 0xea36cfb0)

Also my shader with “#version 320 es” doesn’t compile, I get an error:
ERROR: 0:1: ‘320’ : version number not supported

What am I missing here?
 
I want to use version 3.2 so i put this in my manifest xml:
uses-feature android:glEsVersion=“0x00030002” android:required=“true”

However it still seems to be using version 3.0, because I get prints on the console that look like this:
D/EGL_emulation: eglMakeCurrent: 0xea022050: ver 3 0 (tinfo 0xea36cfb0)

Also my shader with “#version 320 es” doesn’t compile, I get an error:
ERROR: 0:1: ‘320’ : version number not supported

What am I missing here?

This page only goes up to 3.1 https://developer.android.com/guide/topics/graphics/opengl
 
Back
Top Bottom