vulkan-1.0.0: Rework blits to use four offsets

This commit is contained in:
Jason Ekstrand
2016-01-14 07:59:37 -08:00
parent f6cae99294
commit b57c72d964
3 changed files with 31 additions and 22 deletions

View File

@@ -2076,11 +2076,9 @@ typedef struct VkImageCopy {
typedef struct VkImageBlit {
VkImageSubresourceLayers srcSubresource;
VkOffset3D srcOffset;
VkExtent3D srcExtent;
VkOffset3D srcOffsets[2];
VkImageSubresourceLayers dstSubresource;
VkOffset3D dstOffset;
VkExtent3D dstExtent;
VkOffset3D dstOffsets[2];
} VkImageBlit;
typedef struct VkBufferImageCopy {