Example usage for org.lwjgl.opengl GL11 glRenderMode

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

Introduction

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

Prototype

@NativeType("GLint")
public static native int glRenderMode(@NativeType("GLenum") int mode);

Source Link

Document

Sets the current render mode.

Usage

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

License:Open Source License

public static int glRenderMode(int a) {
    return GL11.glRenderMode(a);
}