This is a small test app that uses WebGPU's unofficial
webgpu.h
header
as a platform-agnostic hardware abstraction layer.
It uses a C++ layer over webgpu.h
, called webgpu_cpp.h
.
On native platforms, this project can be built against
Dawn, Chromium's native WebGPU implementation.
On the Web, this project can be built against Emscripten, which implements webgpu.h
on top of the browser's own WebGPU JavaScript API (if
enabled).
It currently hasn't been set up to build against
wgpu-native's webgpu.h
implementation,
but that is a goal.
Check the issues tab for known issues.
Please note the webgpu.h
API (implemented by Dawn/wgpu-native/Emscripten) and webgpu_cpp.h
bindings (from Dawn) are not yet stabilized.
Instructions are for Linux/Mac; they will need to be adapted to work on Windows.
Build has been tested on Linux/Mac/Win10.
./setup_native_build.sh
mkdir -p out/native
cd out/native
Then:
cmake ../..
make -j4 clean all
Or, to use Ninja instead of Make:
cmake -GNinja ../..
ninja
Note: If you want to have window displayed, make sure to have glfw available.
Alternatively, you can disable using glfw and window display by
cmake ../.. -DDEMO_USE_GLFW=OFF
This has been mainly tested with Chrome Canary on Mac, but should work on
Chrome/Edge/Firefox on any platform with support (modulo compatibility differences due to
pre-release spec changes).
Requires chrome://flags/#enable-unsafe-webgpu
on Chrome/Edge.
Note: To build, the active Emscripten version must be recent. Use the latest Emscripten version for best results including bugfixes to the WebGPU bindings.
# Make sure Emscripten tools are in the path.
source /path/to/emsdk/emsdk_env.sh
mkdir -p out/web
cd out/web
Then:
emcmake cmake ../..
make -j4 clean all
Or, to use Ninja instead of Make:
emcmake cmake -GNinja ../..
ninja
There are shorthands for these in package.json
so you can use, for example, npm run ninja-web
.