Example usage for org.lwjgl.opengl GL30 glBeginConditionalRender

List of usage examples for org.lwjgl.opengl GL30 glBeginConditionalRender

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glBeginConditionalRender.

Prototype

public static void glBeginConditionalRender(@NativeType("GLuint") int id, @NativeType("GLenum") int mode) 

Source Link

Document

Starts conditional rendering.

Usage

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

License:Open Source License

public static void glBeginConditionalRender(int a, int b) {
    GL30.glBeginConditionalRender(a, b);
}