Example usage for org.lwjgl.opengl GL11 glPassThrough

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

Introduction

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

Prototype

public static native void glPassThrough(@NativeType("GLfloat") float token);

Source Link

Document

Inserts a marker when the GL is in feeback mode.

Usage

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

License:Open Source License

public static void glPassThrough(float a) {
    GL11.glPassThrough(a);
}