Example usage for org.lwjgl.opengl ARBES2Compatibility glGetShaderPrecisionFormat

List of usage examples for org.lwjgl.opengl ARBES2Compatibility glGetShaderPrecisionFormat

Introduction

In this page you can find the example usage for org.lwjgl.opengl ARBES2Compatibility glGetShaderPrecisionFormat.

Prototype

public static void glGetShaderPrecisionFormat(@NativeType("GLenum") int shadertype,
        @NativeType("GLenum") int precisiontype, @NativeType("GLint *") int[] range,
        @NativeType("GLint *") int[] precision) 

Source Link

Document

Array version of: #glGetShaderPrecisionFormat GetShaderPrecisionFormat

Usage

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

License:Apache License

public void glGetShaderPrecisionFormat(int shadertype, int precisiontype, IntBuffer range,
        IntBuffer precision) {/*  www. j  a  va 2  s. com*/
    ARBES2Compatibility.glGetShaderPrecisionFormat(shadertype, precisiontype, range, precision);
}