This reference page is linked to from the following overview topics: Extension for Autodesk Maya 2013, Autodesk Maya 2013, 4.3 Customizing Geometric Data for Shaders.
Base class for user defined vertex buffer generators.
Implementations of MPxVertexBufferGenerator must be registered with Maya through MDrawRegistry.
MPxVertexGenerators are registered with a unique buffer name. The name signifies the name of the custom stream the generator can produce. When an MPxShaderOverride or custom renderer uses an effect with custom input streams they can provide a unique name in the MVertexBufferDescriptor and a registered MPxVertexBufferGenerator will be used to produce the custom stream for a given shape using the incoming requirements held in the MVertexBuffer.
createVertexStream() is called to allow the generator to fill in the missing vertex data Access the requirements for the requested stream through vertexBuffer.descriptor(). Populate the stream using vertexBuffer.acquire() and vertexBuffer.commit().
#include <MPxVertexBufferGenerator.h>
Public Member Functions | |
MPxVertexBufferGenerator () | |
Construct an MPxVertexBufferGenerator. | |
virtual | ~MPxVertexBufferGenerator () |
Destructor. | |
virtual bool | getSourceIndexing (const MDagPath &objPath, MComponentDataIndexing &sourceIndexing) const =0 |
This function is called to allow the vertex buffer generator to provide its vertex indexing information as well as the space the vertices are in. | |
virtual bool | getSourceStreams (const MDagPath &objPath, MStringArray &sourceStreams) const =0 |
This function is called to allow the vertex buffer generator to provide the list of stream names that it requires. | |
virtual void | createVertexStream (const MDagPath &objPath, MVertexBuffer &vertexBuffer, const MComponentDataIndexing &targetIndexing, const MComponentDataIndexing &sharedIndexing, const MVertexBufferArray &sourceStreams) const =0 |
This method gets called to allow the generator to fill in the data for a custom vertex stream. | |
Static Public Member Functions | |
static const char * | className () |
Returns the name of this class. |
bool getSourceIndexing | ( | const MDagPath & | objPath, |
MComponentDataIndexing & | sourceIndexing | ||
) | const [pure virtual] |
This function is called to allow the vertex buffer generator to provide its vertex indexing information as well as the space the vertices are in.
The indexing and the component type are stored in the sourceIndexing argument. This indexing information is to allow the system to identify any potential vertex sharing that is common across all vertex requirements.
[in] | objPath | The path to the object being evaluated. |
[out] | sourceIndexing | Vertex index mapping in the declared MComponentDataIndexing::MComponentType space. |
bool getSourceStreams | ( | const MDagPath & | objPath, |
MStringArray & | sourceStreams | ||
) | const [pure virtual] |
This function is called to allow the vertex buffer generator to provide the list of stream names that it requires.
The names will be used to fill the array of vertex buffers that will be passed to createVertexStream.
[in] | objPath | The path to the object being evaluated. |
[out] | sourceStreams | Array of strings. |
void createVertexStream | ( | const MDagPath & | objPath, |
MVertexBuffer & | vertexBuffer, | ||
const MComponentDataIndexing & | targetIndexing, | ||
const MComponentDataIndexing & | sharedIndexing, | ||
const MVertexBufferArray & | sourceStreams | ||
) | const [pure virtual] |
This method gets called to allow the generator to fill in the data for a custom vertex stream.
Use the requirements in the vertexBuffer to get the description of the stream. Use vertexBuffer.acquire() and vertexBuffer.commit() to fill the buffer.
[in] | objPath | The path to the object being evaluated. |
[in,out] | vertexBuffer | The vertex buffer to fill. |
[in] | targetIndexing | Vertex index mapping from targetIndexing.getComponentType() space to vertex buffer space. |
[in] | sharedIndexing | Vertex index mapping in the declared MComponentDataIndexing::MComponentType space. |
[in] | sourceStreams | Array of Vertex Buffers that can be used to create the new stream. |
const char * className | ( | ) | [static] |