wgpu/deno_webgpu
teoxoy 3437589107 [wgpu-core] use .strict_get() & .strict_unregister() for devices
This works because we never assign errors to devices (they are never invalid).
2024-09-10 11:58:54 +02: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 [wgpu-core] use .strict_get() & .strict_unregister() for devices 2024-09-10 11:58:54 +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 Remove gfx_select. 2024-08-14 17:34:11 +02: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