commit | 1917dc27c2a395148b2ccd1021933a273cc7587b | [log] [tgz] |
---|---|---|
author | Jose Dapena Paz <jdapena@igalia.com> | Tue Oct 20 19:48:31 2020 +0000 |
committer | Commit Bot service account <commit-bot@chromium.org> | Tue Oct 20 19:48:31 2020 +0000 |
tree | 8336cc089a2a035ad335307a41661dd82c47c487 | |
parent | 1877c27c98a9c399586752a9ea91a02fbeb3fe95 [diff] |
IWYU: unique_ptr usage in ChunkedCommandSerializer requires including <memory> Fix build breakage in libstdc++: ../../third_party/dawn/src/dawn_wire/ChunkedCommandSerializer.h:84:34: error: ‘unique_ptr’ is not a member of ‘std’ 84 | auto cmdSpace = std::unique_ptr<char[]>(new (std::nothrow) char[requiredSize]); | ^~~~~~~~~~ ../../third_party/dawn/src/dawn_wire/ChunkedCommandSerializer.h:24:1: note: ‘std::unique_ptr’ is defined in header ‘<memory>’; did you forget to ‘#include <memory>’? Bug: chromium:957519 Change-Id: I35b129225882a3f9b758c4f49d1a3cace22aacfe Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/30600 Commit-Queue: Kai Ninomiya <kainino@chromium.org> Reviewed-by: Kai Ninomiya <kainino@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 webgpu.h docs)
(TODO)
Apache 2.0 Public License, please see LICENSE.
This is not an officially supported Google product.