Example usage for org.lwjgl.opengl KHRDebug glGetObjectLabel

List of usage examples for org.lwjgl.opengl KHRDebug glGetObjectLabel

Introduction

In this page you can find the example usage for org.lwjgl.opengl KHRDebug glGetObjectLabel.

Prototype

public static void glGetObjectLabel(@NativeType("GLenum") int identifier, @NativeType("GLuint") int name,
        @Nullable @NativeType("GLsizei *") int[] length, @NativeType("GLchar *") ByteBuffer label) 

Source Link

Document

Array version of: #glGetObjectLabel GetObjectLabel

Usage

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);
}