anv/device: Make the CreateSemaphore stub return success

This commit is contained in:
Jason Ekstrand 2015-10-15 14:34:07 -07:00
parent bed7d1e03c
commit ba20569626

View file

@ -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(