List of usage examples for org.lwjgl.opengl GL40 glGenTransformFeedbacks
@NativeType("void") public static int glGenTransformFeedbacks()
From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java
License:Apache License
@Override public void glGenTransformFeedbacks(int n, int[] ids, int offset) { for (int i = offset; i < offset + n; i++) { ids[i] = GL40.glGenTransformFeedbacks(); }/* www. java 2 s.c o m*/ }
From source file:io.root.gfx.glutils.GL.java
License:Apache License
public static void glGenTransformFeedbacks(int n, int[] ids, int offset) { for (int i = offset; i < offset + n; i++) { ids[i] = GL40.glGenTransformFeedbacks(); }//from w ww .ja va 2 s . c o m }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static int glGenTransformFeedbacks() { return GL40.glGenTransformFeedbacks(); }