Example usage for org.lwjgl.opengl GL30 glGenVertexArrays

List of usage examples for org.lwjgl.opengl GL30 glGenVertexArrays

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL30 glGenVertexArrays.

Prototype

public static void glGenVertexArrays(@NativeType("GLuint *") int[] arrays) 

Source Link

Document

Array version of: #glGenVertexArrays GenVertexArrays

Usage

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);
}