2018-09-13 14:44:08 +00:00
// dear imgui: standalone example application for DirectX 12
// If you are new to dear imgui, see examples/README.txt and documentation at the top of imgui.cpp.
2018-02-22 21:18:59 +00:00
// FIXME: 64-bit only for now! (Because sizeof(ImTextureId) == sizeof(void*))
2016-02-22 23:22:48 +00:00
2018-02-22 21:18:59 +00:00
# include "imgui.h"
2018-06-07 17:20:04 +00:00
# include "imgui_impl_win32.h"
# include "imgui_impl_dx12.h"
2016-02-22 23:22:48 +00:00
# include <d3d12.h>
# include <dxgi1_4.h>
# include <tchar.h>
2018-02-22 21:18:59 +00:00
# define DX12_ENABLE_DEBUG_LAYER 0
2017-03-13 17:41:10 +00:00
2016-02-22 23:22:48 +00:00
struct FrameContext
{
ID3D12CommandAllocator * CommandAllocator ;
UINT64 FenceValue ;
} ;
// Data
static int const NUM_FRAMES_IN_FLIGHT = 3 ;
static FrameContext g_frameContext [ NUM_FRAMES_IN_FLIGHT ] = { } ;
static UINT g_frameIndex = 0 ;
static int const NUM_BACK_BUFFERS = 3 ;
static ID3D12Device * g_pd3dDevice = NULL ;
static ID3D12DescriptorHeap * g_pd3dRtvDescHeap = NULL ;
static ID3D12DescriptorHeap * g_pd3dSrvDescHeap = NULL ;
static ID3D12CommandQueue * g_pd3dCommandQueue = NULL ;
static ID3D12GraphicsCommandList * g_pd3dCommandList = NULL ;
static ID3D12Fence * g_fence = NULL ;
static HANDLE g_fenceEvent = NULL ;
2018-02-22 21:18:59 +00:00
static UINT64 g_fenceLastSignaledValue = 0 ;
2016-02-22 23:22:48 +00:00
static IDXGISwapChain3 * g_pSwapChain = NULL ;
static HANDLE g_hSwapChainWaitableObject = NULL ;
static ID3D12Resource * g_mainRenderTargetResource [ NUM_BACK_BUFFERS ] = { } ;
static D3D12_CPU_DESCRIPTOR_HANDLE g_mainRenderTargetDescriptor [ NUM_BACK_BUFFERS ] = { } ;
2017-03-13 17:41:10 +00:00
void CreateRenderTarget ( )
{
2018-02-22 21:18:59 +00:00
for ( UINT i = 0 ; i < NUM_BACK_BUFFERS ; i + + )
2017-03-13 17:41:10 +00:00
{
2018-11-28 14:41:17 +00:00
ID3D12Resource * pBackBuffer = NULL ;
2017-03-13 17:41:10 +00:00
g_pSwapChain - > GetBuffer ( i , IID_PPV_ARGS ( & pBackBuffer ) ) ;
2018-02-22 21:18:59 +00:00
g_pd3dDevice - > CreateRenderTargetView ( pBackBuffer , NULL , g_mainRenderTargetDescriptor [ i ] ) ;
2017-03-13 17:41:10 +00:00
g_mainRenderTargetResource [ i ] = pBackBuffer ;
}
}
void WaitForLastSubmittedFrame ( )
2016-02-22 23:22:48 +00:00
{
FrameContext * frameCtxt = & g_frameContext [ g_frameIndex % NUM_FRAMES_IN_FLIGHT ] ;
UINT64 fenceValue = frameCtxt - > FenceValue ;
2017-03-13 17:41:10 +00:00
if ( fenceValue = = 0 )
2018-02-22 21:18:59 +00:00
return ; // No fence was signaled
2016-02-22 23:22:48 +00:00
frameCtxt - > FenceValue = 0 ;
2017-03-13 17:41:10 +00:00
if ( g_fence - > GetCompletedValue ( ) > = fenceValue )
2016-02-22 23:22:48 +00:00
return ;
2017-03-13 17:41:10 +00:00
g_fence - > SetEventOnCompletion ( fenceValue , g_fenceEvent ) ;
2016-02-22 23:22:48 +00:00
WaitForSingleObject ( g_fenceEvent , INFINITE ) ;
}
2017-03-13 17:41:10 +00:00
FrameContext * WaitForNextFrameResources ( )
2016-02-22 23:22:48 +00:00
{
UINT nextFrameIndex = g_frameIndex + 1 ;
g_frameIndex = nextFrameIndex ;
2018-02-22 21:18:59 +00:00
HANDLE waitableObjects [ ] = { g_hSwapChainWaitableObject , NULL } ;
2016-02-22 23:22:48 +00:00
DWORD numWaitableObjects = 1 ;
FrameContext * frameCtxt = & g_frameContext [ nextFrameIndex % NUM_FRAMES_IN_FLIGHT ] ;
UINT64 fenceValue = frameCtxt - > FenceValue ;
2018-02-22 21:18:59 +00:00
if ( fenceValue ! = 0 ) // means no fence was signaled
2017-03-13 17:41:10 +00:00
{
2016-02-22 23:22:48 +00:00
frameCtxt - > FenceValue = 0 ;
2017-03-13 17:41:10 +00:00
g_fence - > SetEventOnCompletion ( fenceValue , g_fenceEvent ) ;
2016-02-22 23:22:48 +00:00
waitableObjects [ 1 ] = g_fenceEvent ;
numWaitableObjects = 2 ;
}
2017-03-13 17:41:10 +00:00
WaitForMultipleObjects ( numWaitableObjects , waitableObjects , TRUE , INFINITE ) ;
2016-02-22 23:22:48 +00:00
return frameCtxt ;
}
2017-03-13 17:41:10 +00:00
void ResizeSwapChain ( HWND hWnd , int width , int height )
2016-02-22 23:22:48 +00:00
{
2017-03-13 17:41:10 +00:00
DXGI_SWAP_CHAIN_DESC1 sd ;
g_pSwapChain - > GetDesc1 ( & sd ) ;
sd . Width = width ;
sd . Height = height ;
2016-02-22 23:22:48 +00:00
2018-02-27 22:32:30 +00:00
IDXGIFactory4 * dxgiFactory = NULL ;
2017-03-13 17:41:10 +00:00
g_pSwapChain - > GetParent ( IID_PPV_ARGS ( & dxgiFactory ) ) ;
2016-02-22 23:22:48 +00:00
2017-03-13 17:41:10 +00:00
g_pSwapChain - > Release ( ) ;
CloseHandle ( g_hSwapChainWaitableObject ) ;
2016-02-22 23:22:48 +00:00
2017-03-13 17:41:10 +00:00
IDXGISwapChain1 * swapChain1 = NULL ;
dxgiFactory - > CreateSwapChainForHwnd ( g_pd3dCommandQueue , hWnd , & sd , NULL , NULL , & swapChain1 ) ;
swapChain1 - > QueryInterface ( IID_PPV_ARGS ( & g_pSwapChain ) ) ;
2016-02-22 23:22:48 +00:00
swapChain1 - > Release ( ) ;
2017-03-13 17:41:10 +00:00
dxgiFactory - > Release ( ) ;
2016-02-22 23:22:48 +00:00
2017-03-13 17:41:10 +00:00
g_pSwapChain - > SetMaximumFrameLatency ( NUM_BACK_BUFFERS ) ;
2016-02-22 23:22:48 +00:00
g_hSwapChainWaitableObject = g_pSwapChain - > GetFrameLatencyWaitableObject ( ) ;
assert ( g_hSwapChainWaitableObject ! = NULL ) ;
}
void CleanupRenderTarget ( )
{
WaitForLastSubmittedFrame ( ) ;
2018-02-22 21:18:59 +00:00
for ( UINT i = 0 ; i < NUM_BACK_BUFFERS ; i + + )
2016-02-22 23:22:48 +00:00
if ( g_mainRenderTargetResource [ i ] ) { g_mainRenderTargetResource [ i ] - > Release ( ) ; g_mainRenderTargetResource [ i ] = NULL ; }
}
HRESULT CreateDeviceD3D ( HWND hWnd )
{
2017-03-13 17:41:10 +00:00
// Setup swap chain
DXGI_SWAP_CHAIN_DESC1 sd ;
2016-02-22 23:22:48 +00:00
{
2017-03-13 17:41:10 +00:00
ZeroMemory ( & sd , sizeof ( sd ) ) ;
sd . BufferCount = NUM_BACK_BUFFERS ;
sd . Width = 0 ;
sd . Height = 0 ;
sd . Format = DXGI_FORMAT_R8G8B8A8_UNORM ;
sd . Flags = DXGI_SWAP_CHAIN_FLAG_FRAME_LATENCY_WAITABLE_OBJECT ;
sd . BufferUsage = DXGI_USAGE_RENDER_TARGET_OUTPUT ;
sd . SampleDesc . Count = 1 ;
sd . SampleDesc . Quality = 0 ;
sd . SwapEffect = DXGI_SWAP_EFFECT_FLIP_DISCARD ;
sd . AlphaMode = DXGI_ALPHA_MODE_UNSPECIFIED ;
sd . Scaling = DXGI_SCALING_STRETCH ;
sd . Stereo = FALSE ;
2016-02-22 23:22:48 +00:00
}
2018-02-22 21:18:59 +00:00
if ( DX12_ENABLE_DEBUG_LAYER )
2016-02-22 23:22:48 +00:00
{
2017-03-13 17:41:10 +00:00
ID3D12Debug * dx12Debug = NULL ;
if ( SUCCEEDED ( D3D12GetDebugInterface ( IID_PPV_ARGS ( & dx12Debug ) ) ) )
2016-02-22 23:22:48 +00:00
{
2017-03-13 17:41:10 +00:00
dx12Debug - > EnableDebugLayer ( ) ;
dx12Debug - > Release ( ) ;
2016-02-22 23:22:48 +00:00
}
}
2018-02-22 21:18:59 +00:00
D3D_FEATURE_LEVEL featureLevel = D3D_FEATURE_LEVEL_11_0 ;
2017-03-13 17:41:10 +00:00
if ( D3D12CreateDevice ( NULL , featureLevel , IID_PPV_ARGS ( & g_pd3dDevice ) ) ! = S_OK )
return E_FAIL ;
2016-02-22 23:22:48 +00:00
{
D3D12_DESCRIPTOR_HEAP_DESC desc = { } ;
desc . Type = D3D12_DESCRIPTOR_HEAP_TYPE_RTV ;
desc . NumDescriptors = NUM_BACK_BUFFERS ;
desc . Flags = D3D12_DESCRIPTOR_HEAP_FLAG_NONE ;
desc . NodeMask = 1 ;
if ( g_pd3dDevice - > CreateDescriptorHeap ( & desc , IID_PPV_ARGS ( & g_pd3dRtvDescHeap ) ) ! = S_OK )
return E_FAIL ;
SIZE_T rtvDescriptorSize = g_pd3dDevice - > GetDescriptorHandleIncrementSize ( D3D12_DESCRIPTOR_HEAP_TYPE_RTV ) ;
D3D12_CPU_DESCRIPTOR_HANDLE rtvHandle = g_pd3dRtvDescHeap - > GetCPUDescriptorHandleForHeapStart ( ) ;
2019-01-20 16:56:17 +00:00
for ( UINT i = 0 ; i < NUM_BACK_BUFFERS ; i + + )
2018-02-22 21:18:59 +00:00
{
2016-02-22 23:22:48 +00:00
g_mainRenderTargetDescriptor [ i ] = rtvHandle ;
rtvHandle . ptr + = rtvDescriptorSize ;
}
}
{
D3D12_DESCRIPTOR_HEAP_DESC desc = { } ;
desc . Type = D3D12_DESCRIPTOR_HEAP_TYPE_CBV_SRV_UAV ;
desc . NumDescriptors = 1 ;
desc . Flags = D3D12_DESCRIPTOR_HEAP_FLAG_SHADER_VISIBLE ;
if ( g_pd3dDevice - > CreateDescriptorHeap ( & desc , IID_PPV_ARGS ( & g_pd3dSrvDescHeap ) ) ! = S_OK )
return E_FAIL ;
}
{
D3D12_COMMAND_QUEUE_DESC desc = { } ;
desc . Type = D3D12_COMMAND_LIST_TYPE_DIRECT ;
desc . Flags = D3D12_COMMAND_QUEUE_FLAG_NONE ;
desc . NodeMask = 1 ;
if ( g_pd3dDevice - > CreateCommandQueue ( & desc , IID_PPV_ARGS ( & g_pd3dCommandQueue ) ) ! = S_OK )
return E_FAIL ;
}
2018-02-22 21:18:59 +00:00
for ( UINT i = 0 ; i < NUM_FRAMES_IN_FLIGHT ; i + + )
2016-02-22 23:22:48 +00:00
if ( g_pd3dDevice - > CreateCommandAllocator ( D3D12_COMMAND_LIST_TYPE_DIRECT , IID_PPV_ARGS ( & g_frameContext [ i ] . CommandAllocator ) ) ! = S_OK )
return E_FAIL ;
if ( g_pd3dDevice - > CreateCommandList ( 0 , D3D12_COMMAND_LIST_TYPE_DIRECT , g_frameContext [ 0 ] . CommandAllocator , NULL , IID_PPV_ARGS ( & g_pd3dCommandList ) ) ! = S_OK | |
g_pd3dCommandList - > Close ( ) ! = S_OK )
return E_FAIL ;
if ( g_pd3dDevice - > CreateFence ( 0 , D3D12_FENCE_FLAG_NONE , IID_PPV_ARGS ( & g_fence ) ) ! = S_OK )
return E_FAIL ;
g_fenceEvent = CreateEvent ( NULL , FALSE , FALSE , NULL ) ;
if ( g_fenceEvent = = NULL )
return E_FAIL ;
2017-03-13 17:41:10 +00:00
{
IDXGIFactory4 * dxgiFactory = NULL ;
IDXGISwapChain1 * swapChain1 = NULL ;
if ( CreateDXGIFactory1 ( IID_PPV_ARGS ( & dxgiFactory ) ) ! = S_OK | |
dxgiFactory - > CreateSwapChainForHwnd ( g_pd3dCommandQueue , hWnd , & sd , NULL , NULL , & swapChain1 ) ! = S_OK | |
swapChain1 - > QueryInterface ( IID_PPV_ARGS ( & g_pSwapChain ) ) ! = S_OK )
return E_FAIL ;
swapChain1 - > Release ( ) ;
dxgiFactory - > Release ( ) ;
g_pSwapChain - > SetMaximumFrameLatency ( NUM_BACK_BUFFERS ) ;
g_hSwapChainWaitableObject = g_pSwapChain - > GetFrameLatencyWaitableObject ( ) ;
}
CreateRenderTarget ( ) ;
2016-02-22 23:22:48 +00:00
return S_OK ;
}
void CleanupDeviceD3D ( )
{
CleanupRenderTarget ( ) ;
2017-03-13 17:41:10 +00:00
if ( g_pSwapChain ) { g_pSwapChain - > Release ( ) ; g_pSwapChain = NULL ; }
if ( g_hSwapChainWaitableObject ! = NULL ) { CloseHandle ( g_hSwapChainWaitableObject ) ; }
2018-02-22 21:18:59 +00:00
for ( UINT i = 0 ; i < NUM_FRAMES_IN_FLIGHT ; i + + )
2016-02-22 23:22:48 +00:00
if ( g_frameContext [ i ] . CommandAllocator ) { g_frameContext [ i ] . CommandAllocator - > Release ( ) ; g_frameContext [ i ] . CommandAllocator = NULL ; }
if ( g_pd3dCommandQueue ) { g_pd3dCommandQueue - > Release ( ) ; g_pd3dCommandQueue = NULL ; }
if ( g_pd3dCommandList ) { g_pd3dCommandList - > Release ( ) ; g_pd3dCommandList = NULL ; }
if ( g_pd3dRtvDescHeap ) { g_pd3dRtvDescHeap - > Release ( ) ; g_pd3dRtvDescHeap = NULL ; }
if ( g_pd3dSrvDescHeap ) { g_pd3dSrvDescHeap - > Release ( ) ; g_pd3dSrvDescHeap = NULL ; }
if ( g_fence ) { g_fence - > Release ( ) ; g_fence = NULL ; }
if ( g_fenceEvent ) { CloseHandle ( g_fenceEvent ) ; g_fenceEvent = NULL ; }
if ( g_pd3dDevice ) { g_pd3dDevice - > Release ( ) ; g_pd3dDevice = NULL ; }
}
2018-02-22 21:18:59 +00:00
extern LRESULT ImGui_ImplWin32_WndProcHandler ( HWND hWnd , UINT msg , WPARAM wParam , LPARAM lParam ) ;
2016-02-22 23:22:48 +00:00
LRESULT WINAPI WndProc ( HWND hWnd , UINT msg , WPARAM wParam , LPARAM lParam )
{
2018-02-22 21:18:59 +00:00
if ( ImGui_ImplWin32_WndProcHandler ( hWnd , msg , wParam , lParam ) )
2016-02-22 23:22:48 +00:00
return true ;
switch ( msg )
{
case WM_SIZE :
if ( g_pd3dDevice ! = NULL & & wParam ! = SIZE_MINIMIZED )
{
ImGui_ImplDX12_InvalidateDeviceObjects ( ) ;
CleanupRenderTarget ( ) ;
2017-03-13 17:41:10 +00:00
ResizeSwapChain ( hWnd , ( UINT ) LOWORD ( lParam ) , ( UINT ) HIWORD ( lParam ) ) ;
CreateRenderTarget ( ) ;
2016-02-22 23:22:48 +00:00
ImGui_ImplDX12_CreateDeviceObjects ( ) ;
}
return 0 ;
case WM_SYSCOMMAND :
if ( ( wParam & 0xfff0 ) = = SC_KEYMENU ) // Disable ALT application menu
return 0 ;
break ;
case WM_DESTROY :
PostQuitMessage ( 0 ) ;
return 0 ;
}
return DefWindowProc ( hWnd , msg , wParam , lParam ) ;
}
int main ( int , char * * )
{
// Create application window
2018-02-22 21:18:59 +00:00
WNDCLASSEX wc = { sizeof ( WNDCLASSEX ) , CS_CLASSDC , WndProc , 0L , 0L , GetModuleHandle ( NULL ) , NULL , NULL , NULL , NULL , _T ( " ImGui Example " ) , NULL } ;
2016-02-22 23:22:48 +00:00
RegisterClassEx ( & wc ) ;
2019-01-17 17:04:35 +00:00
HWND hwnd = CreateWindow ( wc . lpszClassName , _T ( " Dear ImGui DirectX12 Example " ) , WS_OVERLAPPEDWINDOW , 100 , 100 , 1280 , 800 , NULL , NULL , wc . hInstance , NULL ) ;
2016-02-22 23:22:48 +00:00
// Initialize Direct3D
if ( CreateDeviceD3D ( hwnd ) < 0 )
{
CleanupDeviceD3D ( ) ;
2019-01-17 17:04:35 +00:00
UnregisterClass ( wc . lpszClassName , wc . hInstance ) ;
2016-02-22 23:22:48 +00:00
return 1 ;
}
// Show the window
ShowWindow ( hwnd , SW_SHOWDEFAULT ) ;
UpdateWindow ( hwnd ) ;
2018-11-08 15:06:22 +00:00
// Setup Dear ImGui context
2018-04-25 20:07:14 +00:00
IMGUI_CHECKVERSION ( ) ;
2018-02-22 21:18:59 +00:00
ImGui : : CreateContext ( ) ;
ImGuiIO & io = ImGui : : GetIO ( ) ; ( void ) io ;
2018-09-06 19:53:35 +00:00
io . ConfigFlags | = ImGuiConfigFlags_NavEnableKeyboard ; // Enable Keyboard Controls
io . ConfigFlags | = ImGuiConfigFlags_DockingEnable ; // Enable Docking
2018-09-20 08:31:23 +00:00
//io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable; // Enable Multi-Viewport / Platform Windows (FIXME: Currently broken in DX12 back-end, need some work!)
2018-09-06 20:25:42 +00:00
//io.ConfigFlags |= ImGuiConfigFlags_ViewportsNoTaskBarIcons;
//io.ConfigFlags |= ImGuiConfigFlags_ViewportsNoMerge;
2018-02-27 22:32:30 +00:00
2018-12-20 21:58:34 +00:00
// Setup Dear ImGui style
ImGui : : StyleColorsDark ( ) ;
//ImGui::StyleColorsClassic();
2018-12-20 22:04:40 +00:00
// When viewports are enabled we tweak WindowRounding/WindowBg so platform windows can look identical to regular ones.
ImGuiStyle & style = ImGui : : GetStyle ( ) ;
if ( io . ConfigFlags & ImGuiConfigFlags_ViewportsEnable )
{
style . WindowRounding = 0.0f ;
style . Colors [ ImGuiCol_WindowBg ] . w = 1.0f ;
}
2018-11-08 15:06:22 +00:00
// Setup Platform/Renderer bindings
2018-02-23 09:56:06 +00:00
ImGui_ImplWin32_Init ( hwnd ) ;
2019-01-20 16:56:17 +00:00
ImGui_ImplDX12_Init ( g_pd3dDevice , NUM_FRAMES_IN_FLIGHT ,
2017-09-24 21:57:38 +00:00
DXGI_FORMAT_R8G8B8A8_UNORM ,
2019-01-20 16:56:17 +00:00
g_pd3dSrvDescHeap - > GetCPUDescriptorHandleForHeapStart ( ) ,
2016-02-22 23:22:48 +00:00
g_pd3dSrvDescHeap - > GetGPUDescriptorHandleForHeapStart ( ) ) ;
// Load Fonts
2019-01-20 16:56:17 +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.
2018-02-22 21:18:59 +00:00
// - 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.
// - Read 'misc/fonts/README.txt' for more instructions and details.
// - Remember that in C/C++ if you want to include a backslash \ in a string literal you need to write a double backslash \\ !
2016-02-22 23:22:48 +00:00
//io.Fonts->AddFontDefault();
2018-02-22 21:18:59 +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);
//ImFont* font = io.Fonts->AddFontFromFileTTF("c:\\Windows\\Fonts\\ArialUni.ttf", 18.0f, NULL, io.Fonts->GetGlyphRangesJapanese());
//IM_ASSERT(font != NULL);
bool show_demo_window = true ;
2016-02-22 23:22:48 +00:00
bool show_another_window = false ;
2018-02-22 21:18:59 +00:00
ImVec4 clear_color = ImVec4 ( 0.45f , 0.55f , 0.60f , 1.00f ) ;
2016-02-22 23:22:48 +00:00
// Main loop
MSG msg ;
ZeroMemory ( & msg , sizeof ( msg ) ) ;
while ( msg . message ! = WM_QUIT )
{
2018-06-07 20:10:31 +00:00
// Poll and handle messages (inputs, window resize, etc.)
2018-02-22 21:18:59 +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-02-22 23:22:48 +00:00
if ( PeekMessage ( & msg , NULL , 0U , 0U , PM_REMOVE ) )
{
TranslateMessage ( & msg ) ;
DispatchMessage ( & msg ) ;
continue ;
}
2018-06-07 20:10:31 +00:00
2018-07-16 20:17:34 +00:00
// Start the Dear ImGui frame
2018-06-21 10:13:04 +00:00
ImGui_ImplDX12_NewFrame ( ) ;
2018-02-23 09:56:06 +00:00
ImGui_ImplWin32_NewFrame ( ) ;
2018-06-07 20:10:31 +00:00
ImGui : : NewFrame ( ) ;
2016-02-22 23:22:48 +00:00
2018-07-16 20:17:34 +00:00
// 1. Show the big demo window (Most of the sample code is in ImGui::ShowDemoWindow()! You can browse its code to learn more about Dear ImGui!).
if ( show_demo_window )
ImGui : : ShowDemoWindow ( & show_demo_window ) ;
// 2. Show a simple window that we create ourselves. We use a Begin/End pair to created a named window.
2016-02-22 23:22:48 +00:00
{
static float f = 0.0f ;
2018-02-22 21:18:59 +00:00
static int counter = 0 ;
2018-07-16 20:17:34 +00:00
ImGui : : Begin ( " Hello, world! " ) ; // Create a window called "Hello, world!" and append into it.
ImGui : : Text ( " This is some useful text. " ) ; // Display some text (you can use a format strings too)
ImGui : : Checkbox ( " Demo Window " , & show_demo_window ) ; // Edit bools storing our window open/close state
2018-02-22 21:18:59 +00:00
ImGui : : Checkbox ( " Another Window " , & show_another_window ) ;
2019-01-20 16:56:17 +00:00
ImGui : : SliderFloat ( " float " , & f , 0.0f , 1.0f ) ; // Edit 1 float using a slider from 0.0f to 1.0f
2018-07-16 20:17:34 +00:00
ImGui : : ColorEdit3 ( " clear color " , ( float * ) & clear_color ) ; // Edit 3 floats representing a color
if ( ImGui : : Button ( " Button " ) ) // Buttons return true when clicked (most widgets return true when edited/activated)
2018-02-22 21:18:59 +00:00
counter + + ;
ImGui : : SameLine ( ) ;
ImGui : : Text ( " counter = %d " , counter ) ;
2016-02-22 23:22:48 +00:00
ImGui : : Text ( " Application average %.3f ms/frame (%.1f FPS) " , 1000.0f / ImGui : : GetIO ( ) . Framerate , ImGui : : GetIO ( ) . Framerate ) ;
2018-07-16 20:17:34 +00:00
ImGui : : End ( ) ;
2016-02-22 23:22:48 +00:00
}
2018-07-16 20:17:34 +00:00
// 3. Show another simple window.
2016-02-22 23:22:48 +00:00
if ( show_another_window )
{
2018-07-16 20:17:34 +00:00
ImGui : : Begin ( " Another Window " , & show_another_window ) ; // Pass a pointer to our bool variable (the window will have a closing button that will clear the bool when clicked)
2017-09-24 21:22:25 +00:00
ImGui : : Text ( " Hello from another window! " ) ;
2018-02-22 21:18:59 +00:00
if ( ImGui : : Button ( " Close Me " ) )
show_another_window = false ;
2016-02-22 23:22:48 +00:00
ImGui : : End ( ) ;
}
// Rendering
FrameContext * frameCtxt = WaitForNextFrameResources ( ) ;
UINT backBufferIdx = g_pSwapChain - > GetCurrentBackBufferIndex ( ) ;
2017-03-13 17:41:10 +00:00
frameCtxt - > CommandAllocator - > Reset ( ) ;
2016-02-22 23:22:48 +00:00
D3D12_RESOURCE_BARRIER barrier = { } ;
barrier . Type = D3D12_RESOURCE_BARRIER_TYPE_TRANSITION ;
barrier . Flags = D3D12_RESOURCE_BARRIER_FLAG_NONE ;
barrier . Transition . pResource = g_mainRenderTargetResource [ backBufferIdx ] ;
barrier . Transition . Subresource = D3D12_RESOURCE_BARRIER_ALL_SUBRESOURCES ;
barrier . Transition . StateBefore = D3D12_RESOURCE_STATE_PRESENT ;
barrier . Transition . StateAfter = D3D12_RESOURCE_STATE_RENDER_TARGET ;
2017-03-13 17:41:10 +00:00
g_pd3dCommandList - > Reset ( frameCtxt - > CommandAllocator , NULL ) ;
g_pd3dCommandList - > ResourceBarrier ( 1 , & barrier ) ;
2018-02-22 21:18:59 +00:00
g_pd3dCommandList - > ClearRenderTargetView ( g_mainRenderTargetDescriptor [ backBufferIdx ] , ( float * ) & clear_color , 0 , NULL ) ;
2016-02-22 23:22:48 +00:00
g_pd3dCommandList - > OMSetRenderTargets ( 1 , & g_mainRenderTargetDescriptor [ backBufferIdx ] , FALSE , NULL ) ;
g_pd3dCommandList - > SetDescriptorHeaps ( 1 , & g_pd3dSrvDescHeap ) ;
ImGui : : Render ( ) ;
2018-06-21 10:13:04 +00:00
ImGui_ImplDX12_RenderDrawData ( ImGui : : GetDrawData ( ) , g_pd3dCommandList ) ;
2016-02-22 23:22:48 +00:00
barrier . Transition . StateBefore = D3D12_RESOURCE_STATE_RENDER_TARGET ;
barrier . Transition . StateAfter = D3D12_RESOURCE_STATE_PRESENT ;
g_pd3dCommandList - > ResourceBarrier ( 1 , & barrier ) ;
2017-03-13 17:41:10 +00:00
g_pd3dCommandList - > Close ( ) ;
2016-02-22 23:22:48 +00:00
2018-02-22 22:04:28 +00:00
g_pd3dCommandQueue - > ExecuteCommandLists ( 1 , ( ID3D12CommandList * const * ) & g_pd3dCommandList ) ;
2016-02-22 23:22:48 +00:00
2018-04-05 09:06:00 +00:00
// Update and Render additional Platform Windows
2018-04-10 17:21:52 +00:00
if ( io . ConfigFlags & ImGuiConfigFlags_ViewportsEnable )
2018-04-05 09:06:00 +00:00
{
ImGui : : UpdatePlatformWindows ( ) ;
2018-11-28 14:41:17 +00:00
ImGui : : RenderPlatformWindowsDefault ( NULL , ( void * ) g_pd3dCommandList ) ;
2018-04-05 09:06:00 +00:00
}
2018-02-27 22:32:30 +00:00
2017-09-24 21:22:25 +00:00
g_pSwapChain - > Present ( 1 , 0 ) ; // Present with vsync
//g_pSwapChain->Present(0, 0); // Present without vsync
2016-02-22 23:22:48 +00:00
2018-02-22 21:18:59 +00:00
UINT64 fenceValue = g_fenceLastSignaledValue + 1 ;
2017-03-13 17:41:10 +00:00
g_pd3dCommandQueue - > Signal ( g_fence , fenceValue ) ;
2018-02-22 21:18:59 +00:00
g_fenceLastSignaledValue = fenceValue ;
2016-02-22 23:22:48 +00:00
frameCtxt - > FenceValue = fenceValue ;
}
2018-02-22 22:04:28 +00:00
WaitForLastSubmittedFrame ( ) ;
2016-02-22 23:22:48 +00:00
ImGui_ImplDX12_Shutdown ( ) ;
2018-02-23 09:56:06 +00:00
ImGui_ImplWin32_Shutdown ( ) ;
2018-02-22 21:18:59 +00:00
ImGui : : DestroyContext ( ) ;
2018-04-09 17:16:47 +00:00
2016-02-22 23:22:48 +00:00
CleanupDeviceD3D ( ) ;
2018-04-09 17:16:47 +00:00
DestroyWindow ( hwnd ) ;
2019-01-17 17:04:35 +00:00
UnregisterClass ( wc . lpszClassName , wc . hInstance ) ;
2016-02-22 23:22:48 +00:00
return 0 ;
}