Example usage for org.lwjgl.opengl GL40 glGenTransformFeedbacks

List of usage examples for org.lwjgl.opengl GL40 glGenTransformFeedbacks

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL40 glGenTransformFeedbacks.

Prototype

public static void glGenTransformFeedbacks(@NativeType("GLuint *") int[] ids) 

Source Link

Document

Array version of: #glGenTransformFeedbacks GenTransformFeedbacks

Usage

From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java

License:Apache License

@Override
public void glGenTransformFeedbacks(int n, IntBuffer ids) {
    GL40.glGenTransformFeedbacks(ids);
}

From source file:io.root.gfx.glutils.GL.java

License:Apache License

public static void glGenTransformFeedbacks(int n, IntBuffer ids) {
    GL40.glGenTransformFeedbacks(ids);
}

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

License:Open Source License

public static void glGenTransformFeedbacks(IntBuffer a) {
    GL40.glGenTransformFeedbacks(a);
}