From: Jason Ekstrand Date: Tue, 7 Jul 2015 00:37:11 +0000 (-0700) Subject: vk/vulkan.h: Remove the Vk(Memory|Semaphor|Image)OpenInfo structs X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d84f3155b11a08879ad0d4dbd3d4ee3b77210d30;p=mesa.git vk/vulkan.h: Remove the Vk(Memory|Semaphor|Image)OpenInfo structs We already deleted the functions that need them. The structs are just dangling uselessly. --- diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index bb6bdf9d566..e3c29b55b10 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1235,12 +1235,6 @@ typedef struct { VkMemoryPropertyFlags memProps; } VkMemoryAllocInfo; -typedef struct { - VkStructureType sType; - const void* pNext; - VkDeviceMemory sharedMem; -} VkMemoryOpenInfo; - typedef struct { VkDeviceSize size; VkDeviceSize alignment; @@ -1286,12 +1280,6 @@ typedef struct { VkSemaphoreCreateFlags flags; } VkSemaphoreCreateInfo; -typedef struct { - VkStructureType sType; - const void* pNext; - VkSemaphore sharedSemaphore; -} VkSemaphoreOpenInfo; - typedef struct { VkStructureType sType; const void* pNext; @@ -1338,10 +1326,6 @@ typedef struct { VkImageCreateFlags flags; } VkImageCreateInfo; -typedef struct { - VkImage originalImage; -} VkPeerImageOpenInfo; - typedef struct { VkDeviceSize offset; VkDeviceSize size;