CMake-only fork of https://dawn.googlesource.com/dawn with cleaned, vendored dependencies
Go to file
Corentin Wallez 943a1a2d7a Add SwapChain::GetCurrentTexture
This is to eventually allow more using swapchain textures as CopySrc and
CopyDst. Note that this commit doesn't add any additional usages.

Because textures can reflect their creation parameters, swapchains now
need to pass in the correct texture descriptor in all code paths. This
requires additional handling in dawn::native error swapchains, and
dawn::wire::client's SwapChain reservation and Device::CreateSwapChain
code.

Tests are added for all of these code paths except
dawn::wire::client::Device::CreateSwapChain because there is no way to
create a Surface in wire tests at the moment (they don't have an
instance).

Bug: dawn:1551
Change-Id: I22d5e909e1e94d48eb52cae57aabff8a7f0c04c1
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/133463
Kokoro: Kokoro <noreply+kokoro@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Reviewed-by: Loko Kung <lokokung@google.com>
2023-05-26 10:32:17 +00:00
.vscode [tools] Add 'add-gerrit-hashtags' tool 2023-05-16 14:36:37 +00:00
build_overrides
docs Fix more broken links in docs 2023-05-22 15:16:39 +00:00
generator Adds missing includes for google3 roll. 2023-05-25 23:19:48 +00:00
include Add SwapChain::GetCurrentTexture 2023-05-26 10:32:17 +00:00
infra Add Dawn android bots to CQ 2023-05-18 00:23:27 +00:00
scripts d3d11: compile d3d11 backend in chromium build 2023-05-03 23:42:25 +00:00
src Add SwapChain::GetCurrentTexture 2023-05-26 10:32:17 +00:00
test Tint/GLSL: rename identifiers containing double-underscores. 2023-05-26 04:53:17 +00:00
third_party Roll third_party/webgpu-cts/ 4fd26fe4a..b033a4f1a (8 commits) 2023-05-22 21:56:44 +00:00
tools [tools] Consider today for gerrit-stats and snippets 2023-05-25 16:31:30 +00:00
webgpu-cts Update expectations.txt with Android results 2023-05-26 06:11:47 +00:00
.clang-format
.clang-tidy
.gitattributes Fix Kokoro Windows build 2023-05-08 17:04:38 +00:00
.gitignore
.gn
AUTHORS
BUILD.gn
CMakeLists.txt Add fetch_dawn_dependencies 2023-05-12 20:19:41 +00:00
CMakeSettings.json
CODE_OF_CONDUCT.md
CONTRIBUTING.md
CPPLINT.cfg
DEPS Roll ANGLE from c121b0137b6a to 388a184dd781 (10 revisions) 2023-05-26 07:36:50 +00:00
DIR_METADATA
Doxyfile
LICENSE
OWNERS
PRESUBMIT.py
README.chromium
README.md
codereview.settings
dawn.json Add SwapChain::GetCurrentTexture 2023-05-26 10:32:17 +00:00
dawn_wire.json Add SwapChain::GetCurrentTexture 2023-05-26 10:32:17 +00:00
go.mod [tools] Add 'add-gerrit-hashtags' tool 2023-05-16 14:36:37 +00:00
go.sum [tools] Add 'add-gerrit-hashtags' tool 2023-05-16 14:36:37 +00:00
go_presubmit_support.py
tint_overrides_with_defaults.gni tint/ir: Add GN option for building the IR 2023-04-26 22:05:42 +00:00

README.md

Dawn's logo: a sun rising behind a stylized mountain inspired by the WebGPU logo. The text "Dawn" is written below it.

Dawn, a WebGPU implementation

Dawn is an open-source and cross-platform implementation of the work-in-progress WebGPU standard. More precisely it implements webgpu.h that is a one-to-one mapping with the WebGPU IDL. Dawn is meant to be integrated as part of a larger system and is the underlying implementation of WebGPU in Chromium.

Dawn provides several WebGPU building blocks:

  • WebGPU C/C++ headers that applications and other building blocks use.
    • The webgpu.h version that Dawn implements.
    • A C++ wrapper for the webgpu.h.
  • A "native" implementation of WebGPU using platforms' GPU APIs: D3D12, Metal, Vulkan and OpenGL. See per API support for more details.
  • A client-server implementation of WebGPU for applications that are in a sandbox without access to native drivers
  • Tint is a compiler for the WebGPU Shader Language (WGSL) that can be used in standalone to convert shaders from and to WGSL.

Helpful links:

Documentation table of content

Developer documentation:

User documentation: (TODO, figure out what overlaps with the webgpu.h docs)

Status

(TODO)

License

Apache 2.0 Public License, please see LICENSE.

Disclaimer

This is not an officially supported Google product.