Example usage for org.lwjgl.opengl GL11 glPushName

List of usage examples for org.lwjgl.opengl GL11 glPushName

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glPushName.

Prototype

public static native void glPushName(@NativeType("GLuint") int name);

Source Link

Document

Causes name to be pushed onto the selection name stack.

Usage

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

License:Open Source License

public static void glPushName(int a) {
    GL11.glPushName(a);
}