summaryrefslogtreecommitdiff
path: root/src/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.hpp')
-rw-r--r--src/window.hpp17
1 files changed, 3 insertions, 14 deletions
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 <cstring>
-#include <cstdio>
-#include <vector>
-#include <cassert>
#include <GLFW/glfw3.h>
#include <vulkan/vulkan.h>
@@ -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;