replicant-frameworks_native/opengl/tools/glgen/stubs/gles11/glCreateShaderProgramv.cpp

9 lines
319 B
C++
Raw Normal View History

/* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
static jint
android_glCreateShaderProgramv
(JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
jniThrowException(_env, "java/lang/UnsupportedOperationException", "not yet implemented");
return 0;
}