List of usage examples for org.lwjgl.opengl GL15 glGetBufferPointer
@NativeType("void") public static long glGetBufferPointer(@NativeType("GLenum") int target, @NativeType("GLenum") int pname)
From source file:com.badlogic.gdx.backends.lwjgl.LwjglGL30.java
License:Apache License
@Override public Buffer glGetBufferPointerv(int target, int pname) { return GL15.glGetBufferPointer(target, pname); }
From source file:io.root.gfx.glutils.GL.java
License:Apache License
public Buffer glGetBufferPointerv(int target, int pname) { return GL15.glGetBufferPointer(target, pname); }
From source file:tk.ivybits.engine.gl.GL.java
License:Open Source License
public static ByteBuffer glGetBufferPointer(int a, int b) { return GL15.glGetBufferPointer(a, b); }