vulkan.h: Change return types of some functions to void
Functions that should be thought of as "impossible to fail in the face
of valid parameters" have had their return types changed to void.
This includes all of the vkDestroy functions, vkFreeMemory, and vkUnmapMemory.
vkUpdateDescriptorSets is also included, because of the frequency the function
is expected to be called.
diff --git a/icd/intel/queue.c b/icd/intel/queue.c
index d431cc9..03ca087 100644
--- a/icd/intel/queue.c
+++ b/icd/intel/queue.c
@@ -400,12 +400,11 @@
return VK_SUCCESS;
}
-ICD_EXPORT VkResult VKAPI vkDestroySemaphore(
+ICD_EXPORT void VKAPI vkDestroySemaphore(
VkDevice device,
VkSemaphore semaphore)
{
- return VK_SUCCESS;
}
ICD_EXPORT VkResult VKAPI vkQueueSignalSemaphore(