This reference page is linked to from the following overview topics: Autodesk Maya 2014, Extension for Autodesk Maya 2013, Data Classes, 2.2 Geometric Data (MGeometry), 3.3 Geometry Overrides, 4.3 Customizing Geometric Data for Shaders.
Index buffer for use with MGeometry.
This class represents an index buffer with a specific data type.
When retrieving an index buffer for binding to custom shaders (MPxShaderOverride), resourceHandle() may be called to get the device dependent handle to the index buffer on the GPU.
When creating an index buffer to supply geometric data to Maya (MPxGeometryOverride), acquire() may be called to get a pointer to a block of memory to fill with said data. Once filled, commit() must be called to apply the data to the buffer.
cgfxShaderNode.cpp, hwColorPerVertexShader.cpp, and hwPhongShader.cpp.
#include <MHWGeometry.h>
Public Member Functions | |
| MIndexBuffer (MGeometry::DataType type) | |
| Constructor. | |
| ~MIndexBuffer () | |
| Destructor. | |
| MGeometry::DataType | dataType () const |
| Get the data type of the buffer. | |
| unsigned int | size () const |
| Get the size of the buffer in units of dataType(). | |
| void * | resourceHandle () const |
| Gets a graphics device dependent handle to the vertex indexing data. | |
| void | resourceHandle (void *handle, unsigned int size) |
| Directly set the graphics-device-dependent hardware buffer resource handle. | |
| bool | hasCustomResourceHandle () const |
| Returns true if this index buffer is using a custom resource handle set by the plugin using MIndexBuffer::resourceHandle(void*, unsigned int). | |
| void * | acquire (unsigned int size, bool writeOnly) |
| Get a pointer to memory for the buffer. | |
| void | commit (void *buffer) |
| Commit the data stored in the memory given by acquire() to the buffer. | |
| void * | map () |
| Get a read-only pointer to the existing content of the buffer. | |
| void | unmap () |
| Release the data exposed by map(). | |
| void | unload () |
| If the buffer is resident in GPU memory, calling this method will move it to system memory and free the GPU memory. | |
| void * | acquire (unsigned int size) |
| This method is obsolete. | |
Static Public Member Functions | |
| static const char * | className () |
| Returns the name of this class. | |
Friends | |
| class | MGeometry |
| MIndexBuffer | ( | MGeometry::DataType | type | ) |
Constructor.
| [in] | type | The data type for the index buffer |
| ~MIndexBuffer | ( | ) |
Destructor.
Note that it is an error to delete MIndexBuffer objects that are owned by or in use by an MGeometry object. Such actions may cause instability.
| MGeometry::DataType dataType | ( | ) | const |
Get the data type of the buffer.
| unsigned int size | ( | ) | const |
Get the size of the buffer in units of dataType().
Returns 0 if unallocated.
| void * resourceHandle | ( | ) | const |
Gets a graphics device dependent handle to the vertex indexing data.
For OpenGL the return value is a pointer to an OpenGL identifier (GLuint) for a vertex buffer containing the indexing data. (e.g. using glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, handle)).
The index buffer identifier can be used to perform drawing of vertex buffer data identified by handles returned from MVertexBuffer::hwBuffer().
An example setup could be:
A NULL pointer will be returned if the graphics device dependent handle is not yet available.
If the pointer is not NULL, the value is only guaranteed to exist during the current draw. The value should never be cached or modified.
| void resourceHandle | ( | void * | handle, |
| unsigned int | size | ||
| ) |
Directly set the graphics-device-dependent hardware buffer resource handle.
This will result in the creation of a custom user index buffer. Maya can render it, but the plugin owns the underlying device resource. When the Maya buffer is deleted, the actual hardware buffer will not be deleted. These buffers cannot be filled with Acquire or read-back with Map. They must be created and pre-filled, by the plugin.
Not currently supported in DirectX.
| [in] | handle | For OpenGL, handle is a pointer to a GLuint resource identifier for a vertex buffer object. This pointer must remain valid after MPxGeometryOverride::populateGeometry() returns, though not indefinitely after that. |
| [in] | size | The number of indices in the indicated buffer. |
| bool hasCustomResourceHandle | ( | ) | const |
Returns true if this index buffer is using a custom resource handle set by the plugin using MIndexBuffer::resourceHandle(void*, unsigned int).
| void * acquire | ( | unsigned int | size, |
| bool | writeOnly | ||
| ) |
Get a pointer to memory for the buffer.
This method is meant to be used in MPxGeometryOverride::populateGeometry() in order to provide data to Maya for drawing the associated object. The size of the buffer returned will be (size * sizeof(dataType())) bytes. The memory for the buffer is managed internally.
Note that not all data types are currently supported for index buffers. If the data type for this buffer is not supported this method will return NULL.
| [in] | size | The size of the buffer to acquire |
| [in] | writeOnly | Specified if the returned memory should be uninitialized or filled with actual buffer content. When the current buffer content is not needed, it is preferable to set the writeOnly flag to true for better performance. |
| void commit | ( | void * | buffer | ) |
| void * map | ( | ) |
Get a read-only pointer to the existing content of the buffer.
Writing new content in this memory block is not supported and can lead to unexpected behavior.
| void unmap | ( | ) |
Release the data exposed by map().
If this method is not called, the buffer will not be recycled.
| void unload | ( | ) |
If the buffer is resident in GPU memory, calling this method will move it to system memory and free the GPU memory.
The buffer will be automatically reloaded into GPU memory the next time it is needed to draw an object. This method may be used to help manage GPU memory when working with extremely large sets of data.
| const char * className | ( | ) | [static] |
| void * acquire | ( | unsigned int | size | ) |
This method is obsolete.
Get a pointer to memory for the buffer. This method is meant to be used in MPxGeometryOverride::populateGeometry() in order to provide data to Maya for drawing the associated object. The size of the buffer returned will be (size * sizeof(dataType())) bytes. The memory for the buffer is managed internally.
Note that not all data types are currently supported for index buffers. If the data type for this buffer is not supported this method will return NULL.
| [in] | size | The size of the buffer to acquire |