From bc4b381f3e63ab899badda0cd6a017605797704e Mon Sep 17 00:00:00 2001 From: Gregg Tavares Date: Fri, 8 Mar 2024 12:04:50 -0800 Subject: [PATCH] fix mistakes --- sample/metaballs/meta.ts | 2 +- sample/pristineGrid/meta.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sample/metaballs/meta.ts b/sample/metaballs/meta.ts index 5a48642b..e0b01b20 100644 --- a/sample/metaballs/meta.ts +++ b/sample/metaballs/meta.ts @@ -1,6 +1,6 @@ export default { name: 'Metaballs', - description: `This example shows a simple game made with WebGPU. + description: `This example shows an implementation of metaballs with WebGPU. Source at https://github.com/toji/webgpu-metaballs/ `, diff --git a/sample/pristineGrid/meta.ts b/sample/pristineGrid/meta.ts index 94543627..55784fb9 100644 --- a/sample/pristineGrid/meta.ts +++ b/sample/pristineGrid/meta.ts @@ -1,5 +1,5 @@ export default { - name: 'Spookyball', + name: 'Pristine Grid', description: `A simple WebGPU implementation of the "Pristine Grid" technique described in this wonderful little blog post: https://bgolus.medium.com/the-best-darn-grid-shader-yet-727f9278b9d8. Source at https://github.com/toji/pristine-grid-webgpu/