Example usage for org.lwjgl.opengl KHRDebug glGetObjectPtrLabel

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

Introduction

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

Prototype

public static void glGetObjectPtrLabel(@NativeType("void *") long ptr,
        @Nullable @NativeType("GLsizei *") int[] length, @NativeType("GLchar *") ByteBuffer label) 

Source Link

Document

Array version of: #glGetObjectPtrLabel GetObjectPtrLabel

Usage

From source file:tk.ivybits.engine.gl.GL.java

License:Open Source License

public static void glGetObjectPtrLabel(PointerWrapper a, IntBuffer b, ByteBuffer c) {
    if (GLContext.getCapabilities().GL_KHR_debug)
        KHRDebug.glGetObjectPtrLabel(a, b, c);
}