Example usage for org.lwjgl.opengl GL30 glGetVertexAttribIiv

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

Introduction

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

Prototype

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

Source Link

Document

Array version of: #glGetVertexAttribIiv GetVertexAttribIiv

Usage

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

License:Apache License

@Override
public void glGetVertexAttribIiv(int index, int pname, IntBuffer params) {
    GL30.glGetVertexAttribIiv(index, pname, params);
}