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

@NativeType("void")
public static String glGetObjectPtrLabel(@NativeType("void *") long ptr, @NativeType("GLsizei") int bufSize) 

Source Link

Document

Retrieves the label of a sync object identified by a pointer.

Usage

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