diff options
author | Jason Ekstrand <[email protected]> | 2015-10-06 10:09:47 -0700 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-10-06 10:09:47 -0700 |
commit | 588d40e97a9f4870fab59ab2e04d661945c3c2e1 (patch) | |
tree | 016baca6ea72443909f052627f77495a6335fbd7 /include/vulkan | |
parent | bd4cde708a2ad0bea04eb318d7c54447ccbbc7af (diff) |
vk/0.170.2: Use ImageSubresourceCopy in ImageResolve
Diffstat (limited to 'include/vulkan')
-rw-r--r-- | include/vulkan/vulkan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 2c448b54f38..bdd44a01073 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1998,9 +1998,9 @@ typedef struct { } VkRect3D; typedef struct { - VkImageSubresource srcSubresource; + VkImageSubresourceCopy srcSubresource; VkOffset3D srcOffset; - VkImageSubresource destSubresource; + VkImageSubresourceCopy destSubresource; VkOffset3D destOffset; VkExtent3D extent; } VkImageResolve; |