#include <MDrawRequestQueue.h>
This class defines a simple interface for a collection of MDrawRequest objects.
An MDrawRequestQueue object is passed to the getDrawRequests method of a user defined shape's UI class (MPxSurfaceShapeUI). This queue keeps track of all the things that need to get draw when a refresh of the view occurs.
Maya will call the getDrawRequest methods of all the visible DAG objects before a refresh happens. Then as the refresh happens, each draw request will be processed and the corresponding draw method for each DAG object will get called. For user defined shapes MPxSurfaceShapeUI::draw will get called.
Public Member Functions | |
MDrawRequestQueue () | |
~MDrawRequestQueue () | |
bool | isEmpty () const |
void | add (MDrawRequest &) |
MDrawRequest | remove () |
MDrawRequestQueue::MDrawRequestQueue | ( | ) |
Constructor.
MDrawRequestQueue::~MDrawRequestQueue | ( | ) |
Destructor.
bool MDrawRequestQueue::isEmpty | ( | ) | const |
Returns true if the queu is empty.
void MDrawRequestQueue::add | ( | MDrawRequest & | request | ) |
Adds a draw request to the draw queue.
[in] | request | the draw request to add |
MDrawRequest MDrawRequestQueue::remove | ( | ) |
Removes a draw request from the draw queue.
Autodesk® Maya® 2009 © 1997-2008 Autodesk, Inc. All rights reserved. | Generated with 1.5.6 |