Skip to content

Commit

Permalink
fix: missing ");" from code (mdn#20325)
Browse files Browse the repository at this point in the history
  • Loading branch information
rubiesonthesky authored Sep 5, 2022
1 parent 1c45919 commit e84c15e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ vertices.forEach((vertex, i) => {
dv.setInt8(20 * i + 15, 0);
dv.setUint16(20 * i + 16, vertex.texCoord[0] * 0xFFFF, true);
dv.setUint16(20 * i + 18, vertex.texCoord[1] * 0xFFFF, true);
}
});
```

For higher performance, we could also do the previous JSON to ArrayBuffer conversion on
Expand Down

0 comments on commit e84c15e

Please sign in to comment.