Example usage for org.lwjgl.opengl GL15 glGetBufferPointer

List of usage examples for org.lwjgl.opengl GL15 glGetBufferPointer

Introduction

In this page you can find the example usage for org.lwjgl.opengl GL15 glGetBufferPointer.

Prototype

@NativeType("void")
public static long glGetBufferPointer(@NativeType("GLenum") int target, @NativeType("GLenum") int pname) 

Source Link

Document

Returns the pointer to a mapped buffer object's data store.

Usage

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