Example usage for org.lwjgl.opengl GL30 glIsEnabledi

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

Introduction

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

Prototype

@NativeType("GLboolean")
public static boolean glIsEnabledi(@NativeType("GLenum") int target, @NativeType("GLuint") int index) 

Source Link

Document

Tests whether an indexed capability is enabled.

Usage

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

License:Open Source License

public static boolean glIsEnabledi(int a, int b) {
    return GL30.glIsEnabledi(a, b);
}