List of usage examples for org.lwjgl.opengl KHRDebug glDebugMessageInsert
public static void glDebugMessageInsert(@NativeType("GLenum") int source, @NativeType("GLenum") int type, @NativeType("GLuint") int id, @NativeType("GLenum") int severity, @NativeType("GLchar const *") CharSequence message)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDebugMessageInsert(int a, int b, int c, int d, ByteBuffer e) { if (GLContext.getCapabilities().GL_KHR_debug) KHRDebug.glDebugMessageInsert(a, b, c, d, e); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glDebugMessageInsert(int a, int b, int c, int d, CharSequence e) { if (GLContext.getCapabilities().GL_KHR_debug) KHRDebug.glDebugMessageInsert(a, b, c, d, e); }