Skip to content

Commit

Permalink
Merge pull request #1051 from Kurtil/fix/rmBufferFlagArrays
Browse files Browse the repository at this point in the history
remove buffer.flags & flags2 arrays
  • Loading branch information
xeolabs authored May 22, 2023
2 parents 45ae42e + c28dfda commit 2999a6e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ class LinesBatchingBuffer {
this.maxIndices = maxGeometryBatchSize * 3; // Rough rule-of-thumb
this.positions = [];
this.colors = [];
this.flags = [];
this.flags2 = [];
this.offsets = [];
this.indices = [];
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ class PointsBatchingBuffer {
this.colors = [];
this.intensities = [];
this.pickColors = [];
this.flags = [];
this.flags2 = [];
this.offsets = [];
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ class TrianglesBatchingBuffer {
this.metallicRoughness = [];
this.normals = [];
this.pickColors = [];
this.flags = [];
this.flags2 = [];
this.offsets = [];
this.indices = [];
this.edgeIndices = [];
Expand Down

0 comments on commit 2999a6e

Please sign in to comment.