diff options
author | Chad Versace <[email protected]> | 2015-10-07 10:28:30 -0700 |
---|---|---|
committer | Chad Versace <[email protected]> | 2015-10-07 10:28:30 -0700 |
commit | 81e1dcc42c33d306d490b886b74df62e48eead99 (patch) | |
tree | c5a3d9f2d8c224b1338597643ce4636f607a9337 /include | |
parent | 98c2bb69172944e909922f00422bd235b8e543cc (diff) |
vk/0.170.2: Update VkImageFormatProperties
Diffstat (limited to 'include')
-rw-r--r-- | include/vulkan/vulkan.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/include/vulkan/vulkan.h b/include/vulkan/vulkan.h index 1bcc31c59d9..26827b6847f 100644 --- a/include/vulkan/vulkan.h +++ b/include/vulkan/vulkan.h @@ -1210,8 +1210,11 @@ typedef struct { } VkExtent3D; typedef struct { - uint64_t maxResourceSize; - uint32_t maxSamples; + VkExtent3D maxExtent; + uint32_t maxMipLevels; + uint32_t maxArraySize; + VkSampleCountFlags sampleCounts; + VkDeviceSize maxResourceSize; } VkImageFormatProperties; typedef struct { |