Skip to content

Commit

Permalink
use 2000000 buffer limit for blockie/lines
Browse files Browse the repository at this point in the history
  • Loading branch information
wighawag committed May 12, 2024
1 parent 2255a4e commit cd30e75
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web/src/lib/render/programs/Blockies.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,8 @@ export class BlockiesLayer {
this.bufferInfo = twgl.createBufferInfoFromArrays(GL, attributes);

this.attributes = {
positions: {data: new Float32Array(999999), nextIndex: 0},
colors: {data: new Float32Array(9999999), nextIndex: 0},
positions: {data: new Float32Array(2000000), nextIndex: 0},
colors: {data: new Float32Array(2000000), nextIndex: 0},
};
}

Expand Down

0 comments on commit cd30e75

Please sign in to comment.