From ba205696261055aa5298a1852117c0a24fae10c4 Mon Sep 17 00:00:00 2001 From: Jason Ekstrand Date: Thu, 15 Oct 2015 14:34:07 -0700 Subject: [PATCH] anv/device: Make the CreateSemaphore stub return success --- src/vulkan/anv_device.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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( -- 2.30.2