HDK
|
#include <coordSys.h>
Public Types | |
enum | DirtyBits : HdDirtyBits { Clean = 0, DirtyName = 1 << 0, DirtyTransform = 1 << 1, AllDirty } |
Public Member Functions | |
HD_API | HdCoordSys (SdfPath const &id) |
HD_API | ~HdCoordSys () override |
TfToken | GetName () const |
HD_API void | Sync (HdSceneDelegate *sceneDelegate, HdRenderParam *renderParam, HdDirtyBits *dirtyBits) override |
HD_API HdDirtyBits | GetInitialDirtyBitsMask () const override |
Public Member Functions inherited from HdSprim | |
HD_API | HdSprim (SdfPath const &id) |
virtual HD_API | ~HdSprim () |
SdfPath const & | GetId () const |
virtual HD_API void | Finalize (HdRenderParam *renderParam) |
HdCoordSys representes a coordinate system as a Hydra state prim.
Coordinate systems may be referred to by name from a shader network. Following the convention in UsdShadeCoordSysAPI, we use the Hydra id to establish the name, where the id is a namespaced property path of the form <.../prim.coordSys:NAME>
. GetName() will retrieve the name.
Each rprim may have a set of bound coordinate systems, which may be retrieved via the HdTokens->coordSysBindings
key. The returned value is of type HdIdVectorSharedPtr, a reference- counted pointer to a vector of ids of coordinate systems. The intention of this design is to make it efficient for scene delegates to communicate to renderer delegates the common mappings of bound coordinate systems across groups of rprims.
The transform value of an HdCoordSys is the matrix representation of the transform from its local space to world space. In other words, it has the same interpretation as the transform for rprims.
Definition at line 56 of file coordSys.h.
enum HdCoordSys::DirtyBits : HdDirtyBits |
Enumerator | |
---|---|
Clean | |
DirtyName | |
DirtyTransform | |
AllDirty |
Definition at line 65 of file coordSys.h.
|
override |
|
overridevirtual |
Returns the minimal set of dirty bits to place in the change tracker for use in the first sync of this prim. Typically this would be all dirty bits.
Implements HdSprim.
|
inline |
Returns the name bound to this coordinate system.
There may be multiple coordinate systems with the same name, but they must associate with disjoint sets of rprims.
Definition at line 77 of file coordSys.h.
|
overridevirtual |
Synchronizes state from the delegate to this object.
[in,out] | dirtyBits | On input specifies which state is is dirty and can be pulled from the scene delegate. On output specifies which bits are still dirty and were not cleaned by the sync. |
Implements HdSprim.