From 0bd5a1780a479e83255a7b33e43cdafe97c083f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Con=C3=A1l?= Date: Tue, 23 Jan 2024 16:03:00 -0500 Subject: [PATCH] Fixed linux build issue caused by ommision of header --- Renderer/Swapchain.hpp | 1 + Resources/Texture.hpp | 1 + 2 files changed, 2 insertions(+) diff --git a/Renderer/Swapchain.hpp b/Renderer/Swapchain.hpp index bf87da6..a4a4c42 100644 --- a/Renderer/Swapchain.hpp +++ b/Renderer/Swapchain.hpp @@ -3,6 +3,7 @@ #define VULKAN_HPP_NO_STRUCT_CONSTRUCTORS #include +#include #include diff --git a/Resources/Texture.hpp b/Resources/Texture.hpp index d163325..fad2396 100644 --- a/Resources/Texture.hpp +++ b/Resources/Texture.hpp @@ -4,6 +4,7 @@ #include #include +#include struct CommandBuffer;