wgpu/deno_webgpu
Andreas Reich 24498f04d4 The second unraveling: hub and all types on it are generic free!
gfx_select macros are empty husks now that are waiting to be removed
2024-08-14 17:34:11 +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 chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
buffer.rs remove waiting functionality from Global.{buffer,texture,texture_view}_drop() 2024-07-29 17:31:24 +02:00
bundle.rs chore: update deno (#5469) 2024-04-02 14:36:04 -04: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 Renderpass take resource ownership (#5884) 2024-07-01 18:36:24 +02:00
compute_pass.rs Make compute pass end consume the pass (#5575) 2024-05-25 18:54:48 +02:00
error.rs introduce MultiError and use it for BGL incompatibility errors 2024-07-02 18:06:19 +02:00
lib.rs The second unraveling: hub and all types on it are generic free! 2024-08-14 17:34:11 +02:00
LICENSE.md chore: update deno (#5469) 2024-04-02 14:36:04 -04:00
pipeline.rs Remove vertex_pulling_transfrom from PipelineCompilationOptions. 2024-07-19 17:13:45 +02: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 Renderpass take resource ownership (#5884) 2024-07-01 18:36:24 +02: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 The second unraveling: hub and all types on it are generic free! 2024-08-14 17:34:11 +02:00
texture.rs remove waiting functionality from Global.{buffer,texture,texture_view}_drop() 2024-07-29 17:31:24 +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