2018-02-21 21:39:49 +00:00
// ImGui - standalone example application for Glfw + Vulkan
2016-03-09 15:39:54 +00:00
// If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
2018-01-29 13:38:46 +00:00
# include "imgui.h"
2018-02-16 21:50:19 +00:00
# include "../imgui_impl_glfw.h"
# include "../imgui_impl_vulkan.h"
2016-03-09 15:39:54 +00:00
2016-04-03 15:32:53 +00:00
# include <stdio.h> // printf, fprintf
# include <stdlib.h> // abort
2016-03-09 15:39:54 +00:00
# define GLFW_INCLUDE_NONE
# define GLFW_INCLUDE_VULKAN
# include <GLFW/glfw3.h>
2018-02-21 21:39:49 +00:00
# include <vulkan/vulkan.h>
2016-03-09 15:39:54 +00:00
2018-03-01 20:11:22 +00:00
// FIXME-VULKAN: Resizing with IMGUI_UNLIMITED_FRAME_RATE triggers errors from the validation layer.
2016-03-09 15:39:54 +00:00
# define IMGUI_MAX_POSSIBLE_BACK_BUFFERS 16
2017-02-26 12:36:40 +00:00
# define IMGUI_UNLIMITED_FRAME_RATE
2018-03-01 17:59:07 +00:00
# ifdef _DEBUG
# define IMGUI_VULKAN_DEBUG_REPORT
# endif
2016-03-09 15:39:54 +00:00
static VkAllocationCallbacks * g_Allocator = NULL ;
static VkInstance g_Instance = VK_NULL_HANDLE ;
static VkSurfaceKHR g_Surface = VK_NULL_HANDLE ;
2018-03-01 20:11:22 +00:00
static VkPhysicalDevice g_PhysicalDevice = VK_NULL_HANDLE ;
2016-03-09 15:39:54 +00:00
static VkDevice g_Device = VK_NULL_HANDLE ;
static VkSwapchainKHR g_Swapchain = VK_NULL_HANDLE ;
static VkRenderPass g_RenderPass = VK_NULL_HANDLE ;
2018-03-01 20:11:22 +00:00
static uint32_t g_QueueFamily = ( uint32_t ) - 1 ;
2016-03-09 15:39:54 +00:00
static VkQueue g_Queue = VK_NULL_HANDLE ;
2018-03-01 17:59:07 +00:00
static VkDebugReportCallbackEXT g_DebugReport = VK_NULL_HANDLE ;
2016-03-09 15:39:54 +00:00
2017-02-26 16:31:02 +00:00
static VkSurfaceFormatKHR g_SurfaceFormat ;
static VkPresentModeKHR g_PresentMode ;
2016-03-09 15:39:54 +00:00
static VkPipelineCache g_PipelineCache = VK_NULL_HANDLE ;
static VkDescriptorPool g_DescriptorPool = VK_NULL_HANDLE ;
static int fb_width , fb_height ;
2017-02-27 14:05:08 +00:00
static uint32_t g_BackbufferIndices [ IMGUI_VK_QUEUED_FRAMES ] ; // keep track of recently rendered swapchain frame indices
2016-03-09 15:39:54 +00:00
static uint32_t g_BackBufferCount = 0 ;
static VkImage g_BackBuffer [ IMGUI_MAX_POSSIBLE_BACK_BUFFERS ] = { } ;
static VkImageView g_BackBufferView [ IMGUI_MAX_POSSIBLE_BACK_BUFFERS ] = { } ;
static VkFramebuffer g_Framebuffer [ IMGUI_MAX_POSSIBLE_BACK_BUFFERS ] = { } ;
static uint32_t g_FrameIndex = 0 ;
static VkCommandPool g_CommandPool [ IMGUI_VK_QUEUED_FRAMES ] ;
static VkCommandBuffer g_CommandBuffer [ IMGUI_VK_QUEUED_FRAMES ] ;
static VkFence g_Fence [ IMGUI_VK_QUEUED_FRAMES ] ;
2017-02-27 14:05:08 +00:00
static VkSemaphore g_PresentCompleteSemaphore [ IMGUI_VK_QUEUED_FRAMES ] ;
static VkSemaphore g_RenderCompleteSemaphore [ IMGUI_VK_QUEUED_FRAMES ] ;
2016-03-09 15:39:54 +00:00
static VkClearValue g_ClearValue = { } ;
static void check_vk_result ( VkResult err )
{
2016-04-03 15:32:53 +00:00
if ( err = = 0 ) return ;
2016-03-09 15:39:54 +00:00
printf ( " VkResult %d \n " , err ) ;
2016-11-13 02:00:36 +00:00
if ( err < 0 )
2016-04-03 15:32:53 +00:00
abort ( ) ;
2016-03-09 15:39:54 +00:00
}
2018-02-21 21:39:49 +00:00
static void resize_vulkan ( GLFWwindow * , int w , int h )
2016-03-09 15:39:54 +00:00
{
VkResult err ;
VkSwapchainKHR old_swapchain = g_Swapchain ;
err = vkDeviceWaitIdle ( g_Device ) ;
check_vk_result ( err ) ;
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
// Destroy old Framebuffer
2016-11-12 16:49:59 +00:00
for ( uint32_t i = 0 ; i < g_BackBufferCount ; i + + )
2018-03-01 20:11:22 +00:00
{
2016-04-03 15:32:53 +00:00
if ( g_BackBufferView [ i ] )
2016-03-09 15:39:54 +00:00
vkDestroyImageView ( g_Device , g_BackBufferView [ i ] , g_Allocator ) ;
2016-04-03 15:32:53 +00:00
if ( g_Framebuffer [ i ] )
2016-03-09 15:39:54 +00:00
vkDestroyFramebuffer ( g_Device , g_Framebuffer [ i ] , g_Allocator ) ;
2018-03-01 20:11:22 +00:00
}
2016-04-03 15:32:53 +00:00
if ( g_RenderPass )
2016-03-09 15:39:54 +00:00
vkDestroyRenderPass ( g_Device , g_RenderPass , g_Allocator ) ;
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
// Create Swapchain
2016-03-09 15:39:54 +00:00
{
VkSwapchainCreateInfoKHR info = { } ;
info . sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR ;
info . surface = g_Surface ;
2017-02-26 16:31:02 +00:00
info . imageFormat = g_SurfaceFormat . format ;
info . imageColorSpace = g_SurfaceFormat . colorSpace ;
2016-03-09 15:39:54 +00:00
info . imageArrayLayers = 1 ;
2018-03-01 20:11:22 +00:00
info . imageUsage = VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT ;
info . imageSharingMode = VK_SHARING_MODE_EXCLUSIVE ; // Assume that graphics family == present family
2016-03-09 15:39:54 +00:00
info . preTransform = VK_SURFACE_TRANSFORM_IDENTITY_BIT_KHR ;
info . compositeAlpha = VK_COMPOSITE_ALPHA_OPAQUE_BIT_KHR ;
2017-02-26 16:31:02 +00:00
info . presentMode = g_PresentMode ;
2016-03-09 15:39:54 +00:00
info . clipped = VK_TRUE ;
info . oldSwapchain = old_swapchain ;
VkSurfaceCapabilitiesKHR cap ;
2018-03-01 20:11:22 +00:00
err = vkGetPhysicalDeviceSurfaceCapabilitiesKHR ( g_PhysicalDevice , g_Surface , & cap ) ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
2016-08-20 11:27:03 +00:00
if ( cap . maxImageCount > 0 )
info . minImageCount = ( cap . minImageCount + 2 < cap . maxImageCount ) ? ( cap . minImageCount + 2 ) : cap . maxImageCount ;
else
info . minImageCount = cap . minImageCount + 2 ;
2017-02-26 12:25:54 +00:00
2016-04-03 15:32:53 +00:00
if ( cap . currentExtent . width = = 0xffffffff )
{
2018-03-01 20:11:22 +00:00
info . imageExtent . width = fb_width = w ;
info . imageExtent . height = fb_height = h ;
2016-03-09 15:39:54 +00:00
}
2016-04-03 15:32:53 +00:00
else
{
2018-03-01 20:11:22 +00:00
info . imageExtent . width = fb_width = cap . currentExtent . width ;
info . imageExtent . height = fb_height = cap . currentExtent . height ;
2016-03-09 15:39:54 +00:00
}
err = vkCreateSwapchainKHR ( g_Device , & info , g_Allocator , & g_Swapchain ) ;
check_vk_result ( err ) ;
err = vkGetSwapchainImagesKHR ( g_Device , g_Swapchain , & g_BackBufferCount , NULL ) ;
check_vk_result ( err ) ;
err = vkGetSwapchainImagesKHR ( g_Device , g_Swapchain , & g_BackBufferCount , g_BackBuffer ) ;
check_vk_result ( err ) ;
}
2016-04-03 15:32:53 +00:00
if ( old_swapchain )
2016-03-09 15:39:54 +00:00
vkDestroySwapchainKHR ( g_Device , old_swapchain , g_Allocator ) ;
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
// Create the Render Pass
2016-03-09 15:39:54 +00:00
{
VkAttachmentDescription attachment = { } ;
2017-02-26 16:31:02 +00:00
attachment . format = g_SurfaceFormat . format ;
2016-03-09 15:39:54 +00:00
attachment . samples = VK_SAMPLE_COUNT_1_BIT ;
attachment . loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR ;
attachment . storeOp = VK_ATTACHMENT_STORE_OP_STORE ;
attachment . stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE ;
attachment . stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE ;
attachment . initialLayout = VK_IMAGE_LAYOUT_UNDEFINED ;
2017-02-26 16:58:02 +00:00
attachment . finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR ;
2016-03-09 15:39:54 +00:00
VkAttachmentReference color_attachment = { } ;
color_attachment . attachment = 0 ;
color_attachment . layout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL ;
VkSubpassDescription subpass = { } ;
subpass . pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS ;
subpass . colorAttachmentCount = 1 ;
subpass . pColorAttachments = & color_attachment ;
VkRenderPassCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO ;
info . attachmentCount = 1 ;
info . pAttachments = & attachment ;
info . subpassCount = 1 ;
info . pSubpasses = & subpass ;
err = vkCreateRenderPass ( g_Device , & info , g_Allocator , & g_RenderPass ) ;
check_vk_result ( err ) ;
}
2016-04-03 15:32:53 +00:00
2016-03-09 15:39:54 +00:00
// Create The Image Views
{
VkImageViewCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO ;
info . viewType = VK_IMAGE_VIEW_TYPE_2D ;
2017-02-26 16:31:02 +00:00
info . format = g_SurfaceFormat . format ;
2016-03-09 15:39:54 +00:00
info . components . r = VK_COMPONENT_SWIZZLE_R ;
info . components . g = VK_COMPONENT_SWIZZLE_G ;
info . components . b = VK_COMPONENT_SWIZZLE_B ;
info . components . a = VK_COMPONENT_SWIZZLE_A ;
2018-03-01 20:11:22 +00:00
VkImageSubresourceRange image_range = { VK_IMAGE_ASPECT_COLOR_BIT , 0 , 1 , 0 , 1 } ;
info . subresourceRange = image_range ;
2016-11-12 16:49:59 +00:00
for ( uint32_t i = 0 ; i < g_BackBufferCount ; i + + )
2016-04-03 15:32:53 +00:00
{
2016-03-09 15:39:54 +00:00
info . image = g_BackBuffer [ i ] ;
err = vkCreateImageView ( g_Device , & info , g_Allocator , & g_BackBufferView [ i ] ) ;
check_vk_result ( err ) ;
}
}
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
// Create Framebuffer
2016-03-09 15:39:54 +00:00
{
VkImageView attachment [ 1 ] ;
VkFramebufferCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO ;
info . renderPass = g_RenderPass ;
info . attachmentCount = 1 ;
info . pAttachments = attachment ;
info . width = fb_width ;
info . height = fb_height ;
info . layers = 1 ;
2016-11-12 16:49:59 +00:00
for ( uint32_t i = 0 ; i < g_BackBufferCount ; i + + )
2016-04-03 15:32:53 +00:00
{
2016-03-09 15:39:54 +00:00
attachment [ 0 ] = g_BackBufferView [ i ] ;
err = vkCreateFramebuffer ( g_Device , & info , g_Allocator , & g_Framebuffer [ i ] ) ;
check_vk_result ( err ) ;
}
}
}
2017-02-26 12:36:40 +00:00
# ifdef IMGUI_VULKAN_DEBUG_REPORT
2018-03-01 17:41:19 +00:00
static VKAPI_ATTR VkBool32 VKAPI_CALL debug_report ( VkDebugReportFlagsEXT flags , VkDebugReportObjectTypeEXT objectType , uint64_t object , size_t location , int32_t messageCode , const char * pLayerPrefix , const char * pMessage , void * pUserData )
2017-02-26 12:36:40 +00:00
{
2018-03-01 17:41:19 +00:00
( void ) flags ; ( void ) object ; ( void ) location ; ( void ) messageCode ; ( void ) pUserData ; ( void ) pLayerPrefix ; // Unused arguemnts
2018-02-21 21:39:49 +00:00
printf ( " [vulkan] ObjectType: %i \n Message: %s \n \n " , objectType , pMessage ) ;
2017-02-26 12:36:40 +00:00
return VK_FALSE ;
}
# endif // IMGUI_VULKAN_DEBUG_REPORT
2018-02-21 21:39:49 +00:00
static void setup_vulkan ( GLFWwindow * window , const char * * extensions , uint32_t extensions_count )
2016-03-09 15:39:54 +00:00
{
VkResult err ;
2016-04-03 15:32:53 +00:00
2016-03-09 15:39:54 +00:00
// Create Vulkan Instance
{
VkInstanceCreateInfo create_info = { } ;
create_info . sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO ;
2017-05-01 15:07:05 +00:00
create_info . enabledExtensionCount = extensions_count ;
2018-02-21 21:39:49 +00:00
create_info . ppEnabledExtensionNames = extensions ;
2017-05-01 15:07:05 +00:00
2017-02-26 12:36:40 +00:00
# ifdef IMGUI_VULKAN_DEBUG_REPORT
2018-03-01 17:41:19 +00:00
// Enabling multiple validation layers grouped as LunarG standard validation
2018-02-21 21:39:49 +00:00
const char * layers [ ] = { " VK_LAYER_LUNARG_standard_validation " } ;
2017-02-26 12:36:40 +00:00
create_info . enabledLayerCount = 1 ;
create_info . ppEnabledLayerNames = layers ;
2018-03-01 17:41:19 +00:00
// Enable debug report extension (we need additional storage, so we duplicate the user array to add our new extension to it)
const char * * extensions_ext = ( const char * * ) malloc ( sizeof ( const char * ) * ( extensions_count + 1 ) ) ;
memcpy ( extensions_ext , extensions , extensions_count * sizeof ( const char * ) ) ;
extensions_ext [ extensions_count ] = " VK_EXT_debug_report " ;
2018-02-21 21:39:49 +00:00
create_info . enabledExtensionCount = extensions_count + 1 ;
2018-03-01 17:41:19 +00:00
create_info . ppEnabledExtensionNames = extensions_ext ;
2017-02-26 12:36:40 +00:00
# endif // IMGUI_VULKAN_DEBUG_REPORT
2016-03-09 15:39:54 +00:00
err = vkCreateInstance ( & create_info , g_Allocator , & g_Instance ) ;
check_vk_result ( err ) ;
2017-02-26 12:36:40 +00:00
# ifdef IMGUI_VULKAN_DEBUG_REPORT
2018-03-01 17:41:19 +00:00
free ( extensions_ext ) ;
2017-02-26 12:36:40 +00:00
2018-03-01 17:59:07 +00:00
// Get the function pointer (required for any extensions)
auto vkCreateDebugReportCallbackEXT = ( PFN_vkCreateDebugReportCallbackEXT ) vkGetInstanceProcAddr ( g_Instance , " vkCreateDebugReportCallbackEXT " ) ;
IM_ASSERT ( vkCreateDebugReportCallbackEXT ! = NULL ) ;
// Setup the debug report callback
2018-02-21 21:39:49 +00:00
VkDebugReportCallbackCreateInfoEXT debug_report_ci = { } ;
2017-02-26 12:36:40 +00:00
debug_report_ci . sType = VK_STRUCTURE_TYPE_DEBUG_REPORT_CALLBACK_CREATE_INFO_EXT ;
debug_report_ci . flags = VK_DEBUG_REPORT_ERROR_BIT_EXT | VK_DEBUG_REPORT_WARNING_BIT_EXT | VK_DEBUG_REPORT_PERFORMANCE_WARNING_BIT_EXT ;
debug_report_ci . pfnCallback = debug_report ;
debug_report_ci . pUserData = NULL ;
2018-03-01 17:59:07 +00:00
err = vkCreateDebugReportCallbackEXT ( g_Instance , & debug_report_ci , g_Allocator , & g_DebugReport ) ;
2017-05-01 15:07:05 +00:00
check_vk_result ( err ) ;
2017-02-26 12:36:40 +00:00
# endif // IMGUI_VULKAN_DEBUG_REPORT
2016-03-09 15:39:54 +00:00
}
2016-04-03 15:32:53 +00:00
2018-02-21 21:39:49 +00:00
// Create Window Surface (with GLFW)
2016-03-09 15:39:54 +00:00
{
err = glfwCreateWindowSurface ( g_Instance , window , g_Allocator , & g_Surface ) ;
check_vk_result ( err ) ;
}
2016-11-13 02:00:36 +00:00
2018-03-01 20:11:22 +00:00
// Select GPU
2016-03-09 15:39:54 +00:00
{
2017-02-26 16:31:02 +00:00
uint32_t gpu_count ;
err = vkEnumeratePhysicalDevices ( g_Instance , & gpu_count , NULL ) ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
2017-02-26 16:31:02 +00:00
2017-05-01 15:07:05 +00:00
VkPhysicalDevice * gpus = ( VkPhysicalDevice * ) malloc ( sizeof ( VkPhysicalDevice ) * gpu_count ) ;
err = vkEnumeratePhysicalDevices ( g_Instance , & gpu_count , gpus ) ;
check_vk_result ( err ) ;
2017-02-26 16:31:02 +00:00
2017-05-01 15:07:05 +00:00
// If a number >1 of GPUs got reported, you should find the best fit GPU for your purpose
// e.g. VK_PHYSICAL_DEVICE_TYPE_DISCRETE_GPU if available, or with the greatest memory available, etc.
// for sake of simplicity we'll just take the first one, assuming it has a graphics queue family.
2018-03-01 20:11:22 +00:00
g_PhysicalDevice = gpus [ 0 ] ;
2017-05-01 15:07:05 +00:00
free ( gpus ) ;
2016-03-09 15:39:54 +00:00
}
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
// Select graphics queue family
2016-11-13 02:00:36 +00:00
{
uint32_t count ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceQueueFamilyProperties ( g_PhysicalDevice , & count , NULL ) ;
2016-11-13 16:57:43 +00:00
VkQueueFamilyProperties * queues = ( VkQueueFamilyProperties * ) malloc ( sizeof ( VkQueueFamilyProperties ) * count ) ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceQueueFamilyProperties ( g_PhysicalDevice , & count , queues ) ;
2016-11-13 16:57:43 +00:00
for ( uint32_t i = 0 ; i < count ; i + + )
if ( queues [ i ] . queueFlags & VK_QUEUE_GRAPHICS_BIT )
{
2016-11-13 02:00:36 +00:00
g_QueueFamily = i ;
break ;
}
free ( queues ) ;
2018-03-01 20:11:22 +00:00
IM_ASSERT ( g_QueueFamily ! = - 1 ) ;
2016-11-13 02:00:36 +00:00
}
// Check for WSI support
{
VkBool32 res ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceSurfaceSupportKHR ( g_PhysicalDevice , g_QueueFamily , g_Surface , & res ) ;
2016-11-13 16:57:43 +00:00
if ( res ! = VK_TRUE )
{
2016-11-13 02:00:36 +00:00
fprintf ( stderr , " Error no WSI support on physical device 0 \n " ) ;
exit ( - 1 ) ;
}
}
2016-11-13 04:23:33 +00:00
// Get Surface Format
2016-11-13 02:00:36 +00:00
{
2017-02-26 16:31:02 +00:00
// Per Spec Format and View Format are expected to be the same unless VK_IMAGE_CREATE_MUTABLE_BIT was set at image creation
2018-03-01 20:11:22 +00:00
// Assuming that the default behavior is without setting this bit, there is no need for separate Swapchain image and image view format
// Additionally several new color spaces were introduced with Vulkan Spec v1.0.40,
// hence we must make sure that a format with the mostly available color space, VK_COLOR_SPACE_SRGB_NONLINEAR_KHR, is found and used.
2016-11-13 04:23:33 +00:00
uint32_t count ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceSurfaceFormatsKHR ( g_PhysicalDevice , g_Surface , & count , NULL ) ;
VkSurfaceFormatKHR * formats = ( VkSurfaceFormatKHR * ) malloc ( sizeof ( VkSurfaceFormatKHR ) * count ) ;
vkGetPhysicalDeviceSurfaceFormatsKHR ( g_PhysicalDevice , g_Surface , & count , formats ) ;
2017-02-26 16:31:02 +00:00
2018-03-01 20:11:22 +00:00
// First check if only one format, VK_FORMAT_UNDEFINED, is available, which would imply that any format is available
2017-02-26 16:31:02 +00:00
if ( count = = 1 )
2016-11-13 16:57:43 +00:00
{
2018-02-21 21:39:49 +00:00
if ( formats [ 0 ] . format = = VK_FORMAT_UNDEFINED )
2016-11-13 16:57:43 +00:00
{
2017-02-26 16:31:02 +00:00
g_SurfaceFormat . format = VK_FORMAT_B8G8R8A8_UNORM ;
g_SurfaceFormat . colorSpace = VK_COLORSPACE_SRGB_NONLINEAR_KHR ;
}
else
2018-03-01 20:11:22 +00:00
{
// No point in searching another format
2017-02-26 16:31:02 +00:00
g_SurfaceFormat = formats [ 0 ] ;
}
}
else
{
2018-03-01 20:11:22 +00:00
// Request several formats, the first found will be used
2018-02-21 21:39:49 +00:00
VkFormat requestSurfaceImageFormat [ ] = { VK_FORMAT_B8G8R8A8_UNORM , VK_FORMAT_R8G8B8A8_UNORM , VK_FORMAT_B8G8R8_UNORM , VK_FORMAT_R8G8B8_UNORM } ;
2017-02-26 16:31:02 +00:00
VkColorSpaceKHR requestSurfaceColorSpace = VK_COLORSPACE_SRGB_NONLINEAR_KHR ;
2018-03-01 20:11:22 +00:00
bool found = false ;
for ( size_t i = 0 ; found = = false & & i < sizeof ( requestSurfaceImageFormat ) / sizeof ( requestSurfaceImageFormat [ 0 ] ) ; i + + )
2017-02-26 16:31:02 +00:00
for ( uint32_t j = 0 ; j < count ; j + + )
if ( formats [ j ] . format = = requestSurfaceImageFormat [ i ] & & formats [ j ] . colorSpace = = requestSurfaceColorSpace )
{
g_SurfaceFormat = formats [ j ] ;
2018-03-01 20:11:22 +00:00
found = true ;
2017-02-26 16:31:02 +00:00
}
2018-03-01 20:11:22 +00:00
// If none of the requested image formats could be found, use the first available
if ( ! found )
2017-02-26 16:31:02 +00:00
g_SurfaceFormat = formats [ 0 ] ;
2016-11-13 04:23:33 +00:00
}
free ( formats ) ;
2016-11-13 02:00:36 +00:00
}
2017-02-26 16:31:02 +00:00
// Get Present Mode
{
2018-03-01 20:11:22 +00:00
// Request a certain mode and confirm that it is available. If not use VK_PRESENT_MODE_FIFO_KHR which is mandatory
2017-02-26 16:31:02 +00:00
# ifdef IMGUI_UNLIMITED_FRAME_RATE
g_PresentMode = VK_PRESENT_MODE_IMMEDIATE_KHR ;
# else
g_PresentMode = VK_PRESENT_MODE_FIFO_KHR ;
# endif
uint32_t count = 0 ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceSurfacePresentModesKHR ( g_PhysicalDevice , g_Surface , & count , nullptr ) ;
2017-05-01 15:07:05 +00:00
VkPresentModeKHR * presentModes = ( VkPresentModeKHR * ) malloc ( sizeof ( VkQueueFamilyProperties ) * count ) ;
2018-03-01 20:11:22 +00:00
vkGetPhysicalDeviceSurfacePresentModesKHR ( g_PhysicalDevice , g_Surface , & count , presentModes ) ;
2017-02-26 16:31:02 +00:00
bool presentModeAvailable = false ;
2018-03-01 20:11:22 +00:00
for ( size_t i = 0 ; i < count & & ! presentModeAvailable ; i + + )
2017-02-26 16:31:02 +00:00
if ( presentModes [ i ] = = g_PresentMode )
presentModeAvailable = true ;
2018-02-21 21:39:49 +00:00
if ( ! presentModeAvailable )
2018-03-01 20:11:22 +00:00
g_PresentMode = VK_PRESENT_MODE_FIFO_KHR ; // Always available
2017-02-26 16:31:02 +00:00
}
2018-03-01 20:11:22 +00:00
// Create Logical Device (with 1 queue)
2016-03-09 15:39:54 +00:00
{
int device_extension_count = 1 ;
2018-02-21 21:39:49 +00:00
const char * device_extensions [ ] = { " VK_KHR_swapchain " } ;
const float queue_priority [ ] = { 1.0f } ;
2016-03-09 15:39:54 +00:00
VkDeviceQueueCreateInfo queue_info [ 1 ] = { } ;
queue_info [ 0 ] . sType = VK_STRUCTURE_TYPE_DEVICE_QUEUE_CREATE_INFO ;
queue_info [ 0 ] . queueFamilyIndex = g_QueueFamily ;
2018-03-01 20:11:22 +00:00
queue_info [ 0 ] . queueCount = 1 ;
2016-03-09 15:39:54 +00:00
queue_info [ 0 ] . pQueuePriorities = queue_priority ;
VkDeviceCreateInfo create_info = { } ;
create_info . sType = VK_STRUCTURE_TYPE_DEVICE_CREATE_INFO ;
2018-02-21 21:39:49 +00:00
create_info . queueCreateInfoCount = sizeof ( queue_info ) / sizeof ( queue_info [ 0 ] ) ;
2016-03-09 15:39:54 +00:00
create_info . pQueueCreateInfos = queue_info ;
create_info . enabledExtensionCount = device_extension_count ;
create_info . ppEnabledExtensionNames = device_extensions ;
2018-03-01 20:11:22 +00:00
err = vkCreateDevice ( g_PhysicalDevice , & create_info , g_Allocator , & g_Device ) ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
2018-03-01 20:11:22 +00:00
vkGetDeviceQueue ( g_Device , g_QueueFamily , 0 , & g_Queue ) ;
2016-03-09 15:39:54 +00:00
}
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
2016-03-09 15:39:54 +00:00
// Create Framebuffers
{
int w , h ;
glfwGetFramebufferSize ( window , & w , & h ) ;
resize_vulkan ( window , w , h ) ;
glfwSetFramebufferSizeCallback ( window , resize_vulkan ) ;
}
2016-04-03 15:32:53 +00:00
2018-03-01 20:11:22 +00:00
2016-03-09 15:39:54 +00:00
// Create Command Buffers
2016-11-12 16:49:59 +00:00
for ( int i = 0 ; i < IMGUI_VK_QUEUED_FRAMES ; i + + )
2016-04-03 15:32:53 +00:00
{
2016-03-09 15:39:54 +00:00
{
VkCommandPoolCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_COMMAND_POOL_CREATE_INFO ;
info . flags = VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT ;
info . queueFamilyIndex = g_QueueFamily ;
err = vkCreateCommandPool ( g_Device , & info , g_Allocator , & g_CommandPool [ i ] ) ;
check_vk_result ( err ) ;
}
{
VkCommandBufferAllocateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_ALLOCATE_INFO ;
info . commandPool = g_CommandPool [ i ] ;
info . level = VK_COMMAND_BUFFER_LEVEL_PRIMARY ;
info . commandBufferCount = 1 ;
err = vkAllocateCommandBuffers ( g_Device , & info , & g_CommandBuffer [ i ] ) ;
check_vk_result ( err ) ;
}
{
VkFenceCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_FENCE_CREATE_INFO ;
info . flags = VK_FENCE_CREATE_SIGNALED_BIT ;
err = vkCreateFence ( g_Device , & info , g_Allocator , & g_Fence [ i ] ) ;
check_vk_result ( err ) ;
}
{
VkSemaphoreCreateInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_SEMAPHORE_CREATE_INFO ;
2017-02-27 14:05:08 +00:00
err = vkCreateSemaphore ( g_Device , & info , g_Allocator , & g_PresentCompleteSemaphore [ i ] ) ;
check_vk_result ( err ) ;
err = vkCreateSemaphore ( g_Device , & info , g_Allocator , & g_RenderCompleteSemaphore [ i ] ) ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
}
}
2016-04-03 15:32:53 +00:00
2016-03-09 15:39:54 +00:00
// Create Descriptor Pool
{
2016-11-13 02:00:36 +00:00
VkDescriptorPoolSize pool_size [ 11 ] =
2016-04-03 15:32:53 +00:00
{
{ VK_DESCRIPTOR_TYPE_SAMPLER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_SAMPLED_IMAGE , 1000 } ,
{ VK_DESCRIPTOR_TYPE_STORAGE_IMAGE , 1000 } ,
{ VK_DESCRIPTOR_TYPE_UNIFORM_TEXEL_BUFFER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_STORAGE_TEXEL_BUFFER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_STORAGE_BUFFER , 1000 } ,
{ VK_DESCRIPTOR_TYPE_UNIFORM_BUFFER_DYNAMIC , 1000 } ,
{ VK_DESCRIPTOR_TYPE_STORAGE_BUFFER_DYNAMIC , 1000 } ,
{ VK_DESCRIPTOR_TYPE_INPUT_ATTACHMENT , 1000 }
} ;
2016-03-09 15:39:54 +00:00
VkDescriptorPoolCreateInfo pool_info = { } ;
pool_info . sType = VK_STRUCTURE_TYPE_DESCRIPTOR_POOL_CREATE_INFO ;
pool_info . flags = VK_DESCRIPTOR_POOL_CREATE_FREE_DESCRIPTOR_SET_BIT ;
pool_info . maxSets = 1000 * 11 ;
pool_info . poolSizeCount = 11 ;
pool_info . pPoolSizes = pool_size ;
err = vkCreateDescriptorPool ( g_Device , & pool_info , g_Allocator , & g_DescriptorPool ) ;
check_vk_result ( err ) ;
}
}
static void cleanup_vulkan ( )
{
vkDestroyDescriptorPool ( g_Device , g_DescriptorPool , g_Allocator ) ;
2016-04-03 15:32:53 +00:00
for ( int i = 0 ; i < IMGUI_VK_QUEUED_FRAMES ; i + + )
{
2016-03-09 15:39:54 +00:00
vkDestroyFence ( g_Device , g_Fence [ i ] , g_Allocator ) ;
vkFreeCommandBuffers ( g_Device , g_CommandPool [ i ] , 1 , & g_CommandBuffer [ i ] ) ;
vkDestroyCommandPool ( g_Device , g_CommandPool [ i ] , g_Allocator ) ;
2017-02-27 14:05:08 +00:00
vkDestroySemaphore ( g_Device , g_PresentCompleteSemaphore [ i ] , g_Allocator ) ;
vkDestroySemaphore ( g_Device , g_RenderCompleteSemaphore [ i ] , g_Allocator ) ;
2016-03-09 15:39:54 +00:00
}
2016-04-03 15:32:53 +00:00
for ( uint32_t i = 0 ; i < g_BackBufferCount ; i + + )
{
2016-03-09 15:39:54 +00:00
vkDestroyImageView ( g_Device , g_BackBufferView [ i ] , g_Allocator ) ;
vkDestroyFramebuffer ( g_Device , g_Framebuffer [ i ] , g_Allocator ) ;
}
vkDestroyRenderPass ( g_Device , g_RenderPass , g_Allocator ) ;
vkDestroySwapchainKHR ( g_Device , g_Swapchain , g_Allocator ) ;
vkDestroySurfaceKHR ( g_Instance , g_Surface , g_Allocator ) ;
2017-02-26 12:36:40 +00:00
# ifdef IMGUI_VULKAN_DEBUG_REPORT
2018-03-01 17:59:07 +00:00
// Remove the debug report callback
2017-05-01 15:07:05 +00:00
auto vkDestroyDebugReportCallbackEXT = ( PFN_vkDestroyDebugReportCallbackEXT ) vkGetInstanceProcAddr ( g_Instance , " vkDestroyDebugReportCallbackEXT " ) ;
2018-03-01 17:59:07 +00:00
vkDestroyDebugReportCallbackEXT ( g_Instance , g_DebugReport , g_Allocator ) ;
2017-02-26 12:36:40 +00:00
# endif // IMGUI_VULKAN_DEBUG_REPORT
2016-03-09 15:39:54 +00:00
vkDestroyDevice ( g_Device , g_Allocator ) ;
vkDestroyInstance ( g_Instance , g_Allocator ) ;
}
static void frame_begin ( )
{
VkResult err ;
2018-02-16 21:28:52 +00:00
for ( ; ; )
2016-04-03 15:32:53 +00:00
{
2016-03-09 15:39:54 +00:00
err = vkWaitForFences ( g_Device , 1 , & g_Fence [ g_FrameIndex ] , VK_TRUE , 100 ) ;
2016-04-03 15:32:53 +00:00
if ( err = = VK_SUCCESS ) break ;
if ( err = = VK_TIMEOUT ) continue ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
}
{
2017-02-27 14:05:08 +00:00
err = vkAcquireNextImageKHR ( g_Device , g_Swapchain , UINT64_MAX , g_PresentCompleteSemaphore [ g_FrameIndex ] , VK_NULL_HANDLE , & g_BackbufferIndices [ g_FrameIndex ] ) ;
2016-03-09 15:39:54 +00:00
check_vk_result ( err ) ;
}
{
err = vkResetCommandPool ( g_Device , g_CommandPool [ g_FrameIndex ] , 0 ) ;
check_vk_result ( err ) ;
VkCommandBufferBeginInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO ;
info . flags | = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT ;
err = vkBeginCommandBuffer ( g_CommandBuffer [ g_FrameIndex ] , & info ) ;
check_vk_result ( err ) ;
}
{
VkRenderPassBeginInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO ;
info . renderPass = g_RenderPass ;
2017-02-27 14:05:08 +00:00
info . framebuffer = g_Framebuffer [ g_BackbufferIndices [ g_FrameIndex ] ] ;
2016-03-09 15:39:54 +00:00
info . renderArea . extent . width = fb_width ;
info . renderArea . extent . height = fb_height ;
info . clearValueCount = 1 ;
info . pClearValues = & g_ClearValue ;
vkCmdBeginRenderPass ( g_CommandBuffer [ g_FrameIndex ] , & info , VK_SUBPASS_CONTENTS_INLINE ) ;
}
}
static void frame_end ( )
{
VkResult err ;
vkCmdEndRenderPass ( g_CommandBuffer [ g_FrameIndex ] ) ;
{
2016-11-13 02:00:36 +00:00
VkPipelineStageFlags wait_stage = VK_PIPELINE_STAGE_COLOR_ATTACHMENT_OUTPUT_BIT ;
2016-03-09 15:39:54 +00:00
VkSubmitInfo info = { } ;
info . sType = VK_STRUCTURE_TYPE_SUBMIT_INFO ;
info . waitSemaphoreCount = 1 ;
2017-02-27 14:05:08 +00:00
info . pWaitSemaphores = & g_PresentCompleteSemaphore [ g_FrameIndex ] ;
2016-11-13 02:00:36 +00:00
info . pWaitDstStageMask = & wait_stage ;
2016-03-09 15:39:54 +00:00
info . commandBufferCount = 1 ;
info . pCommandBuffers = & g_CommandBuffer [ g_FrameIndex ] ;
2017-02-27 14:05:08 +00:00
info . signalSemaphoreCount = 1 ;
info . pSignalSemaphores = & g_RenderCompleteSemaphore [ g_FrameIndex ] ;
2016-03-09 15:39:54 +00:00
err = vkEndCommandBuffer ( g_CommandBuffer [ g_FrameIndex ] ) ;
check_vk_result ( err ) ;
err = vkResetFences ( g_Device , 1 , & g_Fence [ g_FrameIndex ] ) ;
check_vk_result ( err ) ;
err = vkQueueSubmit ( g_Queue , 1 , & info , g_Fence [ g_FrameIndex ] ) ;
check_vk_result ( err ) ;
}
2017-02-27 14:05:08 +00:00
}
static void frame_present ( )
{
VkResult err ;
2017-05-01 15:07:05 +00:00
// If IMGUI_UNLIMITED_FRAME_RATE is defined we present the latest but one frame. Otherwise we present the latest rendered frame
2017-02-27 14:05:08 +00:00
# ifdef IMGUI_UNLIMITED_FRAME_RATE
uint32_t PresentIndex = ( g_FrameIndex + IMGUI_VK_QUEUED_FRAMES - 1 ) % IMGUI_VK_QUEUED_FRAMES ;
# else
uint32_t PresentIndex = g_FrameIndex ;
# endif // IMGUI_UNLIMITED_FRAME_RATE
2018-02-21 21:39:49 +00:00
VkSwapchainKHR swapchains [ 1 ] = { g_Swapchain } ;
uint32_t indices [ 1 ] = { g_BackbufferIndices [ PresentIndex ] } ;
2017-02-27 14:05:08 +00:00
VkPresentInfoKHR info = { } ;
info . sType = VK_STRUCTURE_TYPE_PRESENT_INFO_KHR ;
info . waitSemaphoreCount = 1 ;
info . pWaitSemaphores = & g_RenderCompleteSemaphore [ PresentIndex ] ;
info . swapchainCount = 1 ;
info . pSwapchains = swapchains ;
info . pImageIndices = indices ;
err = vkQueuePresentKHR ( g_Queue , & info ) ;
check_vk_result ( err ) ;
g_FrameIndex = ( g_FrameIndex + 1 ) % IMGUI_VK_QUEUED_FRAMES ;
2016-03-09 15:39:54 +00:00
}
static void error_callback ( int error , const char * description )
{
fprintf ( stderr , " Error %d: %s \n " , error , description ) ;
}
int main ( int , char * * )
{
// Setup window
glfwSetErrorCallback ( error_callback ) ;
if ( ! glfwInit ( ) )
return 1 ;
glfwWindowHint ( GLFW_CLIENT_API , GLFW_NO_API ) ;
GLFWwindow * window = glfwCreateWindow ( 1280 , 720 , " ImGui Vulkan example " , NULL , NULL ) ;
// Setup Vulkan
2016-04-03 15:32:53 +00:00
if ( ! glfwVulkanSupported ( ) )
{
2016-03-09 15:39:54 +00:00
printf ( " GLFW: Vulkan Not Supported \n " ) ;
return 1 ;
}
2018-02-21 21:39:49 +00:00
uint32_t extensions_count = 0 ;
const char * * glfw_extensions = glfwGetRequiredInstanceExtensions ( & extensions_count ) ;
setup_vulkan ( window , glfw_extensions , extensions_count ) ;
2016-03-09 15:39:54 +00:00
// Setup ImGui binding
2018-01-21 19:09:30 +00:00
ImGui : : CreateContext ( ) ;
2018-02-28 17:51:40 +00:00
2018-03-01 20:11:22 +00:00
ImGui_ImplVulkan_InitInfo init_info = { } ;
init_info . Allocator = g_Allocator ;
init_info . PhysicalDevice = g_PhysicalDevice ;
init_info . Device = g_Device ;
init_info . RenderPass = g_RenderPass ;
init_info . PipelineCache = g_PipelineCache ;
init_info . DescriptorPool = g_DescriptorPool ;
init_info . CheckVkResultFn = check_vk_result ;
2018-02-28 17:51:40 +00:00
ImGuiIO & io = ImGui : : GetIO ( ) ; ( void ) io ;
//io.ConfigFlags |= ImGuiConfigFlags_NavEnableKeyboard; // Enable Keyboard Controls
2018-03-01 20:11:22 +00:00
ImGui_ImplVulkan_Init ( & init_info ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplGlfw_Init ( window , true ) ;
2016-03-09 15:39:54 +00:00
2017-12-24 17:45:11 +00:00
// Setup style
2018-01-30 23:15:47 +00:00
ImGui : : StyleColorsDark ( ) ;
//ImGui::StyleColorsClassic();
2017-12-24 17:45:11 +00:00
2016-03-09 15:39:54 +00:00
// Load Fonts
2017-10-28 16:21:44 +00:00
// - If no fonts are loaded, dear imgui will use the default font. You can also load multiple fonts and use ImGui::PushFont()/PopFont() to select them.
// - AddFontFromFileTTF() will return the ImFont* so you can store it if you need to select the font among multiple.
// - If the file cannot be loaded, the function will return NULL. Please handle those errors in your application (e.g. use an assertion, or display an error and quit).
// - The fonts will be rasterized at a given size (w/ oversampling) and stored into a texture when calling ImFontAtlas::Build()/GetTexDataAsXXXX(), which ImGui_ImplXXXX_NewFrame below will call.
2018-01-31 15:00:07 +00:00
// - Read 'misc/fonts/README.txt' for more instructions and details.
2017-10-28 16:21:44 +00:00
// - Remember that in C/C++ if you want to include a backslash \ in a string literal you need to write a double backslash \\ !
2016-03-09 15:39:54 +00:00
//io.Fonts->AddFontDefault();
2018-01-31 15:00:07 +00:00
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/Roboto-Medium.ttf", 16.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/Cousine-Regular.ttf", 15.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/DroidSans.ttf", 16.0f);
//io.Fonts->AddFontFromFileTTF("../../misc/fonts/ProggyTiny.ttf", 10.0f);
2017-10-28 16:21:44 +00:00
//ImFont* font = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
//IM_ASSERT(font != NULL);
2016-03-09 15:39:54 +00:00
// Upload Fonts
{
VkResult err ;
err = vkResetCommandPool ( g_Device , g_CommandPool [ g_FrameIndex ] , 0 ) ;
check_vk_result ( err ) ;
VkCommandBufferBeginInfo begin_info = { } ;
begin_info . sType = VK_STRUCTURE_TYPE_COMMAND_BUFFER_BEGIN_INFO ;
begin_info . flags | = VK_COMMAND_BUFFER_USAGE_ONE_TIME_SUBMIT_BIT ;
err = vkBeginCommandBuffer ( g_CommandBuffer [ g_FrameIndex ] , & begin_info ) ;
check_vk_result ( err ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_CreateFontsTexture ( g_CommandBuffer [ g_FrameIndex ] ) ;
2016-03-09 15:39:54 +00:00
VkSubmitInfo end_info = { } ;
end_info . sType = VK_STRUCTURE_TYPE_SUBMIT_INFO ;
end_info . commandBufferCount = 1 ;
end_info . pCommandBuffers = & g_CommandBuffer [ g_FrameIndex ] ;
err = vkEndCommandBuffer ( g_CommandBuffer [ g_FrameIndex ] ) ;
check_vk_result ( err ) ;
err = vkQueueSubmit ( g_Queue , 1 , & end_info , VK_NULL_HANDLE ) ;
check_vk_result ( err ) ;
err = vkDeviceWaitIdle ( g_Device ) ;
check_vk_result ( err ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_InvalidateFontUploadObjects ( ) ;
2016-03-09 15:39:54 +00:00
}
2017-12-24 17:16:22 +00:00
bool show_demo_window = true ;
2016-03-09 15:39:54 +00:00
bool show_another_window = false ;
2017-09-27 13:47:08 +00:00
ImVec4 clear_color = ImVec4 ( 0.45f , 0.55f , 0.60f , 1.00f ) ;
2016-03-09 15:39:54 +00:00
2017-05-01 15:07:05 +00:00
// When IMGUI_UNLIMITED_FRAME_RATE is defined we render into latest image acquired from the swapchain but we display the image which was rendered before.
// Hence we must render once and increase the g_FrameIndex without presenting, which we do before entering the render loop.
// This is also the reason why frame_end() is split into frame_end() and frame_present(), the later one not being called here.
2017-02-27 14:05:08 +00:00
# ifdef IMGUI_UNLIMITED_FRAME_RATE
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_NewFrame ( ) ;
2018-02-18 20:15:41 +00:00
ImGui_ImplGlfw_NewFrame ( ) ;
2017-02-27 14:05:08 +00:00
frame_begin ( ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_Render ( g_CommandBuffer [ g_FrameIndex ] ) ;
2017-02-27 14:05:08 +00:00
frame_end ( ) ;
g_FrameIndex = ( g_FrameIndex + 1 ) % IMGUI_VK_QUEUED_FRAMES ;
# endif // IMGUI_UNLIMITED_FRAME_RATE
2016-03-09 15:39:54 +00:00
// Main loop
while ( ! glfwWindowShouldClose ( window ) )
{
Examples: Added a bunch of comments/referencs related to io.WantCaptureMouse, io.WantCaptureKeyboard (#1262, #1237, #1219, #635, #1058, #1051, #912, #533, #703, #446, #459, #364, #213, #52, and more)
2017-11-01 13:24:09 +00:00
// You can read the io.WantCaptureMouse, io.WantCaptureKeyboard flags to tell if dear imgui wants to use your inputs.
// - When io.WantCaptureMouse is true, do not dispatch mouse input data to your main application.
// - When io.WantCaptureKeyboard is true, do not dispatch keyboard input data to your main application.
// Generally you may always pass all inputs to dear imgui, and hide them from your application based on those two flags.
2016-03-09 15:39:54 +00:00
glfwPollEvents ( ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_NewFrame ( ) ;
2018-02-18 20:15:41 +00:00
ImGui_ImplGlfw_NewFrame ( ) ;
2016-03-09 15:39:54 +00:00
Examples: Added a bunch of comments/referencs related to io.WantCaptureMouse, io.WantCaptureKeyboard (#1262, #1237, #1219, #635, #1058, #1051, #912, #533, #703, #446, #459, #364, #213, #52, and more)
2017-11-01 13:24:09 +00:00
// 1. Show a simple window.
2017-12-24 17:45:11 +00:00
// Tip: if we don't call ImGui::Begin()/ImGui::End() the widgets automatically appears in a window called "Debug".
2016-03-09 15:39:54 +00:00
{
static float f = 0.0f ;
2018-01-30 23:15:47 +00:00
static int counter = 0 ;
ImGui : : Text ( " Hello, world! " ) ; // Display some text (you can use a format string too)
ImGui : : SliderFloat ( " float " , & f , 0.0f , 1.0f ) ; // Edit 1 float using a slider from 0.0f to 1.0f
ImGui : : ColorEdit3 ( " clear color " , ( float * ) & clear_color ) ; // Edit 3 floats representing a color
ImGui : : Checkbox ( " Demo Window " , & show_demo_window ) ; // Edit bools storing our windows open/close state
ImGui : : Checkbox ( " Another Window " , & show_another_window ) ;
if ( ImGui : : Button ( " Button " ) ) // Buttons return true when clicked (NB: most widgets return true when edited/activated)
counter + + ;
ImGui : : SameLine ( ) ;
ImGui : : Text ( " counter = %d " , counter ) ;
2016-03-09 15:39:54 +00:00
ImGui : : Text ( " Application average %.3f ms/frame (%.1f FPS) " , 1000.0f / ImGui : : GetIO ( ) . Framerate , ImGui : : GetIO ( ) . Framerate ) ;
}
2018-01-30 23:15:47 +00:00
// 2. Show another simple window. In most cases you will use an explicit Begin/End pair to name your windows.
2016-03-09 15:39:54 +00:00
if ( show_another_window )
{
ImGui : : Begin ( " Another Window " , & show_another_window ) ;
2017-09-01 15:06:26 +00:00
ImGui : : Text ( " Hello from another window! " ) ;
2018-01-30 23:15:47 +00:00
if ( ImGui : : Button ( " Close Me " ) )
show_another_window = false ;
2016-03-09 15:39:54 +00:00
ImGui : : End ( ) ;
}
2018-01-30 23:15:47 +00:00
// 3. Show the ImGui demo window. Most of the sample code is in ImGui::ShowDemoWindow(). Read its code to learn more about Dear ImGui!
2017-12-24 17:16:22 +00:00
if ( show_demo_window )
2016-03-09 15:39:54 +00:00
{
2017-12-24 17:45:11 +00:00
ImGui : : SetNextWindowPos ( ImVec2 ( 650 , 20 ) , ImGuiCond_FirstUseEver ) ; // Normally user code doesn't need/want to call this because positions are saved in .ini file anyway. Here we just want to make the demo initial state a bit more friendly!
2017-12-24 17:16:22 +00:00
ImGui : : ShowDemoWindow ( & show_demo_window ) ;
2016-03-09 15:39:54 +00:00
}
2018-02-21 21:39:49 +00:00
// Rendering
2017-12-24 17:49:19 +00:00
memcpy ( & g_ClearValue . color . float32 [ 0 ] , & clear_color , 4 * sizeof ( float ) ) ;
2016-03-09 15:39:54 +00:00
frame_begin ( ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_Render ( g_CommandBuffer [ g_FrameIndex ] ) ;
2016-03-09 15:39:54 +00:00
frame_end ( ) ;
2017-02-27 14:05:08 +00:00
frame_present ( ) ;
2016-03-09 15:39:54 +00:00
}
// Cleanup
VkResult err = vkDeviceWaitIdle ( g_Device ) ;
check_vk_result ( err ) ;
2018-02-16 21:50:19 +00:00
ImGui_ImplVulkan_Shutdown ( ) ;
2018-02-18 20:15:41 +00:00
ImGui_ImplGlfw_Shutdown ( ) ;
2018-01-21 19:09:30 +00:00
ImGui : : DestroyContext ( ) ;
2016-03-09 15:39:54 +00:00
cleanup_vulkan ( ) ;
glfwTerminate ( ) ;
return 0 ;
}