List of usage examples for org.lwjgl.opengl GL30 glGenVertexArrays
public static void glGenVertexArrays(@NativeType("GLuint *") int[] arrays)
From source file:com.badlogic.gdx.backends.jglfw.JglfwGL30.java
License:Apache License
@Override public void glGenVertexArrays(int n, IntBuffer arrays) { GL30.glGenVertexArrays(arrays); }
From source file:io.root.gfx.glutils.GL.java
License:Apache License
public static void glGenVertexArrays(int n, IntBuffer arrays) { GL30.glGenVertexArrays(arrays); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static void glGenVertexArrays(IntBuffer a) { GL30.glGenVertexArrays(a); }