wgpu/deno_webgpu
Erich Gubler fc2fd95a98
fix: handle Queue::submit non-fatally (#6318)
* Change the signature of `wgpu_core::Global::queue_submit` to return
  a `(SubmissionIndex, …)` in addition to its current error type.
* Change the control flow of errors in `Queue::submit` to break to the
  end of a block. This is similar to what we already do in many APIs in
  `wgpu_core`.
* Hoist the scope of the local `submit_index` binding so it can be used
  at the point where we need to convert current error paths to also
  return the submission index.

Later, we will likely want to avoid actually retrieving a new submission
index so we can minimize the critical section of code. We'll need to
figure out a strategy for returning a valid (but not necessarily unique)
index in the case of failures that prevent successful submission.
2024-09-25 02:52:25 +00:00
..
00_init.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
01_webgpu.js Support texture-compression-bc-sliced-3d in wgpu (#5751) 2024-08-10 12:02:29 +02:00
02_surface.js chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
binding.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
buffer.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
bundle.rs Make bind group an Option for set_bind_group calls. (#6216) 2024-09-06 14:29:09 -07:00
byow.rs chore: backport deno changes (#5686) 2024-05-11 09:29:09 +00:00
Cargo.toml Remove unnecessary Cargo.toml dependencies via cargo machete (#5692) 2024-05-12 19:05:00 -04:00
command_encoder.rs remove dyn render & compute pass 2024-08-14 17:34:11 +02:00
compute_pass.rs Make bind group an Option for set_bind_group calls. (#6216) 2024-09-06 14:29:09 -07:00
error.rs chore: #[must_use] annotations on getters and ctors 2024-08-19 14:38:05 +01:00
lib.rs remove backend from ID (#6263) 2024-09-13 17:30:38 +02:00
LICENSE.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
pipeline.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
queue.rs fix: handle Queue::submit non-fatally (#6318) 2024-09-25 02:52:25 +00:00
README.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
render_pass.rs Make bind group an Option for set_bind_group calls. (#6216) 2024-09-06 14:29:09 -07:00
sampler.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
shader.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
surface.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
texture.rs Remove gfx_select. 2024-08-14 17:34:11 +02:00
webgpu.idl Support texture-compression-bc-sliced-3d in wgpu (#5751) 2024-08-10 12:02:29 +02: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