From: Jason Ekstrand Date: Wed, 8 Jul 2015 21:37:30 +0000 (-0700) Subject: vk/vulkan.h: Move renderPassContinue from GraphicsBeginInfo to BeginInfo X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=367b9ba78f917120d4a1954714a610ff47538e5a;p=mesa.git vk/vulkan.h: Move renderPassContinue from GraphicsBeginInfo to BeginInfo --- diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 0faad2b51eb..9dfd6571f0b 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1732,6 +1732,8 @@ typedef struct { VkStructureType sType; const void* pNext; VkCmdBufferOptimizeFlags flags; + VkRenderPass renderPass; + VkFramebuffer framebuffer; } VkCmdBufferBeginInfo; typedef struct { @@ -1841,12 +1843,6 @@ typedef struct { VkMemoryInputFlags inputMask; } VkMemoryBarrier; -typedef struct { - VkStructureType sType; - const void* pNext; - - VkRenderPassBegin renderPassContinue; -} VkCmdBufferGraphicsBeginInfo; typedef VkResult (VKAPI *PFN_vkCreateInstance)(const VkInstanceCreateInfo* pCreateInfo, VkInstance* pInstance); typedef VkResult (VKAPI *PFN_vkDestroyInstance)(VkInstance instance);