From 5a7b4a65a1d93744e4a5e6cc6df4244f61b81f68 Mon Sep 17 00:00:00 2001 From: Jonathan Bradley Date: Tue, 14 Jan 2025 18:17:54 -0500 Subject: chore: fix compiler warnings + extra includes --- src/window.hpp | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'src/window.hpp') diff --git a/src/window.hpp b/src/window.hpp index 1af7eed..29f7140 100644 --- a/src/window.hpp +++ b/src/window.hpp @@ -2,19 +2,10 @@ #define PKE_WINDOW_HPP #include "asset-manager.hpp" -#include "backends/imgui_impl_glfw.h" -#include "backends/imgui_impl_vulkan.h" -#include "event.hpp" -#include "imgui.h" -#include "ecs.hpp" #include "window-types.hpp" #include "pk.h" +#include "vendor-glm-include.hpp" -#include "glm/mat4x4.hpp" -#include -#include -#include -#include #include #include @@ -80,10 +71,8 @@ struct ImplementedPipelines { VkSampler vkSampler_Texture = VK_NULL_HANDLE; union { VkPipeline arr[2] = { VK_NULL_HANDLE, VK_NULL_HANDLE }; - struct { - VkPipeline Texture; - VkPipeline TextureWireframe; - }; + VkPipeline Texture; + VkPipeline TextureWireframe; } pipelines; }; extern ImplementedPipelines pkePipelines; -- cgit v1.2.3