summaryrefslogtreecommitdiff
path: root/src/gpu/gpu.h
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-07 09:20:19 +0100
committerskal <pascal.massimino@gmail.com>2026-02-07 09:20:19 +0100
commit17b8ffac48643040cddfb0a51025bab62245326f (patch)
tree6b3be53f32acd8ec28c057172f0cc91c1bd62838 /src/gpu/gpu.h
parent5d19168436e64d1b33fecc48e1790f20847078f2 (diff)
refactor: Move platform files to src/platform/ subdirectory
Reorganized platform windowing code into dedicated subdirectory for better organization and consistency with other subsystems (audio/, gpu/, 3d/). Changes: - Created src/platform/ directory - Moved src/platform.{h,cc} → src/platform/platform.{h,cc} - Updated 11 include paths: "platform.h" → "platform/platform.h" - src/main.cc, src/test_demo.cc - src/gpu/gpu.{h,cc} - src/platform/platform.cc (self-include) - 6 test files - Updated CMakeLists.txt PLATFORM_SOURCES variable Verification: ✓ All targets build successfully (demo64k, test_demo, test_platform) ✓ test_platform passes (70% coverage maintained) ✓ demo64k smoke test passed This completes the platform code reorganization side quest. No functional changes, purely organizational.
Diffstat (limited to 'src/gpu/gpu.h')
-rw-r--r--src/gpu/gpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gpu/gpu.h b/src/gpu/gpu.h
index 40274b9..d7f5a8d 100644
--- a/src/gpu/gpu.h
+++ b/src/gpu/gpu.h
@@ -4,7 +4,7 @@
#pragma once
-#include "platform.h"
+#include "platform/platform.h"
struct PlatformState; // Forward declaration