Example usage for org.lwjgl.opengl GL40 glBindTransformFeedback

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

Introduction

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

Prototype

public static void glBindTransformFeedback(@NativeType("GLenum") int target, @NativeType("GLuint") int id) 

Source Link

Document

Binds a transform feedback object.

Usage

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

License:Apache License

@Override
public void glBindTransformFeedback(int target, int id) {
    GL40.glBindTransformFeedback(target, id);
}

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

License:Apache License

public static void glBindTransformFeedback(int target, int id) {
    GL40.glBindTransformFeedback(target, id);
}

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

License:Open Source License

public static void glBindTransformFeedback(int a, int b) {
    GL40.glBindTransformFeedback(a, b);
}