Skip to content

Commit

Permalink
[hdEmbree] minor fixes in hdEmbree/mesh.h
Browse files Browse the repository at this point in the history
- forward-declare some types as struct instead of class (avoids msvc
  compiler warning)
- comment typo fix
  • Loading branch information
pmolodo committed Jul 30, 2024
1 parent 0083231 commit 4b10db7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pxr/imaging/plugin/hdEmbree/mesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@

PXR_NAMESPACE_OPEN_SCOPE

class HdEmbreePrototypeContext;
class HdEmbreeInstanceContext;
struct HdEmbreePrototypeContext;
struct HdEmbreeInstanceContext;

/// \class HdEmbreeMesh
///
Expand Down Expand Up @@ -171,7 +171,7 @@ class HdEmbreeMesh final : public HdMesh {

private:
// Every HdEmbreeMesh is treated as instanced; if there's no instancer,
// the prototype has a single identity istance. The prototype is stored
// the prototype has a single identity instance. The prototype is stored
// as _rtcMeshId, in _rtcMeshScene.
unsigned _rtcMeshId;
RTCScene _rtcMeshScene;
Expand Down

0 comments on commit 4b10db7

Please sign in to comment.