Loading...
Searching...
No Matches
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
36PXR_NAMESPACE_OPEN_SCOPE
37
38class HdSceneDelegate;
39class HdRenderIndex;
40class HdRprim;
41class HdRenderParam;
42
124
126public:
128 HD_API
129 HdInstancer(HdSceneDelegate* delegate, SdfPath const& id);
130
131 HD_API
132 virtual ~HdInstancer();
133
135 SdfPath const& GetId() const { return _id; }
136
138 SdfPath const& GetParentId() const { return _parentId; }
139
140 HdSceneDelegate* GetDelegate() const { return _delegate; }
141
142 HD_API
143 static int GetInstancerNumLevels(HdRenderIndex& index,
144 HdRprim const& rprim);
145
146 HD_API
147 static TfTokenVector const & GetBuiltinPrimvarNames();
148
149 HD_API
150 virtual void Sync(HdSceneDelegate *sceneDelegate,
151 HdRenderParam *renderParam,
152 HdDirtyBits *dirtyBits);
153
154 HD_API
155 virtual void Finalize(HdRenderParam *renderParam);
156
157 HD_API
158 virtual HdDirtyBits GetInitialDirtyBitsMask() const;
159
160 HD_API
161 static void _SyncInstancerAndParents(
162 HdRenderIndex &renderIndex,
163 SdfPath const& instancerId);
164
165protected:
166 HD_API
167 void _UpdateInstancer(HdSceneDelegate *delegate,
168 HdDirtyBits *dirtyBits);
169
170private:
171 HdSceneDelegate* _delegate;
172 SdfPath _id;
173 SdfPath _parentId;
174
175 // XXX: This mutex exists for _SyncInstancerAndParents, which will go
176 // away when the render index calls sync on instancers.
177 std::mutex _instanceLock;
178};
179
180
181PXR_NAMESPACE_CLOSE_SCOPE
182
183#endif // PXR_IMAGING_HD_INSTANCER_H
This class exists to facilitate point cloud style instancing.
Definition: instancer.h:125
SdfPath const & GetParentId() const
Returns the parent instancer identifier.
Definition: instancer.h:138
SdfPath const & GetId() const
Returns the identifier.
Definition: instancer.h:135
HD_API HdInstancer(HdSceneDelegate *delegate, SdfPath const &id)
Constructor.
The Hydra render index is a flattened representation of the client scene graph, which may be composed...
Definition: renderIndex.h:121
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:55
Adapter class providing data exchange with the client scene graph.
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:290
std::vector< TfToken > TfTokenVector
Convenience types.
Definition: token.h:457