Example usage for org.lwjgl.opengl GL30 glEnablei

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

Introduction

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

Prototype

public static void glEnablei(@NativeType("GLenum") int cap, @NativeType("GLuint") int index) 

Source Link

Document

Enables an indexed capability.

Usage

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

License:Open Source License

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