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