diff options
author | Jason Ekstrand <[email protected]> | 2016-01-14 07:59:37 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2016-01-14 07:59:37 -0800 |
commit | b57c72d9646c3f7ef595379328e5b7d64d8e94dc (patch) | |
tree | 867e18fbccaa941e27af72a0ee07e01769b7c33f /include/vulkan | |
parent | f6cae9929441da7c851372a2433b91be8d9ff317 (diff) |
vulkan-1.0.0: Rework blits to use four offsets
Diffstat (limited to 'include/vulkan')
-rw-r--r-- | include/vulkan/vulkan.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 0aefccf1d5c..36459b14c58 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -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 { |