Package org.lwjgl.opengl
Class EXTDebugMarker
- java.lang.Object
-
- org.lwjgl.opengl.EXTDebugMarker
-
public class EXTDebugMarker extends java.lang.ObjectNative bindings to the EXT_debug_marker extension.This extension defines a mechanism for OpenGL and OpenGL ES applications to annotate their command stream with markers for discrete events and groups of commands using descriptive text markers.
When profiling or debugging such an application within a debugger or profiler it is difficult to relate the commands within the command stream to the elements of the scene or parts of the program code to which they correspond. Markers help obviate this by allowing applications to specify this link.
The intended purpose of this is purely to improve the user experience within OpenGL and OpenGL ES development tools.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method and Description static voidglInsertEventMarkerEXT(java.nio.ByteBuffer marker)static voidglInsertEventMarkerEXT(java.lang.CharSequence marker)static voidglPopGroupMarkerEXT()static voidglPushGroupMarkerEXT(java.nio.ByteBuffer marker)static voidglPushGroupMarkerEXT(java.lang.CharSequence marker)
-
-
-
Method Detail
-
glInsertEventMarkerEXT
public static void glInsertEventMarkerEXT(java.nio.ByteBuffer marker)
-
glInsertEventMarkerEXT
public static void glInsertEventMarkerEXT(java.lang.CharSequence marker)
-
glPushGroupMarkerEXT
public static void glPushGroupMarkerEXT(java.nio.ByteBuffer marker)
-
glPushGroupMarkerEXT
public static void glPushGroupMarkerEXT(java.lang.CharSequence marker)
-
glPopGroupMarkerEXT
public static void glPopGroupMarkerEXT()
-
-