diff options
| author | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-10 13:44:12 -0600 |
|---|---|---|
| committer | Courtney Goeltzenleuchter <courtney@LunarG.com> | 2015-09-11 09:20:01 -0600 |
| commit | fefebcd74d1165d202a326887b93700b6d883f8a (patch) | |
| tree | f8d72abbde35b9cd8d92de7821efc9586b39f664 /layers/device_limits.cpp | |
| parent | eb1f6d4287dfd4907a29c1b4eab2b0ad15376c37 (diff) | |
| download | usermoji-fefebcd74d1165d202a326887b93700b6d883f8a.tar.xz | |
bug 14537: Improve VkImageFormatProperties
Diffstat (limited to 'layers/device_limits.cpp')
| -rw-r--r-- | layers/device_limits.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layers/device_limits.cpp b/layers/device_limits.cpp index 49f5103c..c8ff7fc1 100644 --- a/layers/device_limits.cpp +++ b/layers/device_limits.cpp @@ -228,9 +228,9 @@ VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceFormatProperties(VkPhysicalDev return result; } -VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageFormatProperties* pImageFormatProperties) +VK_LAYER_EXPORT VkResult VKAPI vkGetPhysicalDeviceImageFormatProperties(VkPhysicalDevice physicalDevice, VkFormat format, VkImageType type, VkImageTiling tiling, VkImageUsageFlags usage, VkImageCreateFlags flags, VkImageFormatProperties* pImageFormatProperties) { - VkResult result = get_dispatch_table(device_limits_instance_table_map, physicalDevice)->GetPhysicalDeviceImageFormatProperties(physicalDevice, format, type, tiling, usage, pImageFormatProperties); + VkResult result = get_dispatch_table(device_limits_instance_table_map, physicalDevice)->GetPhysicalDeviceImageFormatProperties(physicalDevice, format, type, tiling, usage, flags, pImageFormatProperties); return result; } |
