2022-07-08 13:06:09 +00:00
|
|
|
// dear imgui: Renderer Backend for Vulkan
|
|
|
|
// This needs to be used along with a Platform Backend (e.g. GLFW, SDL, Win32, custom..)
|
2020-06-16 12:46:11 +00:00
|
|
|
|
|
|
|
#pragma once
|
2022-07-08 13:06:09 +00:00
|
|
|
#include "imgui.h" // IMGUI_IMPL_API
|
2022-07-08 11:49:27 +00:00
|
|
|
#include "common/vulkan/loader.h"
|
2020-06-16 12:46:11 +00:00
|
|
|
|
|
|
|
// Called by user code
|
2022-07-08 13:06:09 +00:00
|
|
|
bool ImGui_ImplVulkan_Init(VkRenderPass render_pass);
|
|
|
|
void ImGui_ImplVulkan_Shutdown();
|
|
|
|
void ImGui_ImplVulkan_RenderDrawData(ImDrawData* draw_data);
|
|
|
|
bool ImGui_ImplVulkan_CreateFontsTexture();
|