|
| | VertexArrayVector () |
| | Constructs a null instance. More...
|
| |
| | VertexArrayVector (const VertexArrayBuffer &buffer) |
| | Constructs a VertexArrayBuffer using an existing VertexArrayBuffer. More...
|
| |
| | VertexArrayVector (GraphicContext &gc, const std::vector< Type > &data, BufferUsage usage=BufferUsage::static_draw) |
| |
| | VertexArrayVector (GraphicContext &gc, int size, BufferUsage usage=BufferUsage::static_draw) |
| | Constructs a VertexArrayBuffer. More...
|
| |
| | VertexArrayVector (GraphicContext &gc, Type *data, int size, BufferUsage usage=BufferUsage::static_draw) |
| | Constructs a VertexArrayBuffer. More...
|
| |
| void | copy_from (GraphicContext &gc, TransferVector< Type > &buffer, int dest_pos=0, int src_pos=0, int size=-1) |
| | Copies data from transfer buffer. More...
|
| |
| void | copy_to (GraphicContext &gc, TransferVector< Type > &buffer, int dest_pos=0, int src_pos=0, int size=-1) |
| | Copies data to transfer buffer. More...
|
| |
| void | upload_data (GraphicContext &gc, int offset, const std::vector< Type > &data) |
| | Uploads data to vertex array buffer. More...
|
| |
| void | upload_data (GraphicContext &gc, int offset, const Type *data, int size) |
| | Uploads data to vertex array buffer. More...
|
| |
| | VertexArrayBuffer () |
| | Constructs a null instance. More...
|
| |
| | VertexArrayBuffer (GraphicContext &gc, const void *data, int size, BufferUsage usage=BufferUsage::static_draw) |
| | Constructs a VertexArrayBuffer. More...
|
| |
| | VertexArrayBuffer (GraphicContext &gc, int size, BufferUsage usage=BufferUsage::static_draw) |
| | Constructs a VertexArrayBuffer. More...
|
| |
| virtual | ~VertexArrayBuffer () |
| |
| void | copy_from (GraphicContext &gc, TransferBuffer &buffer, int dest_pos=0, int src_pos=0, int size=-1) |
| | Copies data from transfer buffer. More...
|
| |
| void | copy_to (GraphicContext &gc, TransferBuffer &buffer, int dest_pos=0, int src_pos=0, int size=-1) |
| | Copies data to transfer buffer. More...
|
| |
| VertexArrayBufferProvider * | get_provider () const |
| | Get Provider. More...
|
| |
| bool | is_null () const |
| | Returns true if this object is invalid. More...
|
| |
| | operator bool () const |
| |
| bool | operator== (const VertexArrayBuffer &other) const |
| | Handle comparison operator. More...
|
| |
| void | throw_if_null () const |
| | Throw an exception if this object is invalid. More...
|
| |
| void | upload_data (GraphicContext &gc, int offset, const void *data, int size) |
| | Uploads data to vertex array buffer. More...
|
| |