diff options
author | Jason Ekstrand <[email protected]> | 2015-12-02 03:33:20 -0800 |
---|---|---|
committer | Jason Ekstrand <[email protected]> | 2015-12-03 13:43:53 -0800 |
commit | a9fc0ce0e3293b45fc0a57e886e9d98eb79b7594 (patch) | |
tree | b99266816ce62a8b9dc1faa93dbb21a0feeb9e3e /src | |
parent | fcfb404a5860c67129e3672768cc557c0e4a1f12 (diff) |
vk/0.210.0: Delete three no longer existant entrypoints
Diffstat (limited to 'src')
-rw-r--r-- | src/vulkan/anv_device.c | 14 | ||||
-rw-r--r-- | src/vulkan/anv_pipeline.c | 7 |
2 files changed, 0 insertions, 21 deletions
diff --git a/src/vulkan/anv_device.c b/src/vulkan/anv_device.c index 3bbcdf04e35..1c313ff9eea 100644 --- a/src/vulkan/anv_device.c +++ b/src/vulkan/anv_device.c @@ -1291,20 +1291,6 @@ void anv_DestroySemaphore( stub(); } -VkResult anv_QueueSignalSemaphore( - VkQueue queue, - VkSemaphore semaphore) -{ - stub_return(VK_UNSUPPORTED); -} - -VkResult anv_QueueWaitSemaphore( - VkQueue queue, - VkSemaphore semaphore) -{ - stub_return(VK_UNSUPPORTED); -} - // Event functions VkResult anv_CreateEvent( diff --git a/src/vulkan/anv_pipeline.c b/src/vulkan/anv_pipeline.c index 2d695ee39ab..f4344a018b8 100644 --- a/src/vulkan/anv_pipeline.c +++ b/src/vulkan/anv_pipeline.c @@ -205,13 +205,6 @@ void anv_DestroyPipelineCache( { } -size_t anv_GetPipelineCacheSize( - VkDevice device, - VkPipelineCache pipelineCache) -{ - stub_return(0); -} - VkResult anv_GetPipelineCacheData( VkDevice device, VkPipelineCache pipelineCache, |