diff options
| author | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-19 19:04:09 -0400 |
|---|---|---|
| committer | Jonathan Bradley <jcb@pikum.xyz> | 2023-09-19 19:04:09 -0400 |
| commit | e966fc36c684de7e1f1477cfdd7d50c2da374bad (patch) | |
| tree | 31ec56e6713752e345e80987bed6df82c2733968 /src/window.hpp | |
| parent | 2a66b641c1540e297b56e87ca87f10382aa6edd0 (diff) | |
filling out render pass - color resolve and depth
Diffstat (limited to 'src/window.hpp')
| -rw-r--r-- | src/window.hpp | 5 |
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; |
