![]() |
|
The HdSystemSchema specifies a container that will hold "system" data. More...
#include <systemSchema.h>
Inheritance diagram for HdSystemSchema:Static Public Member Functions | |
| static HD_API HdDataSourceBaseHandle | GetFromPath (HdSceneIndexBaseRefPtr const &inputScene, SdfPath const &fromPath, TfToken const &key, SdfPath *foundAtPath) |
Evaluates the key at fromPath. | |
| static HD_API HdContainerDataSourceHandle | Compose (HdSceneIndexBaseRefPtr const &inputScene, SdfPath const &fromPath, SdfPath *foundAtPath) |
Composes the system container in at fromPath by walking up the prim.dataSources in inputScene and composing any system containers it encounters. | |
| static HD_API HdContainerDataSourceHandle | ComposeAsPrimDataSource (HdSceneIndexBaseRefPtr const &inputScene, SdfPath const &fromPath, SdfPath *foundAtPath) |
Similar to Compose but this return value would be suitable for using with HdOverlayContainerDataSource for a prim's dataSource: | |
Schema location | |
| static HD_API const TfToken & | GetSchemaToken () |
| Returns a token where the container representing this schema is found in a container by default. | |
| static HD_API const HdDataSourceLocator & | GetDefaultLocator () |
| Returns an HdDataSourceLocator (relative to the prim-level data source) where the container representing this schema is found by default. | |
Schema retrieval | |
| HdSystemSchema (HdContainerDataSourceHandle container) | |
| static HD_API HdSystemSchema | GetFromParent (const HdContainerDataSourceHandle &fromParentContainer) |
| Retrieves a container data source with the schema's default name token "system" from the parent container and constructs a HdSystemSchema instance. | |
Additional Inherited Members | |
Public Types inherited from HdSchema | |
| using | UnderlyingDataSource = HdContainerDataSource |
Public Member Functions inherited from HdSchema | |
| HdSchema (HdContainerDataSourceHandle container) | |
| HD_API HdContainerDataSourceHandle | GetContainer () const |
| Returns the container data source that this schema is interpreting. | |
| HD_API bool | IsDefined () const |
| operator bool () const | |
Returns true if this schema is applied on top of a non-null container. | |
Protected Member Functions inherited from HdSchema | |
| template<typename T > | |
| T::Handle | _GetTypedDataSource (TfToken name) const |
| Returns a datasource of the requested type for the given name: schema implementations can use this to ask for child containers, sampled values, vectors, etc. | |
Protected Attributes inherited from HdSchema | |
| HdContainerDataSourceHandle | _container |
The HdSystemSchema specifies a container that will hold "system" data.
Each piece of system data is identified by a key within the container. A piece of system data is evaluated at a given location by walking up the namespace looking for a system container that contains the corresponding key.
Definition at line 53 of file systemSchema.h.
|
inline |
Definition at line 59 of file systemSchema.h.
|
static |
Composes the system container in at fromPath by walking up the prim.dataSources in inputScene and composing any system containers it encounters.
If no system containers were found, this returns null. Otherwise, this will return a container data source with the composed system data sources. If non-null, foundAtPath will be the last prim at which system data was found.
|
static |
Similar to Compose but this return value would be suitable for using with HdOverlayContainerDataSource for a prim's dataSource:
|
static |
Returns an HdDataSourceLocator (relative to the prim-level data source) where the container representing this schema is found by default.
|
static |
Retrieves a container data source with the schema's default name token "system" from the parent container and constructs a HdSystemSchema instance.
Because the requested container data source may not exist, the result should be checked with IsDefined() or a bool comparison before use.
|
static |
Evaluates the key at fromPath.
If key is found, the return value will be non-null and foundAtPath will contain the path at which the non-null result was found. Otherwise, this returns null.
This operation will be linear in the length of fromPath.
|
static |
Returns a token where the container representing this schema is found in a container by default.