Added few more stubs so that control reaches to DestroyDevice().
[mesa.git] / src / libre-soc / vulkan / libresoc_cmd_buffer.c
index a865f5bd816b4534f760ca4f67be933f9d9ca93f..2782653eee2a8d4aad0a087e671d01ab1fd27d9a 100644 (file)
 
 #include "libresoc_private.h"
 
+void libresoc_CmdEndRenderPass(
+       VkCommandBuffer                             commandBuffer)
+{}
+
+void libresoc_CmdDraw(
+       VkCommandBuffer                             commandBuffer,
+       uint32_t                                    vertexCount,
+       uint32_t                                    instanceCount,
+       uint32_t                                    firstVertex,
+       uint32_t                                    firstInstance)
+{
+}
+
+void libresoc_CmdBindPipeline(
+       VkCommandBuffer                             commandBuffer,
+       VkPipelineBindPoint                         pipelineBindPoint,
+       VkPipeline                                  _pipeline)
+{
+}
+
+
+void libresoc_CmdBeginRenderPass(
+       VkCommandBuffer                             commandBuffer,
+       const VkRenderPassBeginInfo*                pRenderPassBegin,
+       VkSubpassContents                           contents)
+{
+}
+
 void libresoc_FreeCommandBuffers(
        VkDevice device,
        VkCommandPool commandPool,