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