wgpu/deno_webgpu
Andreas Reich ad6774f7bb
Remove exposed C symbols from renderpass/computepass recording (#5409)
Co-authored-by: Connor Fitzgerald <connorwadefitzgerald@gmail.com>
2024-04-17 20:48:45 +00:00
..
00_init.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
01_webgpu.js refactor(deno): simplify error handling (#5479) 2024-04-17 16:25:51 -04:00
02_surface.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
binding.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
buffer.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
bundle.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
byow.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
Cargo.toml chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
command_encoder.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
compute_pass.rs Remove exposed C symbols from renderpass/computepass recording (#5409) 2024-04-17 20:48:45 +00:00
error.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
lib.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
LICENSE.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
pipeline.rs Allow configuring whether workgroup memory is zero initialised (#5508) 2024-04-17 15:50:31 -04:00
queue.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
README.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
render_pass.rs Remove exposed C symbols from renderpass/computepass recording (#5409) 2024-04-17 20:48:45 +00:00
sampler.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
shader.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
surface.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
texture.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
webgpu.idl Implement Unorm10_10_10_2 VertexFormat (#5477) 2024-04-03 19:43:54 +00:00

deno_webgpu

This op crate implements the WebGPU API as defined in https://gpuweb.github.io/gpuweb/ in Deno. The implementation targets the spec draft as of March 31, 2024. The spec is still very much in flux. This extension tries to stay up to date with the spec, but is constrained by the features implemented in our GPU backend library wgpu.

The spec is still very bare bones, and is still missing many details. As the spec becomes more concrete, we will implement to follow the spec more closely.

In addition, setting the DENO_WEBGPU_TRACE environmental variable will output a wgpu trace to the specified directory.

For testing this op crate will make use of the WebGPU conformance tests suite, running through our WPT runner. This will be used to validate implementation conformance.

GitHub CI doesn't run with GPUs, so testing relies on software like DX WARP & Vulkan lavapipe. Currently, only using DX WARP works, so tests are only run on Windows.

Specification: https://gpuweb.github.io/gpuweb/

Design documents: https://github.com/gpuweb/gpuweb/tree/main/design

Conformance tests suite: https://github.com/gpuweb/cts

WebGPU examples for Deno: https://github.com/crowlKats/webgpu-examples

wgpu-users matrix channel: https://matrix.to/#/#wgpu-users:matrix.org