Example usage for org.lwjgl.opengl GL44 glBufferStorage

List of usage examples for org.lwjgl.opengl GL44 glBufferStorage

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL44 glBufferStorage.

Prototype

public static void glBufferStorage(@NativeType("GLenum") int target, @NativeType("void const *") double[] data,
        @NativeType("GLbitfield") int flags) 

Source Link

Document

Array version of: #glBufferStorage BufferStorage

Usage

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

License:Open Source License

public static void glBufferStorage(int a, FloatBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, DoubleBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, ByteBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, long b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, LongBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, ShortBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}

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

License:Open Source License

public static void glBufferStorage(int a, IntBuffer b, int c) {
    GL44.glBufferStorage(a, b, c);
}