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