Example usage for org.lwjgl.opengl GL31 glTexBuffer

List of usage examples for org.lwjgl.opengl GL31 glTexBuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL31 glTexBuffer.

Prototype

public static void glTexBuffer(@NativeType("GLenum") int target, @NativeType("GLenum") int internalformat,
        @NativeType("GLuint") int buffer) 

Source Link

Document

Attaches the storage for the buffer object named buffer to the active buffer texture, and specifies an internal format for the texel array found in the attached buffer object.

Usage

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

License:Open Source License

public static void glTexBuffer(int a, int b, int c) {
    GL31.glTexBuffer(a, b, c);
}