├── .gitignore ├── LICENSE ├── README.md ├── Samples ├── HelloWebGPU │ └── HelloWebGPU.dpr └── HelloWebGPUInterfaces │ └── HelloWebGPUInterfaces.dpr ├── WebGPU.Interfaces.pas ├── WebGPU.pas └── dawn-x64 ├── commit.txt ├── webgpu.h.txt └── webgpu_dawn.dll /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/README.md -------------------------------------------------------------------------------- /Samples/HelloWebGPU/HelloWebGPU.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/Samples/HelloWebGPU/HelloWebGPU.dpr -------------------------------------------------------------------------------- /Samples/HelloWebGPUInterfaces/HelloWebGPUInterfaces.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/Samples/HelloWebGPUInterfaces/HelloWebGPUInterfaces.dpr -------------------------------------------------------------------------------- /WebGPU.Interfaces.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/WebGPU.Interfaces.pas -------------------------------------------------------------------------------- /WebGPU.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/WebGPU.pas -------------------------------------------------------------------------------- /dawn-x64/commit.txt: -------------------------------------------------------------------------------- 1 | e81ed5904b1b9eae2eba8f0bbfa69d2daabad018 2 | -------------------------------------------------------------------------------- /dawn-x64/webgpu.h.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/dawn-x64/webgpu.h.txt -------------------------------------------------------------------------------- /dawn-x64/webgpu_dawn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EricGrange/Delphi-WebGPU/HEAD/dawn-x64/webgpu_dawn.dll --------------------------------------------------------------------------------