Skip to content

Instantly share code, notes, and snippets.

View greggman's full-sized avatar
😁

Greggman greggman

😁
View GitHub Profile
@greggman
greggman / README.md
Last active March 28, 2024 21:59
WebGPU DevTools Custom Formatter
@greggman
greggman / README.md
Last active March 28, 2024 21:00
WebGPU DevTools Custom Formatter (base vs derived)
@greggman
greggman / README.md
Last active March 27, 2024 22:07
JsonML
@greggman
greggman / README.md
Last active March 22, 2024 17:36
WebGL2 - Shadows - Basic w/directional light (PCF)
@greggman
greggman / README.md
Created March 22, 2024 17:34
WebGL2 - Shadows - Basic w/spot light (PCF)
@greggman
greggman / README.md
Last active March 12, 2024 23:14
Iframe color-scheme issue
@greggman
greggman / typescript.md
Last active March 11, 2024 22:20
Typescript Notes

enum style

export const kEnumByString = ['sameGroup', 'differentGroups'] as const;  // "as const" is important!!!
export type EnumByString = typeof kEnumByString[number];

record style

@greggman
greggman / dawn-notes.md
Last active March 8, 2024 20:20
Dawn Notes
@greggman
greggman / README.md
Last active February 23, 2024 00:05
Hello Triangle - WebGPU Utils
@greggman
greggman / README.md
Last active February 21, 2024 17:29
WebGPU - Picking - GPU (vs SVG hover)