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