From 38db5b76c94898359e68d69364f4fa5f9e81332b Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Sun, 4 Jan 2026 13:54:14 +0000 Subject: [PATCH] feat: Move width, height, and device extensions constants into app namespace --- src/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main.cpp b/src/main.cpp index 43e5bb1..995e7bf 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -26,6 +26,11 @@ namespace sdl3cpp::app { std::atomic g_signalReceived{false}; + +constexpr uint32_t kWidth = 1024; +constexpr uint32_t kHeight = 768; +const std::vector kDeviceExtensions = {"VK_KHR_swapchain"}; + } namespace {