Example usage for org.lwjgl.opengl KHRDebug glPushDebugGroup

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

Introduction

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

Prototype

public static void glPushDebugGroup(@NativeType("GLenum") int source, @NativeType("GLuint") int id,
        @NativeType("GLchar const *") CharSequence message) 

Source Link

Document

Pushes a debug group described by the string message into the command stream.

Usage

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

License:Open Source License

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

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

License:Open Source License

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