Interface IGLBufferObject
- All Known Implementing Classes:
GLBufferObject15
,GLBufferObjectARB
public interface IGLBufferObject
-
Method Summary
Modifier and TypeMethodDescriptionint
int
int
int
int
int
void
glBindBuffer
(int target, int buffer) void
glBufferData
(int target, long data_size, int usage) void
glBufferData
(int target, ByteBuffer data, int usage) void
glDeleteBuffers
(int buffers) int
void
glGetBufferParameter
(int target, int pname, IntBuffer params) glMapBuffer
(int target, int access, long length, ByteBuffer old_buffer) boolean
glUnmapBuffer
(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
-