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