feat: Move width, height, and device extensions constants into app namespace

This commit is contained in:
2026-01-04 13:54:14 +00:00
parent 899e4763f2
commit 38db5b76c9

View File

@@ -26,6 +26,11 @@
namespace sdl3cpp::app {
std::atomic<bool> g_signalReceived{false};
constexpr uint32_t kWidth = 1024;
constexpr uint32_t kHeight = 768;
const std::vector<const char*> kDeviceExtensions = {"VK_KHR_swapchain"};
}
namespace {