Example usage for org.lwjgl.opengl GL42 glDrawTransformFeedbackInstanced

List of usage examples for org.lwjgl.opengl GL42 glDrawTransformFeedbackInstanced

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL42 glDrawTransformFeedbackInstanced.

Prototype

public static void glDrawTransformFeedbackInstanced(@NativeType("GLenum") int mode,
        @NativeType("GLuint") int id, @NativeType("GLsizei") int primcount) 

Source Link

Document

Renders multiple instances of primitives using a count derived from a transform feedback object.

Usage

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

License:Open Source License

public static void glDrawTransformFeedbackInstanced(int a, int b, int c) {
    GL42.glDrawTransformFeedbackInstanced(a, b, c);
}