Example usage for org.lwjgl.opengl GL11 glGetBooleanv

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

Introduction

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

Prototype

public static void glGetBooleanv(@NativeType("GLenum") int pname,
        @NativeType("GLboolean *") ByteBuffer params) 

Source Link

Document

Returns the current boolean value of the specified state variable.

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL20.java

License:Apache License

public void glGetBooleanv(int pname, Buffer params) {
    GL11.glGetBooleanv(pname, (ByteBuffer) params);
}