From: Kristian Høgsberg Date: Mon, 18 May 2015 01:39:12 +0000 (-0700) Subject: vk: Return VK_SUCCESS from vkAllocDescriptorSets X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b4b3bd1c51847b56d22731ba764cb4bc585f752a;p=mesa.git vk: Return VK_SUCCESS from vkAllocDescriptorSets This should've been returning VK_SUCCESS all along. --- diff --git a/src/vulkan/device.c b/src/vulkan/device.c index ae6d0bf9377..1191682ffe3 100644 --- a/src/vulkan/device.c +++ b/src/vulkan/device.c @@ -1587,7 +1587,7 @@ VkResult anv_AllocDescriptorSets( *pCount = count; - return VK_UNSUPPORTED; + return VK_SUCCESS; } void anv_ClearDescriptorSets(