All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
instancer.h
1 //
2 // Copyright 2016 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_IMAGING_HD_INSTANCER_H
25 #define PXR_IMAGING_HD_INSTANCER_H
26 
27 #include "pxr/pxr.h"
28 #include "pxr/imaging/hd/api.h"
29 #include "pxr/imaging/hd/version.h"
30 #include "pxr/imaging/hd/types.h"
31 
32 #include "pxr/usd/sdf/path.h"
33 
34 #include <mutex>
35 
36 PXR_NAMESPACE_OPEN_SCOPE
37 
38 class HdSceneDelegate;
39 class HdRenderIndex;
40 class HdRprim;
41 class HdRenderParam;
42 
123 
124 class HdInstancer {
125 public:
127  HD_API
128  HdInstancer(HdSceneDelegate* delegate, SdfPath const& id);
129 
130  HD_API
131  virtual ~HdInstancer();
132 
134  SdfPath const& GetId() const { return _id; }
135 
137  SdfPath const& GetParentId() const { return _parentId; }
138 
139  HdSceneDelegate* GetDelegate() const { return _delegate; }
140 
141  HD_API
142  static int GetInstancerNumLevels(HdRenderIndex& index,
143  HdRprim const& rprim);
144 
145  HD_API
146  static TfTokenVector const & GetBuiltinPrimvarNames();
147 
148  HD_API
149  virtual void Sync(HdSceneDelegate *sceneDelegate,
150  HdRenderParam *renderParam,
151  HdDirtyBits *dirtyBits);
152 
153  HD_API
154  virtual void Finalize(HdRenderParam *renderParam);
155 
156  HD_API
157  virtual HdDirtyBits GetInitialDirtyBitsMask() const;
158 
159  HD_API
160  static void _SyncInstancerAndParents(
161  HdRenderIndex &renderIndex,
162  SdfPath const& instancerId);
163 
164 protected:
165  HD_API
166  void _UpdateInstancer(HdSceneDelegate *delegate,
167  HdDirtyBits *dirtyBits);
168 
169 private:
170  HdSceneDelegate* _delegate;
171  SdfPath _id;
172  SdfPath _parentId;
173 
174  // XXX: This mutex exists for _SyncInstancerAndParents, which will go
175  // away when the render index calls sync on instancers.
176  std::mutex _instanceLock;
177 };
178 
179 
180 PXR_NAMESPACE_CLOSE_SCOPE
181 
182 #endif // PXR_IMAGING_HD_INSTANCER_H
The Hydra render index is a flattened representation of the client scene graph, which may be composed...
Definition: renderIndex.h:116
SdfPath const & GetId() const
Returns the identifier.
Definition: instancer.h:134
This class exists to facilitate point cloud style instancing.
Definition: instancer.h:124
The HdRenderParam is an opaque (to core Hydra) handle, to an object that is obtained from the render ...
The render engine state for a given rprim from the scene graph.
Definition: rprim.h:68
Adapter class providing data exchange with the client scene graph.
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:442
HD_API HdInstancer(HdSceneDelegate *delegate, SdfPath const &id)
Constructor.
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:288
SdfPath const & GetParentId() const
Returns the parent instancer identifier.
Definition: instancer.h:137