List of usage examples for org.lwjgl.opengl KHRDebug glGetObjectPtrLabel
@NativeType("void") public static String glGetObjectPtrLabel(@NativeType("void *") long ptr, @NativeType("GLsizei") int bufSize)
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static String glGetObjectPtrLabel(PointerWrapper a, int b) { return (GLContext.getCapabilities().GL_KHR_debug) ? KHRDebug.glGetObjectPtrLabel(a, b) : ""; }