ansenAC / webgpu-samples

WebGPU Samples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebGPU Samples

The WebGPU Samples are a set of WGSL and SPIR-V compatible samples demonstrating the use of the WebGPU API. Please see the current implementation status at webgpu.io. SPIR-V compatible samples will be removed when WGSL is fully implemented.

These samples run in Chrome Canary behind the flag --enable-unsafe-webgpu. If something isn't working, please file an issue here.

Building

webgpu-samples is built with Typescript and compiled using webpack. Building the project requires an installation of Node.js.

  • Install dependencies: npm install.
  • For development, start the dev server which will watch and recompile sources: npm start.
  • For production, compile the project: npm run build.
  • To view the project locally in the browser, start a web server in the project root directory. http-server is the recommended package.

Example

npm install
npm run-script build   # or `npm start` and do the following in a separate terminal
npm run-script serve

About

WebGPU Samples

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:TypeScript 93.0%Language:HTML 4.6%Language:JavaScript 2.4%