9 lines
388 B
C++
9 lines
388 B
C++
|
/* void glGetProgramResourceName ( GLuint program, GLenum programInterface, GLuint index, GLsizei bufSize, GLsizei *length, GLchar *name ) */
|
||
|
static jstring
|
||
|
android_glGetProgramResourceName
|
||
|
(JNIEnv *_env, jobject _this, jint program, jint programInterface, jint index) {
|
||
|
jniThrowException(_env, "java/lang/UnsupportedOperationException", "not yet implemented");
|
||
|
return NULL;
|
||
|
}
|
||
|
|