wgpu/deno_webgpu
2024-02-27 13:57:17 -05:00
..
01_webgpu.js Add typos to Repository CI (#5191) 2024-02-05 12:30:29 -05:00
02_surface.js update deno (#3808) 2023-06-06 17:08:32 +02:00
binding.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
buffer.rs buffer_map_async should use offset + size (#5185) 2024-02-09 09:48:00 +01:00
bundle.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
Cargo.toml Feature/serde feature (#5149) 2024-01-28 20:13:04 +00:00
command_encoder.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
compute_pass.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
error.rs Arcanization of wgpu core resources (#3626) 2023-11-20 08:41:52 +01:00
lib.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
LICENSE.md update deno (#3379) 2023-01-14 17:07:46 +01:00
pipeline.rs feat!: make ProgrammableStage::entry_point optional in wgpu-core 2024-02-27 13:57:17 -05:00
queue.rs Improve the consistency of identifiers (#5108) 2024-01-29 10:56:04 +01:00
README.md Fixes and changes to the documentation for increasing clarity (#4806) 2023-12-01 14:02:00 -05:00
render_pass.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
sampler.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
shader.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
surface.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
texture.rs Remove G parameter in Global<G> and generic IdentityHandlerFactory (#5159) 2024-01-29 15:37:57 +01:00
webgpu.idl adding internal error filter (#5160) 2024-01-29 14:50:35 -05: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 February 22, 2021. The spec is still very much in flux. This op crate 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