glDebugMessageInsertKHR.java revision 16f03928743b01638419874e2b6300b52da6eb4c
1    // C function void glDebugMessageInsertKHR ( GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *buf )
2
3    public static native void glDebugMessageInsertKHR(
4        int source,
5        int type,
6        int id,
7        int severity,
8        String buf
9    );
10
11