Bug 14248: Add vkFreeDescriptorSets
diff --git a/icd/nulldrv/nulldrv.c b/icd/nulldrv/nulldrv.c
index cea36c2..eb35263 100644
--- a/icd/nulldrv/nulldrv.c
+++ b/icd/nulldrv/nulldrv.c
@@ -2283,6 +2283,16 @@
     return ret;
 }
 
+ICD_EXPORT VkResult VKAPI vkFreeDescriptorSets(
+    VkDevice                                    device,
+    VkDescriptorPool                            descriptorPool,
+    uint32_t                                    count,
+    const VkDescriptorSet*                      pDescriptorSets)
+{
+    NULLDRV_LOG_FUNC;
+    return VK_SUCCESS;
+}
+
 ICD_EXPORT VkResult VKAPI vkUpdateDescriptorSets(
     VkDevice                                    device,
     uint32_t                                    writeCount,