Example usage for org.lwjgl.opengl GL20 glGetShaderiv

List of usage examples for org.lwjgl.opengl GL20 glGetShaderiv

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL20 glGetShaderiv.

Prototype

public static void glGetShaderiv(@NativeType("GLuint") int shader, @NativeType("GLenum") int pname,
        @NativeType("GLint *") int[] params) 

Source Link

Document

Array version of: #glGetShaderiv GetShaderiv

Usage

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

License:Apache License

public void glGetShaderiv(int shader, int pname, IntBuffer params) {
    GL20.glGetShaderiv(shader, pname, params);
}