List of usage examples for org.lwjgl.opengl GL40 glGenTransformFeedbacks
public static void glGenTransformFeedbacks(@NativeType("GLuint *") int[] ids)
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); }