Update framework to match vulkan.h at 15aa048
[platform/upstream/VK-GL-CTS.git] / external / vulkancts / framework / vulkan / vkStructTypes.inl
index 059ada9..0e75b9a 100644 (file)
@@ -1407,3 +1407,25 @@ struct VkDebugMarkerMarkerInfoEXT
        float                   color[4];
 };
 
+struct VkDedicatedAllocationImageCreateInfoNV
+{
+       VkStructureType sType;
+       const void*             pNext;
+       VkBool32                dedicatedAllocation;
+};
+
+struct VkDedicatedAllocationBufferCreateInfoNV
+{
+       VkStructureType sType;
+       const void*             pNext;
+       VkBool32                dedicatedAllocation;
+};
+
+struct VkDedicatedAllocationMemoryAllocateInfoNV
+{
+       VkStructureType sType;
+       const void*             pNext;
+       VkImage                 image;
+       VkBuffer                buffer;
+};
+