opengl-es-3.1

Open GL ES error: undefined reference to 'glDispatchCompute'

时光怂恿深爱的人放手 提交于 2019-12-13 04:11:50
问题 I am using Open GL ES 3.1 in Android app with native C++ code. So I need to run a C++ lib with Android support. I have used some Open GL ES functions and they worked well. But when I tried to use glDispatchCompute , a linker gave a following error: undefined reference to 'glDispatchCompute' . Here is the call: glDispatchCompute(10, 1, 1); Here are my includes: #include <string> #include <jni.h> #include <GLES3/gl31.h> #include <GLES/egl.h> #include <GLES/gl.h> #include <GLES3/gl3ext.h>