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_PLUGIN_HD_EMBREE_INSTANCER_H
25 #define PXR_IMAGING_PLUGIN_HD_EMBREE_INSTANCER_H
26 
27 #include "pxr/pxr.h"
28 
29 #include "pxr/imaging/hd/instancer.h"
30 #include "pxr/imaging/hd/vtBufferSource.h"
31 
32 #include "pxr/base/tf/hashmap.h"
33 #include "pxr/base/tf/token.h"
34 
35 PXR_NAMESPACE_OPEN_SCOPE
36 
51 public:
55  HdEmbreeInstancer(HdSceneDelegate* delegate, SdfPath const& id);
56 
59 
66  VtMatrix4dArray ComputeInstanceTransforms(SdfPath const &prototypeId);
67 
72  void Sync(HdSceneDelegate *sceneDelegate,
73  HdRenderParam *renderParam,
74  HdDirtyBits *dirtyBits) override;
75 
76 private:
77  // Updates the cached primvars in _primvarMap based on scene delegate
78  // data. This is a helper function for Sync().
79  void _SyncPrimvars(HdSceneDelegate *delegate, HdDirtyBits dirtyBits);
80 
81  // Map of the latest primvar data for this instancer, keyed by
82  // primvar name. Primvar values are VtValue, an any-type; they are
83  // interpreted at consumption time (here, in ComputeInstanceTransforms).
84  TfHashMap<TfToken,
86  TfToken::HashFunctor> _primvarMap;
87 };
88 
89 
90 PXR_NAMESPACE_CLOSE_SCOPE
91 
92 #endif // PXR_IMAGING_PLUGIN_HD_EMBREE_INSTANCER_H
VtMatrix4dArray ComputeInstanceTransforms(SdfPath const &prototypeId)
Computes all instance transforms for the provided prototype id, taking into account the scene delegat...
~HdEmbreeInstancer()
Destructor.
HdEmbreeInstancer(HdSceneDelegate *delegate, SdfPath const &id)
Constructor.
This class exists to facilitate point cloud style instancing.
Definition: instancer.h:124
Functor to use for hash maps from tokens to other things.
Definition: token.h:166
The HdRenderParam is an opaque (to core Hydra) handle, to an object that is obtained from the render ...
Token for efficient comparison, assignment, and hashing of known strings.
Definition: token.h:87
void Sync(HdSceneDelegate *sceneDelegate, HdRenderParam *renderParam, HdDirtyBits *dirtyBits) override
Updates cached primvar data from the scene delegate.
Adapter class providing data exchange with the client scene graph.
A path value used to locate objects in layers or scenegraphs.
Definition: path.h:288
HdEmbree implements instancing by adding prototype geometry to the BVH multiple times within HdEmbree...
Definition: instancer.h:50
An implementation of HdBufferSource where the source data value is a VtValue.
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...