Skip to content

Commit

Permalink
Stop echoing bukkit count
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris Lewin committed Aug 8, 2024
1 parent 54e7dae commit 889fd25
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/sim.js
Original file line number Diff line number Diff line change
Expand Up @@ -198,8 +198,6 @@ function constructBukkitSystem(gpuContext, inputs) {
const bukkitCountX = Math.ceil(inputs.gridSize[0] / DispatchSizes.BukkitSize);
const bukkitCountY = Math.ceil(inputs.gridSize[1] / DispatchSizes.BukkitSize);

console.log(`Bukkit count: ${bukkitCountX * bukkitCountY}`);

const bukkitParticleCountBuffer = gpuContext.device.createBuffer({
label: "bukkitParticleCountBuffer",
size: bukkitCountX * bukkitCountY * 4, // One integer count per bukkit
Expand Down

0 comments on commit 889fd25

Please sign in to comment.