summaryrefslogtreecommitdiffstats
path: root/examples
diff options
context:
space:
mode:
authorEllie Hermaszewska <ellieh@nvidia.com>2024-10-29 13:59:28 +0800
committerGitHub <noreply@github.com>2024-10-29 13:59:28 +0800
commita729c15e9dce9f5116a38afc66329ab2ca4cea54 (patch)
tree9580072eb0d796b51c04ad5be95230a747709150 /examples
parenta15d770242f88aa4b33cd7d3a97de9c8d86a2315 (diff)
preparation for clang format (#5422)
* Clang-format excludes * Add .clang-format * Don't clang-format in external * Missing includes and forward declarations * Replace wonky include-once macro name * neaten include naming * Add clang-format to formatting script * Add xargs and diff to required binaries * add clang-format to ci formatting check * Add max version check to formatting script * temporarily disable checking formatting for cpp files
Diffstat (limited to 'examples')
-rw-r--r--examples/example-base/test-base.cpp7
-rw-r--r--examples/hello-world/vulkan-api.h2
2 files changed, 7 insertions, 2 deletions
diff --git a/examples/example-base/test-base.cpp b/examples/example-base/test-base.cpp
index 0e0f8a69c..9d8ec8ce6 100644
--- a/examples/example-base/test-base.cpp
+++ b/examples/example-base/test-base.cpp
@@ -1,8 +1,11 @@
#include "test-base.h"
#ifdef _WIN32
-#include <windows.h>
-#include <shellapi.h>
+// clang-format off
+// include ordering sensitive
+# include <windows.h>
+# include <shellapi.h>
+// clang-format on
#endif
int TestBase::parseOption(int argc, char** argv)
diff --git a/examples/hello-world/vulkan-api.h b/examples/hello-world/vulkan-api.h
index 17d0465a6..89ca9747d 100644
--- a/examples/hello-world/vulkan-api.h
+++ b/examples/hello-world/vulkan-api.h
@@ -7,6 +7,7 @@
// the Vulkan API.
// The Vulkan function pointers we will use in this example.
+// clang-format off
#define VK_API_GLOBAL_PROCS(x) \
x(vkGetInstanceProcAddr) \
x(vkCreateInstance) \
@@ -87,6 +88,7 @@
/* */
#define VK_API_DECLARE_PROC(NAME) PFN_##NAME NAME = nullptr;
+// clang-format on
struct VulkanAPI
{