From: Jason Ekstrand Date: Thu, 15 Oct 2015 21:34:07 +0000 (-0700) Subject: anv/device: Make the CreateSemaphore stub return success X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ba205696261055aa5298a1852117c0a24fae10c4;p=mesa.git anv/device: Make the CreateSemaphore stub return success --- diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index cc9ead86e73..bd1c0f2908d 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -1266,7 +1266,8 @@ VkResult anv_CreateSemaphore( const VkSemaphoreCreateInfo* pCreateInfo, VkSemaphore* pSemaphore) { - stub_return(VK_UNSUPPORTED); + pSemaphore->handle = 1; + stub_return(VK_SUCCESS); } void anv_DestroySemaphore(