summaryrefslogtreecommitdiff
path: root/src/window.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.hpp')
-rw-r--r--src/window.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/window.hpp b/src/window.hpp
index 84e3d33..a307671 100644
--- a/src/window.hpp
+++ b/src/window.hpp
@@ -25,6 +25,7 @@ extern VkInstance vkInstance;
extern VkPhysicalDevice vkPhysicalDevice;
extern VkPhysicalDeviceProperties vkPhysicalDeviceProperties;
extern VkSurfaceKHR vkSurfaceKHR;
+extern VkFormat depthFormat;
extern VkDevice vkDevice;
extern VkAllocationCallbacks *vkAllocator;
extern VkQueue graphicsQueue;
@@ -36,7 +37,9 @@ extern VkCommandBuffer transferCommandBuffer;
extern unsigned int graphicsFamilyIndex;
extern unsigned int presentFamilyIndex;
extern unsigned int transferFamilyIndex;
-extern VkRenderPass vkRenderPass;
+extern VkRenderPass presentRenderPass;
+extern VkRenderPass renderRenderPass;
+extern VkSampleCountFlagBits renderSampleCount;
struct PKEWindowProperties {
unsigned int width = 1280;