diff options
author | Samuel Pitoiset <[email protected]> | 2017-11-10 09:17:58 +0100 |
---|---|---|
committer | Samuel Pitoiset <[email protected]> | 2017-11-13 11:05:26 +0100 |
commit | cd64a4f705ef7e1fc552ef907b9c61ea13593ef4 (patch) | |
tree | baf58405813b70bc5a582586470a7548e69b3776 /src/amd/vulkan/radv_formats.c | |
parent | 4e16c6a41e29b40ee8830fa95353f1f640b85136 (diff) |
radv: use vk_error() everywhere an error is returned
For consistency and it might help for debugging purposes.
Signed-off-by: Samuel Pitoiset <[email protected]>
Reviewed-by: Bas Nieuwenhuizen <[email protected]>
Diffstat (limited to 'src/amd/vulkan/radv_formats.c')
-rw-r--r-- | src/amd/vulkan/radv_formats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/amd/vulkan/radv_formats.c b/src/amd/vulkan/radv_formats.c index 5c79ea74069..7f679e87682 100644 --- a/src/amd/vulkan/radv_formats.c +++ b/src/amd/vulkan/radv_formats.c @@ -1144,7 +1144,7 @@ unsupported: .maxResourceSize = 0, }; - return VK_ERROR_FORMAT_NOT_SUPPORTED; + return vk_error(VK_ERROR_FORMAT_NOT_SUPPORTED); } VkResult radv_GetPhysicalDeviceImageFormatProperties( |