⚠️ This documentation corresponds to the latest development branch of axmol. It might diverge from the official releases.
|
Axmol Engine 3.0.0-dff292a
|
Used to store vertex and index data data. More...
#include <Buffer.h>
Inherits Object.
Inherited by BufferImpl, BufferImpl, BufferImpl, and BufferImpl.
Public Member Functions | |
| virtual void | updateData (const void *data, std::size_t size)=0 |
| Update buffer data. | |
| virtual void | updateSubData (const void *data, std::size_t offset, std::size_t size)=0 |
| Update buffer sub-region data. | |
| virtual void | usingDefaultStoredData (bool needDefaultStoredData)=0 |
| By default, static buffer data will automatically stored when it comes to foreground. | |
| std::size_t | getSize () const |
| Get buffer size in bytes. | |
| Public Member Functions inherited from Object | |
| void | retain () |
| Retains the ownership. | |
| void | release () |
| Releases the ownership immediately. | |
| Object * | autorelease () |
| Releases the ownership sometime soon automatically. | |
| unsigned int | getReferenceCount () const |
| Returns the Object's current reference count. | |
| virtual | ~Object () |
| Destructor. | |
Additional Inherited Members | |
| Public Attributes inherited from Object | |
| unsigned int | _ID |
| object id, ScriptSupport need public _ID | |
| int | _luaID |
| Lua reference id. | |
Used to store vertex and index data data.
|
pure virtual |
Update buffer data.
| data | Specifies a pointer to data that will be copied into the data store for initialization. |
| size | Specifies the size in bytes of the data store region being replaced. |
Implemented in BufferImpl, BufferImpl, BufferImpl, and BufferImpl.
|
pure virtual |
Update buffer sub-region data.
| data | Specifies a pointer to the new data that will be copied into the data store. |
| offset | Specifies the offset into the buffer object's data store where data replacement will begin, measured in bytes. |
| size | Specifies the size in bytes of the data store region being replaced. |
Implemented in BufferImpl, BufferImpl, BufferImpl, and BufferImpl.
|
pure virtual |
By default, static buffer data will automatically stored when it comes to foreground.
This function is used to indicate whether external data needs to be used to update the buffer instead of using the default stored data.
| needDefaultStoredData | Specifies whether to use the default stored data. |
Implemented in BufferImpl, BufferImpl, BufferImpl, and BufferImpl.
|
inline |
Get buffer size in bytes.