summaryrefslogtreecommitdiffstats
path: root/opengl/tools/glgen/stubs/gles11/glDebugMessageCallbackKHR.java
blob: 3e8cf2246f7230275465f01eb60fd3092053de1b (plain)
1
2
3
4
5
6
7
8
    // C function void glDebugMessageCallbackKHR ( GLDEBUGPROCKHR callback, const void *userParam )

    public interface DebugProcKHR {
        void onMessage(int source, int type, int id, int severity, String message);
    }

    public static native void glDebugMessageCallbackKHR(DebugProcKHR callback);