aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorTony Barbour <tony@LunarG.com>2015-04-13 13:11:12 -0600
committerChia-I Wu <olv@lunarg.com>2015-04-16 17:48:21 +0800
commit4ca04a39cb19fa6f5fe2e5183a1ab981dbc59ca6 (patch)
tree740a9a18771d86386cd33f65dc1972ddf9a3eced /include
parent7dcbb0c5f94017d216e2b0c810a163c750df6440 (diff)
downloadusermoji-4ca04a39cb19fa6f5fe2e5183a1ab981dbc59ca6.tar.xz
intel: Fix xglCmdImageResolve doesn't properly support MSAA texture arrays
Conflicts: icd/intel/cmd_meta.c include/vulkan.h
Diffstat (limited to 'include')
-rw-r--r--include/vulkan.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/vulkan.h b/include/vulkan.h
index 134a350c..d183e732 100644
--- a/include/vulkan.h
+++ b/include/vulkan.h
@@ -1815,10 +1815,10 @@ typedef struct VkBufferImageCopy_
typedef struct VkImageResolve_
{
VkImageSubresource srcSubresource;
- VkOffset2D srcOffset;
+ VkOffset3D srcOffset;
VkImageSubresource destSubresource;
- VkOffset2D destOffset;
- VkExtent2D extent;
+ VkOffset3D destOffset;
+ VkExtent3D extent;
} VkImageResolve;
typedef struct VkShaderCreateInfo_