wgpu/deno_webgpu
Nicolas Silva ff306d20e0
Add support for bgra8unorm-storage (#4228)
* Add `BGRA8UNORM_STORAGE` extension

* Leave a comment in the backends that don't support bgra8unorm-storage

* Pass the appropriate storage format to naga

* Check for bgra8unorm storage support in the vulkan backend

* Add a test

Co-authored-by: Jinlei Li <jinleili0@outlook.com>
Co-authored-by: Teodor Tanasoaia <28601907+teoxoy@users.noreply.github.com>
2023-10-13 10:07:11 +00:00
..
01_webgpu.js Add support for bgra8unorm-storage (#4228) 2023-10-13 10:07:11 +00:00
02_surface.js update deno (#3808) 2023-06-06 17:08:32 +02:00
binding.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
buffer.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
bundle.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
Cargo.toml update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
command_encoder.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
compute_pass.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
error.rs Validate that resources belong to the right device. (#4207) 2023-10-04 14:39:03 -04:00
lib.rs Add support for bgra8unorm-storage (#4228) 2023-10-13 10:07:11 +00:00
LICENSE.md update deno (#3379) 2023-01-14 17:07:46 +01:00
pipeline.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
queue.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
README.md WIP: add cts_runner and deno_webgpu crate (#1859) 2021-09-03 13:23:35 -04:00
render_pass.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
sampler.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
shader.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
surface.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
texture.rs update deno and spec (#4143) 2023-10-04 04:25:56 +00:00
webgpu.idl Add support for bgra8unorm-storage (#4228) 2023-10-13 10:07:11 +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 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