aboutsummaryrefslogtreecommitdiff
path: root/icd
diff options
context:
space:
mode:
authorChia-I Wu <olv@lunarg.com>2015-10-26 19:48:03 +0800
committerChia-I Wu <olv@lunarg.com>2015-10-30 20:49:24 +0800
commit6f7b55de037c8f04d1bca34adbc6922fdda11bad (patch)
treecfd1188528ebc31724a7326900b5917592c5b2ba /icd
parente3b27abd755380a8a00247e38e35fe2d9d5250db (diff)
downloadusermoji-6f7b55de037c8f04d1bca34adbc6922fdda11bad.tar.xz
MR 461: Documented updated vkQueueSubmit and remove wait + signal semaphore operations on queues. (WIP)
https://gitlab.khronos.org/vulkan/vulkan/merge_requests/461
Diffstat (limited to 'icd')
-rw-r--r--icd/nulldrv/nulldrv.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/icd/nulldrv/nulldrv.c b/icd/nulldrv/nulldrv.c
index 7ca71bd4..69c11414 100644
--- a/icd/nulldrv/nulldrv.c
+++ b/icd/nulldrv/nulldrv.c
@@ -1846,22 +1846,6 @@ ICD_EXPORT void VKAPI vkDestroySemaphore(
NULLDRV_LOG_FUNC;
}
-ICD_EXPORT VkResult VKAPI vkQueueSignalSemaphore(
- VkQueue queue,
- VkSemaphore semaphore)
-{
- NULLDRV_LOG_FUNC;
- return VK_SUCCESS;
-}
-
-ICD_EXPORT VkResult VKAPI vkQueueWaitSemaphore(
- VkQueue queue,
- VkSemaphore semaphore)
-{
- NULLDRV_LOG_FUNC;
- return VK_SUCCESS;
-}
-
ICD_EXPORT VkResult VKAPI vkCreateSampler(
VkDevice device,
const VkSamplerCreateInfo* pCreateInfo,