vk: Unstub VkSemaphore implementation

There really is nothing to do for us here, at least with the current
kernel interface.
This commit is contained in:
Kristian Høgsberg Kristensen 2015-12-20 22:58:38 -08:00
parent 5fab35d090
commit a00524a216
1 changed files with 6 additions and 2 deletions

View File

@ -1429,8 +1429,13 @@ VkResult anv_CreateSemaphore(
const VkAllocationCallbacks* pAllocator,
VkSemaphore* pSemaphore)
{
/* The DRM execbuffer ioctl always execute in-oder, even between different
* rings. As such, there's nothing to do for the user space semaphore.
*/
*pSemaphore = (VkSemaphore)1;
stub_return(VK_SUCCESS);
return VK_SUCCESS;
}
void anv_DestroySemaphore(
@ -1438,7 +1443,6 @@ void anv_DestroySemaphore(
VkSemaphore semaphore,
const VkAllocationCallbacks* pAllocator)
{
stub();
}
// Event functions