At this stage after adding few more stubs driver fails at
[mesa.git] / src / libre-soc / vulkan / libresoc_device.c
index 92a901657e9e1cd9a7a75997c6808de55a34af7b..0aadfe769a4027b864f41d35db3190b0b3fb2861 100644 (file)
@@ -1727,3 +1727,24 @@ VkResult libresoc_ResetFences(VkDevice _device,
        //TODO: stub
        return VK_SUCCESS;
 }
+
+VkResult libresoc_CreateFramebuffer(
+       VkDevice                                    _device,
+       const VkFramebufferCreateInfo*              pCreateInfo,
+       const VkAllocationCallbacks*                pAllocator,
+       VkFramebuffer*                              pFramebuffer)
+{
+       //TODO: stub
+       return VK_SUCCESS;
+}
+void libresoc_DestroyBuffer(
+       VkDevice                                    _device,
+       VkBuffer                                    _buffer,
+       const VkAllocationCallbacks*                pAllocator)
+{}
+
+void libresoc_DestroyFence(
+       VkDevice                                    _device,
+       VkFence                                     _fence,
+       const VkAllocationCallbacks*                pAllocator)
+{}