commit | 97ad405216b228451af785cb0f1605a709b686d2 | [log] [tgz] |
---|---|---|
author | Corentin Wallez <cwallez@chromium.org> | Mon Jan 30 14:49:27 2023 +0000 |
committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Jan 30 14:49:27 2023 +0000 |
tree | 9df02ed302d5a590715539afe8f51bc0b73e26fe | |
parent | 40358fde0b497a39632ff8be53a95beb9e3d1732 [diff] |
Fix MSVC 14.29 errors: - It doens't know which operator == to use when there is using EnumClassBitmask that looks like (a & b) == 0. Instead use just the form (a & b). - It doesn't do automatic capture of constexpr variables in lambdas so turn a couple constexpr into regular const. - It (correctly) warns that if constexpr (std::is_constant_evaluated()) is always true, so remove the constexpr keyword. Bug: None Change-Id: If7857abd1c30acb0736557844ff13f32a19d54cf Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/117888 Commit-Queue: Corentin Wallez <cwallez@chromium.org> Reviewed-by: Ben Clayton <bclayton@google.com> Kokoro: Corentin Wallez <cwallez@chromium.org>
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.h
version that Dawn implements.webgpu.h
.Helpful links:
Developer documentation:
User documentation: (TODO, figure out what overlaps with the webgpu.h docs)
(TODO)
Apache 2.0 Public License, please see LICENSE.
This is not an officially supported Google product.