commit | 498fe977c5dd44eb014c3173d43b8f0da79db1cd | [log] [tgz] |
---|---|---|
author | Nicolas Chavez <nickchavez@google.com> | Mon Oct 14 18:24:04 2024 +0000 |
committer | Dawn LUCI CQ <dawn-scoped@luci-project-accounts.iam.gserviceaccount.com> | Mon Oct 14 18:24:04 2024 +0000 |
tree | 28749c7fad67766d9790f7d525a5927af9f17fd8 | |
parent | dc99505f66164ccf82b03efa8a53a4fc191f29a7 [diff] |
Fixes the Quickstart With CMake guide to use webgpu_cpp_print.h The example currently does not compile as it can't otherwise find the << operators for StringView. R=cwallez@chromium.org Change-Id: I135f6e51238209f3acce8db0433164c30f84ebd5 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/210795 Commit-Queue: Nicolas Chavez <nickchavez@google.com> Reviewed-by: Corentin Wallez <cwallez@chromium.org>
diff --git a/docs/quickstart-cmake.md b/docs/quickstart-cmake.md index 1cce6d8..00881b2 100644 --- a/docs/quickstart-cmake.md +++ b/docs/quickstart-cmake.md
@@ -63,6 +63,7 @@ ```cpp #include <webgpu/webgpu_cpp.h> +#include <webgpu/webgpu_cpp_print.h> #include <cstdlib> #include <iostream>