more webgpu scaffolding

This commit is contained in:
41666 2023-10-06 22:37:05 -04:00
parent c245a4700a
commit 441ab63660
21 changed files with 253 additions and 74 deletions

12
index.d.ts vendored Normal file
View file

@ -0,0 +1,12 @@
/// <reference lib="dom" />
/// <reference lib="dom.iterable" />
declare module "*.glsl" {
const content: string;
export default content;
}
declare module "*.wgsl" {
const content: string;
export default content;
}