Skip to content

Commit

Permalink
HYDRA-1057 : Fixes for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
debloip-adsk committed Jul 16, 2024
1 parent b97b3c1 commit 1f534f4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
#include <pxr/imaging/hd/selectionsSchema.h>
#include <pxr/imaging/hd/tokens.h>

#include <unordered_set>
#include <stack>

PXR_NAMESPACE_USING_DIRECTIVE
Expand Down Expand Up @@ -618,7 +619,7 @@ WireframeSelectionHighlightSceneIndex::_TrimMeshForSelectedGeomSubsets(const HdC

if (faceIndicesToKeep.find(iFaceCounts) != faceIndicesToKeep.end()) {
trimmedFaceVertexCounts.push_back(currFaceCount);
for (size_t faceIndicesOffset = 0; faceIndicesOffset < currFaceCount; faceIndicesOffset++) {
for (int faceIndicesOffset = 0; faceIndicesOffset < currFaceCount; faceIndicesOffset++) {
trimmedFaceVertexIndices.push_back(originalFaceVertexIndices[iFaceIndices + faceIndicesOffset]);
}
}
Expand Down

0 comments on commit 1f534f4

Please sign in to comment.