List of usage examples for org.lwjgl.opengl GL44 glBufferStorage
public static void glBufferStorage(@NativeType("GLenum") int target, @NativeType("void const *") double[] data, @NativeType("GLbitfield") int flags)
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); }