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_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
35PXR_NAMESPACE_OPEN_SCOPE
36
51public:
56
59
68 VtMatrix4dArray ComputeInstanceTransforms(SdfPath const &prototypeId);
69
74 void Sync(HdSceneDelegate *sceneDelegate,
75 HdRenderParam *renderParam,
76 HdDirtyBits *dirtyBits) override;
77
78private:
79 // Updates the cached primvars in _primvarMap based on scene delegate
80 // data. This is a helper function for Sync().
81 void _SyncPrimvars(HdSceneDelegate *delegate, HdDirtyBits dirtyBits);
82
83 // Map of the latest primvar data for this instancer, keyed by
84 // primvar name. Primvar values are VtValue, an any-type; they are
85 // interpreted at consumption time (here, in ComputeInstanceTransforms).
86 TfHashMap<TfToken,
88 TfToken::HashFunctor> _primvarMap;
89};
90
91
92PXR_NAMESPACE_CLOSE_SCOPE
93
94#endif // PXR_IMAGING_PLUGIN_HD_EMBREE_INSTANCER_H
HdEmbree implements instancing by adding prototype geometry to the BVH multiple times within HdEmbree...
Definition: instancer.h:50
void Sync(HdSceneDelegate *sceneDelegate, HdRenderParam *renderParam, HdDirtyBits *dirtyBits) override
Updates cached primvar data from the scene delegate.
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:125
The HdRenderParam is an opaque (to core Hydra) handle, to an object that is obtained from the render ...
Adapter class providing data exchange with the client scene graph.
An implementation of HdBufferSource where the source data value is a VtValue.
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
Functor to use for hash maps from tokens to other things.
Definition: token.h:166
TfToken class for efficient string referencing and hashing, plus conversions to and from stl string c...