Example usage for org.lwjgl.opengl KHRDebug glObjectLabel

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

Introduction

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

Prototype

public static void glObjectLabel(@NativeType("GLenum") int identifier, @NativeType("GLuint") int name,
        @NativeType("GLchar const *") CharSequence label) 

Source Link

Document

Labels a named object identified within a namespace.

Usage

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

License:Open Source License

public static void glObjectLabel(int a, int b, ByteBuffer c) {
    if (GLContext.getCapabilities().GL_KHR_debug)
        KHRDebug.glObjectLabel(a, b, c);
}

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

License:Open Source License

public static void glObjectLabel(int a, int b, CharSequence c) {
    if (GLContext.getCapabilities().GL_KHR_debug)
        KHRDebug.glObjectLabel(a, b, c);
}