Home | History | Annotate | Download | only in gles11
      1     // C function GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings )
      2 
      3     public static native int glCreateShaderProgramv(
      4         int type,
      5         String[] strings
      6     );
      7 
      8