Interface IGLBufferObject
- All Known Implementing Classes:
GLBufferObject15, GLBufferObjectARB
public interface IGLBufferObject
-
Method Summary
Modifier and TypeMethodDescriptionintintintintintintvoidglBindBuffer(int target, int buffer) voidglBufferData(int target, long data_size, int usage) voidglBufferData(int target, ByteBuffer data, int usage) voidglDeleteBuffers(int buffers) intvoidglGetBufferParameter(int target, int pname, IntBuffer params) glMapBuffer(int target, int access, long length, ByteBuffer old_buffer) booleanglUnmapBuffer(int target)
-
Method Details
-
GL_ARRAY_BUFFER
int GL_ARRAY_BUFFER() -
GL_ELEMENT_ARRAY_BUFFER
int GL_ELEMENT_ARRAY_BUFFER() -
GL_STATIC_DRAW
int GL_STATIC_DRAW() -
GL_STREAM_DRAW
int GL_STREAM_DRAW() -
GL_BUFFER_SIZE
int GL_BUFFER_SIZE() -
GL_WRITE_ONLY
int GL_WRITE_ONLY() -
glGenBuffers
int glGenBuffers() -
glBindBuffer
void glBindBuffer(int target, int buffer) -
glDeleteBuffers
void glDeleteBuffers(int buffers) -
glBufferData
-
glBufferData
void glBufferData(int target, long data_size, int usage) -
glMapBuffer
-
glUnmapBuffer
boolean glUnmapBuffer(int target) -
glGetBufferParameter
-