Example usage for org.lwjgl.opengl GL11 glFeedbackBuffer

List of usage examples for org.lwjgl.opengl GL11 glFeedbackBuffer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL11 glFeedbackBuffer.

Prototype

public static void glFeedbackBuffer(@NativeType("GLenum") int type, @NativeType("GLfloat *") float[] buffer) 

Source Link

Document

Array version of: #glFeedbackBuffer FeedbackBuffer

Usage

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

License:Open Source License

public static void glFeedbackBuffer(int a, FloatBuffer b) {
    GL11.glFeedbackBuffer(a, b);
}