Example usage for org.lwjgl.opengl GL11 glPopName

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

Introduction

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

Prototype

public static native void glPopName();

Source Link

Document

Pops one name off the top of the selection name stack.

Usage

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

License:Open Source License

public static void glPopName() {
    GL11.glPopName();
}