glCreateShaderProgramv.cpp revision 16f03928743b01638419874e2b6300b52da6eb4c
1/* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
2static jint
3android_glCreateShaderProgramv
4  (JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
5
6    jniThrowException(_env, "java/lang/UnsupportedOperationException", "not yet implemented");
7    return 0;
8}
9