Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers committed Jan 14, 2025
1 parent e2ae91f commit ed0bd5d
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions CesiumRasterOverlays/src/RasterOverlayUtilities.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ template <typename TIndex> struct IndicesViewRemapper {
// three adds an additional triangle
indicesCount = (accessorView->size() - 2) * 3;
}
} else if(primitiveIndices < 0) {
} else if (primitiveIndices < 0) {
// Non-indexed triangles
indicesCount = numVertices;
viewStatus = AccessorViewStatus::Valid;
Expand All @@ -439,9 +439,7 @@ template <typename TIndex> struct IndicesViewRemapper {

int64_t size() const { return indicesCount; }

AccessorViewStatus status() const {
return viewStatus;
}
AccessorViewStatus status() const { return viewStatus; }

const TIndex operator[](int64_t i) const {
if (i < 0 || i >= indicesCount) {
Expand Down

0 comments on commit ed0bd5d

Please sign in to comment.