8 lines
250 B
C++
8 lines
250 B
C++
|
/* void glGetPointerv ( GLenum pname, void **params ) */
|
||
|
static jlong
|
||
|
android_glGetPointerv(JNIEnv *_env, jobject _this, jint pname) {
|
||
|
jniThrowException(_env, "java/lang/UnsupportedOperationException", "not yet implemented");
|
||
|
return NULL;
|
||
|
}
|
||
|
|