Skip to content

Instantly share code, notes, and snippets.

View greggman's full-sized avatar
😁

Greggman greggman

😁
View GitHub Profile
@greggman
greggman / index.mjs
Last active January 17, 2025 19:43
dawn.node GC test
import { dirname, join } from 'node:path';
import { fileURLToPath } from 'node:url';
import { createRequire } from 'module';
const require = createRequire(import.meta.url);
const __dirname = dirname(fileURLToPath(import.meta.url));
const dawnNodePath = join(__dirname, 'out/cmake-release', `dawn.node`);
const { create, globals } = require(dawnNodePath);
//export { create, globals }
@greggman
greggman / README.md
Last active January 3, 2025 21:53
WebGPU Cube (with 9 timestamp pairs) with transparency (w/scale)

WebGPU Cube (with 9 timestamp pairs) with transparency (w/scale)

view on jsgist

@greggman
greggman / README.md
Last active December 31, 2024 22:21
Transpile TypeScript to JavaScript
@greggman
greggman / README.md
Last active December 30, 2024 22:25
WebGPU: textureGather from r16uint cubemap
@greggman
greggman / README.md
Created December 22, 2024 14:30
WebGL - 3D Spot Lighting with falloff - 2 lights
@greggman
greggman / README.md
Created December 14, 2024 03:45
WebGPU Compute taylor series (thread per result, with workgroups)

WebGPU Compute taylor series (thread per result, with workgroups)

view on jsgist

@greggman
greggman / README.md
Last active December 14, 2024 03:38
WebGPU Compute taylor series (thread per result)
@greggman
greggman / README.md
Created December 14, 2024 02:33
WebGPU Compute taylor series (1 thread)
@greggman
greggman / README.md
Last active December 14, 2024 01:03
WebGPU Compute Bubblesort (1 thread)