Example usage for org.lwjgl.opengl GL42 glDrawTransformFeedbackStreamInstanced

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

Introduction

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

Prototype

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

Source Link

Document

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

Usage

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

License:Open Source License

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