Vulkan spec's definition of VkPhysicalDeviceHostImageCopyPropertiesEXT:
VkStructureType sType;
void* pNext;
uint32_t copySrcLayoutCount;
VkImageLayout* pCopySrcLayouts;
uint32_t copyDstLayoutCount;
VkImageLayout* pCopyDstLayouts;
uint8_t optimalTilingLayoutUUID[VK_UUID_SIZE];
VkBool32 identicalMemoryTypeRequirements;
The profiles schema says that this struct should contain only the members optimalTilingLayoutUUID and identicalMemoryTypeRequirements.
But vulkaninfo and vulkan-caps-viewer print the entire structs. Is this just a bug in the schema generator?