HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
dataSourceMaterial.h
Go to the documentation of this file.
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_MATERIAL_H
25 #define PXR_USD_IMAGING_USD_IMAGING_DATA_SOURCE_MATERIAL_H
26 
28 
29 #include "pxr/usd/usd/prim.h"
30 
33 
35 
36 #include <tbb/concurrent_unordered_map.h>
37 
39 
40 // ----------------------------------------------------------------------------
41 
42 /// \class UsdImagingDataSourceMaterial
43 ///
44 /// A data source mapping for data source material.
45 ///
46 /// Creates HdMaterialSchema from a UsdShadeMaterial prim
47 ///
49 {
50 public:
52 
53  TfTokenVector GetNames() override;
54  HdDataSourceBaseHandle Get(const TfToken &name) override;
55 
57 
58 private:
59 
60  /// If \p fixedTerminalName is specified, the provided \p usdPrim will be
61  /// treated as the terminal shader node in the graph rather than as a
62  /// material (with relationships to the prims serving as terminal shader
63  /// nodes). This is relevant for light and light filter cases.
65  const UsdPrim &usdPrim,
66  const UsdImagingDataSourceStageGlobals &stageGlobals,
67  const TfToken &fixedTerminalName = TfToken()
68  );
69 
70 
71 private:
72 
73  const UsdPrim _usdPrim;
74  const UsdImagingDataSourceStageGlobals &_stageGlobals;
75 
76  // Cache the networks by context name.
77  using _ContextMap = tbb::concurrent_unordered_map<
78  TfToken, HdDataSourceBaseHandle, TfToken::HashFunctor>;
79 
80 
81  const TfToken _fixedTerminalName;
82  _ContextMap _networks;
83 };
84 
86 
87 // ----------------------------------------------------------------------------
88 
89 /// \class UsdImagingDataSourceMaterial
90 ///
91 /// A prim data source mapping for a UsdShadeMaterial prim
92 ///
94 {
95 public:
97 
98  TfTokenVector GetNames() override;
99  HdDataSourceBaseHandle Get(const TfToken &name) override;
100 
102 
104  const UsdPrim &prim,
105  const TfToken &subprim,
106  const TfTokenVector &properties,
107  UsdImagingPropertyInvalidationType invalidationType);
108 
109 private:
111  const SdfPath &sceneIndexPath,
112  const UsdPrim &usdPrim,
113  const UsdImagingDataSourceStageGlobals &stageGlobals);
114 };
115 
117 
119 
120 #endif //PXR_USD_IMAGING_USD_IMAGING_DATA_SOURCE_MATERIAL_H
HD_DECLARE_DATASOURCE(UsdImagingDataSourceMaterialPrim)
HD_DECLARE_DATASOURCE(UsdImagingDataSourceMaterial)
TfTokenVector GetNames() override
Functor to use for hash maps from tokens to other things.
Definition: token.h:166
HdDataSourceBaseHandle Get(const TfToken &name) override
~UsdImagingDataSourceMaterial() override
Definition: token.h:87
static HdDataSourceLocatorSet Invalidate(const UsdPrim &prim, const TfToken &subprim, const TfTokenVector &properties, UsdImagingPropertyInvalidationType invalidationType)
Definition: prim.h:135
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:442
GLuint const GLchar * name
Definition: glcorearb.h:786
Definition: path.h:291
HD_DECLARE_DATASOURCE_HANDLES(UsdImagingDataSourceMaterial)
PXR_NAMESPACE_CLOSE_SCOPE PXR_NAMESPACE_OPEN_SCOPE
Definition: path.h:1441
#define PXR_NAMESPACE_CLOSE_SCOPE
Definition: pxr.h:91
TfTokenVector GetNames() override
HdDataSourceBaseHandle Get(const TfToken &name) override
UsdImagingPropertyInvalidationType
Definition: types.h:34