├── .gitignore ├── COPYING.txt ├── README.md ├── demo ├── .gitignore ├── data │ └── shader.wgsl ├── dub.json ├── lib │ ├── x64 │ │ └── SDL2.dll │ └── x86 │ │ └── SDL2.dll └── src │ └── main.d ├── dub.json ├── src └── bindbc │ └── wgpu │ ├── c │ ├── proc.d │ ├── webgpu.d │ └── wgpu.d │ ├── funcs.d │ ├── loader.d │ ├── package.d │ └── types.d ├── webgpu.h └── wgpu.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/COPYING.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/README.md -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/.gitignore -------------------------------------------------------------------------------- /demo/data/shader.wgsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/data/shader.wgsl -------------------------------------------------------------------------------- /demo/dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/dub.json -------------------------------------------------------------------------------- /demo/lib/x64/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/lib/x64/SDL2.dll -------------------------------------------------------------------------------- /demo/lib/x86/SDL2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/lib/x86/SDL2.dll -------------------------------------------------------------------------------- /demo/src/main.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/demo/src/main.d -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/dub.json -------------------------------------------------------------------------------- /src/bindbc/wgpu/c/proc.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/c/proc.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/c/webgpu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/c/webgpu.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/c/wgpu.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/c/wgpu.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/funcs.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/funcs.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/loader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/loader.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/package.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/package.d -------------------------------------------------------------------------------- /src/bindbc/wgpu/types.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/src/bindbc/wgpu/types.d -------------------------------------------------------------------------------- /webgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/webgpu.h -------------------------------------------------------------------------------- /wgpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DLangGamedev/bindbc-wgpu/HEAD/wgpu.h --------------------------------------------------------------------------------