Loading...
Searching...
No Matches
dataSourceBasisCurves.h
1//
2// Copyright 2022 Pixar
3//
4// Licensed under the Apache License, Version 2.0 (the "Apache License")
5// with the following modification; you may not use this file except in
6// compliance with the Apache License and the following modification to it:
7// Section 6. Trademarks. is deleted and replaced with:
8//
9// 6. Trademarks. This License does not grant permission to use the trade
10// names, trademarks, service marks, or product names of the Licensor
11// and its affiliates, except as required to comply with Section 4(c) of
12// the License and to reproduce the content of the NOTICE file.
13//
14// You may obtain a copy of the Apache License at
15//
16// http://www.apache.org/licenses/LICENSE-2.0
17//
18// Unless required by applicable law or agreed to in writing, software
19// distributed under the Apache License with the above modification is
20// distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
21// KIND, either express or implied. See the Apache License for the specific
22// language governing permissions and limitations under the Apache License.
23//
24#ifndef PXR_USD_IMAGING_USD_IMAGING_DATA_SOURCE_BASISCURVES_H
25#define PXR_USD_IMAGING_USD_IMAGING_DATA_SOURCE_BASISCURVES_H
26
27#include "pxr/usdImaging/usdImaging/dataSourceGprim.h"
28#include "pxr/usdImaging/usdImaging/dataSourceStageGlobals.h"
29
31
32#include "pxr/imaging/hd/dataSource.h"
33
34PXR_NAMESPACE_OPEN_SCOPE
35
36
42{
43public:
44 HD_DECLARE_DATASOURCE(UsdImagingDataSourceBasisCurvesTopology);
45
47 HdDataSourceBaseHandle Get(const TfToken & name) override;
48
49private:
51 const SdfPath &sceneIndexPath,
52 UsdGeomBasisCurves usdBasisCurves,
53 const UsdImagingDataSourceStageGlobals &stageGlobals);
54
55private:
56 const SdfPath _sceneIndexPath;
57 UsdGeomBasisCurves _usdBasisCurves;
58 const UsdImagingDataSourceStageGlobals &_stageGlobals;
59};
60
61HD_DECLARE_DATASOURCE_HANDLES(UsdImagingDataSourceBasisCurvesTopology);
62
63// ----------------------------------------------------------------------------
64
70{
71public:
72 HD_DECLARE_DATASOURCE(UsdImagingDataSourceBasisCurves);
73
75 HdDataSourceBaseHandle Get(const TfToken &name) override;
76
77private:
79 const SdfPath &sceneIndexPath,
80 UsdGeomBasisCurves usdBasisCurves,
81 const UsdImagingDataSourceStageGlobals &stageGlobals);
82
83private:
84 const SdfPath _sceneIndexPath;
85 UsdGeomBasisCurves _usdBasisCurves;
86 const UsdImagingDataSourceStageGlobals & _stageGlobals;
87};
88
89HD_DECLARE_DATASOURCE_HANDLES(UsdImagingDataSourceBasisCurves);
90
91// ----------------------------------------------------------------------------
92
98{
99public:
100 HD_DECLARE_DATASOURCE(UsdImagingDataSourceBasisCurvesPrim);
101
103 HdDataSourceBaseHandle Get(const TfToken &name) override;
104
105 USDIMAGING_API
106 static HdDataSourceLocatorSet Invalidate(
107 UsdPrim const& prim,
108 const TfToken &subprim,
109 const TfTokenVector &properties,
110 UsdImagingPropertyInvalidationType invalidationType);
111
112private:
114 const SdfPath &sceneIndexPath,
115 UsdPrim usdPrim,
116 const UsdImagingDataSourceStageGlobals &stageGlobals);
117};
118
119HD_DECLARE_DATASOURCE_HANDLES(UsdImagingDataSourceBasisCurvesPrim);
120
121PXR_NAMESPACE_CLOSE_SCOPE
122
123#endif // PXR_USD_IMAGING_USD_IMAGING_DATA_SOURCE_BASISCURVES_H
A datasource representing structured (named, hierarchical) data, for example a geometric primitive or...
Definition: dataSource.h:116
Represents a set of data source locators closed under descendancy.
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:290
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:88
BasisCurves are a batched curve representation analogous to the classic RIB definition via Basis and ...
Definition: basisCurves.h:264
A container data source representing data unique to basis curves.
TfTokenVector GetNames() override
Returns the list of names for which Get(...) is expected to return a non-null value.
HdDataSourceBaseHandle Get(const TfToken &name) override
Returns the child datasource of the given name.
A prim data source representing a UsdGeomBasisCurves prim.
TfTokenVector GetNames() override
Returns the list of names for which Get(...) is expected to return a non-null value.
HdDataSourceBaseHandle Get(const TfToken &name) override
Returns the child datasource of the given name.
A container data source representing basis curves topology information.
TfTokenVector GetNames() override
Returns the list of names for which Get(...) is expected to return a non-null value.
HdDataSourceBaseHandle Get(const TfToken &name) override
Returns the child datasource of the given name.
Data source representing a USD gprim.
This class is used as a context object with global stage information, that gets passed down to dataso...
UsdPrim is the sole persistent scenegraph object on a UsdStage, and is the embodiment of a "Prim" as ...
Definition: prim.h:134
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:457