Home | History | Annotate | Download | only in gles11
      1 /* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
      2 static jint
      3 android_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