Implementation of Conway's Game of Life using WebGPU.
- Update interval: use the slider to change the simulation tick rate (16–1000 ms).
- Click to create: click a cell on the canvas to make it alive immediately (without advancing the simulation step).
- Any cell with fewer than two neighbors becomes inactive.
- Any active cell with two or three neighbors stays active.
- Any inactive cell with exactly three neighbors becomes active.
- Any cell with more than three neighbors becomes inactive.
If you see "WebGPU not available":
- Use a recent Chrome/Edge or another browser with WebGPU support (Check here: https://caniuse.com/webgpu).
- Go to
chrome://flags/(or your browser flags) and enable "Unsafe WebGPU".
