Example usage for org.lwjgl.opengl GL20 glGetActiveAttrib

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

Introduction

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

Prototype

public static void glGetActiveAttrib(@NativeType("GLuint") int program, @NativeType("GLuint") int index,
        @Nullable @NativeType("GLsizei *") int[] length, @NativeType("GLint *") int[] size,
        @NativeType("GLenum *") int[] type, @NativeType("GLchar *") ByteBuffer name) 

Source Link

Document

Array version of: #glGetActiveAttrib GetActiveAttrib

Usage

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

License:Open Source License

public static void glGetActiveAttrib(int a, int b, IntBuffer c, IntBuffer d, IntBuffer e, ByteBuffer f) {
    GL20.glGetActiveAttrib(a, b, c, d, e, f);
}