2018-02-21 22:05:17 +00:00
// ImGui Renderer for: Vulkan
// This needs to be used along with a Platform Binding (e.g. GLFW, SDL, Win32, custom..)
2018-02-16 21:50:19 +00:00
// Missing features:
2018-06-12 14:24:24 +00:00
// [ ] Platform: Multi-viewport / platform windows.
2018-06-11 10:33:51 +00:00
// [ ] Renderer: User texture binding. Changes of ImTextureID aren't supported by this binding! See https://github.com/ocornut/imgui/pull/914
2018-02-16 21:50:19 +00:00
// You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this.
2018-07-04 17:06:28 +00:00
// If you are new to dear imgui, read examples/README.txt and read the documentation at the top of imgui.cpp.
2018-02-16 21:50:19 +00:00
// https://github.com/ocornut/imgui
# include <vulkan/vulkan.h>
# define IMGUI_VK_QUEUED_FRAMES 2
2018-03-01 20:11:22 +00:00
struct ImGui_ImplVulkan_InitInfo
2018-02-16 21:50:19 +00:00
{
2018-03-02 22:59:21 +00:00
VkInstance Instance ;
2018-03-01 20:11:22 +00:00
VkPhysicalDevice PhysicalDevice ;
VkDevice Device ;
2018-03-12 16:37:28 +00:00
uint32_t QueueFamily ;
VkQueue Queue ;
2018-03-01 20:11:22 +00:00
VkPipelineCache PipelineCache ;
VkDescriptorPool DescriptorPool ;
2018-03-02 22:59:21 +00:00
const VkAllocationCallbacks * Allocator ;
2018-03-01 20:11:22 +00:00
void ( * CheckVkResultFn ) ( VkResult err ) ;
2018-02-16 21:50:19 +00:00
} ;
2018-06-21 10:04:00 +00:00
IMGUI_IMPL_API bool ImGui_ImplVulkan_Init ( ImGui_ImplVulkan_InitInfo * info , VkRenderPass render_pass ) ;
IMGUI_IMPL_API void ImGui_ImplVulkan_Shutdown ( ) ;
IMGUI_IMPL_API void ImGui_ImplVulkan_NewFrame ( ) ;
2018-06-22 08:02:02 +00:00
IMGUI_IMPL_API void ImGui_ImplVulkan_RenderDrawData ( ImDrawData * draw_data , VkCommandBuffer command_buffer ) ;
2018-02-16 21:50:19 +00:00
// Called by Init/NewFrame/Shutdown
2018-06-21 10:04:00 +00:00
IMGUI_IMPL_API void ImGui_ImplVulkan_InvalidateFontUploadObjects ( ) ;
IMGUI_IMPL_API void ImGui_ImplVulkan_InvalidateDeviceObjects ( ) ;
IMGUI_IMPL_API bool ImGui_ImplVulkan_CreateFontsTexture ( VkCommandBuffer command_buffer ) ;
IMGUI_IMPL_API bool ImGui_ImplVulkan_CreateDeviceObjects ( ) ;
2018-03-01 21:16:51 +00:00
2018-03-02 22:04:56 +00:00
//-------------------------------------------------------------------------
2018-03-01 21:16:51 +00:00
// Miscellaneous Vulkan Helpers
2018-03-02 22:04:56 +00:00
// Generally we try to NOT provide any kind of superfluous high-level helpers in the examples.
// But for the purpose of allowing multi-windows, we need those internally anyway. The code being not trivial are exposing it for the benefit of the example code.
// If your application/engine already has code to create all that data (swap chain, render pass, frame buffers, etc.) you can ignore all of this.
//-------------------------------------------------------------------------
2018-03-02 22:59:21 +00:00
// NB: Those functions do NOT use any of the state used/affected by the regular ImGui_ImplVulkan_XXX functions.
//-------------------------------------------------------------------------
2018-03-02 22:04:56 +00:00
2018-06-08 17:37:33 +00:00
struct ImGui_ImplVulkanH_FrameData ;
struct ImGui_ImplVulkanH_WindowData ;
2018-03-02 22:59:21 +00:00
2018-06-21 10:04:00 +00:00
IMGUI_IMPL_API void ImGui_ImplVulkanH_CreateWindowDataCommandBuffers ( VkPhysicalDevice physical_device , VkDevice device , uint32_t queue_family , ImGui_ImplVulkanH_WindowData * wd , const VkAllocationCallbacks * allocator ) ;
IMGUI_IMPL_API void ImGui_ImplVulkanH_CreateWindowDataSwapChainAndFramebuffer ( VkPhysicalDevice physical_device , VkDevice device , ImGui_ImplVulkanH_WindowData * wd , const VkAllocationCallbacks * allocator , int w , int h ) ;
IMGUI_IMPL_API void ImGui_ImplVulkanH_DestroyWindowData ( VkInstance instance , VkDevice device , ImGui_ImplVulkanH_WindowData * wd , const VkAllocationCallbacks * allocator ) ;
IMGUI_IMPL_API VkSurfaceFormatKHR ImGui_ImplVulkanH_SelectSurfaceFormat ( VkPhysicalDevice physical_device , VkSurfaceKHR surface , const VkFormat * request_formats , int request_formats_count , VkColorSpaceKHR request_color_space ) ;
IMGUI_IMPL_API VkPresentModeKHR ImGui_ImplVulkanH_SelectPresentMode ( VkPhysicalDevice physical_device , VkSurfaceKHR surface , const VkPresentModeKHR * request_modes , int request_modes_count ) ;
IMGUI_IMPL_API int ImGui_ImplVulkanH_GetMinImageCountFromPresentMode ( VkPresentModeKHR present_mode ) ;
2018-03-02 22:04:56 +00:00
2018-06-08 17:37:33 +00:00
struct ImGui_ImplVulkanH_FrameData
2018-03-02 22:04:56 +00:00
{
uint32_t BackbufferIndex ; // keep track of recently rendered swapchain frame indices
VkCommandPool CommandPool ;
VkCommandBuffer CommandBuffer ;
VkFence Fence ;
2018-03-12 17:43:25 +00:00
VkSemaphore ImageAcquiredSemaphore ;
2018-03-02 22:04:56 +00:00
VkSemaphore RenderCompleteSemaphore ;
2018-06-21 10:04:00 +00:00
IMGUI_IMPL_API ImGui_ImplVulkanH_FrameData ( ) ;
2018-03-02 22:04:56 +00:00
} ;
2018-06-08 17:37:33 +00:00
struct ImGui_ImplVulkanH_WindowData
2018-03-02 22:04:56 +00:00
{
2018-03-02 23:29:17 +00:00
int Width ;
int Height ;
2018-03-02 22:04:56 +00:00
VkSwapchainKHR Swapchain ;
VkSurfaceKHR Surface ;
VkSurfaceFormatKHR SurfaceFormat ;
VkPresentModeKHR PresentMode ;
VkRenderPass RenderPass ;
2018-03-15 16:52:53 +00:00
bool ClearEnable ;
2018-03-02 22:04:56 +00:00
VkClearValue ClearValue ;
uint32_t BackBufferCount ;
VkImage BackBuffer [ 16 ] ;
VkImageView BackBufferView [ 16 ] ;
VkFramebuffer Framebuffer [ 16 ] ;
uint32_t FrameIndex ;
2018-06-08 17:37:33 +00:00
ImGui_ImplVulkanH_FrameData Frames [ IMGUI_VK_QUEUED_FRAMES ] ;
2018-03-02 22:04:56 +00:00
2018-06-21 10:04:00 +00:00
IMGUI_IMPL_API ImGui_ImplVulkanH_WindowData ( ) ;
2018-03-02 22:04:56 +00:00
} ;
2018-03-02 22:59:21 +00:00