set up backend functions

This commit is contained in:
Sri Sham Haran 2022-09-08 20:34:44 +08:00
parent 407ac11753
commit 28ab89cf91
1 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ namespace SHADE
void SHEditor::Render() void SHEditor::Render()
{ {
ImGui_ImplVulkan_RenderDrawData(ImGui::GetDrawData(), ) //ImGui_ImplVulkan_RenderDrawData(ImGui::GetDrawData(), )
} }
void SHEditor::Exit() void SHEditor::Exit()
@ -38,7 +38,7 @@ namespace SHADE
void SHEditor::SetupVulkanBackend() void SHEditor::SetupVulkanBackend()
{ {
ImGui_ImplVulkan_InitInfo initInfo; ImGui_ImplVulkan_InitInfo initInfo;
//initInfo.Device =
ImGui_ImplVulkan_Init(&initInfo, VK_NULL_HANDLE); ImGui_ImplVulkan_Init(&initInfo, VK_NULL_HANDLE);
} }