glCreateShaderProgramv.java revision 16f03928743b01638419874e2b6300b52da6eb4c
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