imgui_impl_dx11.cpp 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. // ImGui Win32 + DirectX11 binding
  2. // https://github.com/ocornut/imgui
  3. #include <imgui.h>
  4. #include "imgui_impl_dx11.h"
  5. // DirectX
  6. #include <d3d11.h>
  7. #include <d3dcompiler.h>
  8. #define DIRECTINPUT_VERSION 0x0800
  9. #include <dinput.h>
  10. // Data
  11. static INT64 g_Time = 0;
  12. static INT64 g_TicksPerSecond = 0;
  13. static HWND g_hWnd = 0;
  14. static ID3D11Device* g_pd3dDevice = NULL;
  15. static ID3D11DeviceContext* g_pd3dDeviceContext = NULL;
  16. static ID3D11Buffer* g_pVB = NULL;
  17. static ID3D10Blob * g_pVertexShaderBlob = NULL;
  18. static ID3D11VertexShader* g_pVertexShader = NULL;
  19. static ID3D11InputLayout* g_pInputLayout = NULL;
  20. static ID3D11Buffer* g_pVertexConstantBuffer = NULL;
  21. static ID3D10Blob * g_pPixelShaderBlob = NULL;
  22. static ID3D11PixelShader* g_pPixelShader = NULL;
  23. static ID3D11SamplerState* g_pFontSampler = NULL;
  24. static ID3D11ShaderResourceView*g_pFontTextureView = NULL;
  25. static ID3D11BlendState* g_blendState = NULL;
  26. static int VERTEX_BUFFER_SIZE = 30000; // TODO: Make vertex buffer smaller and grow dynamically as needed.
  27. struct VERTEX_CONSTANT_BUFFER
  28. {
  29. float mvp[4][4];
  30. };
  31. // This is the main rendering function that you have to implement and provide to ImGui (via setting up 'RenderDrawListsFn' in the ImGuiIO structure)
  32. // If text or lines are blurry when integrating ImGui in your engine:
  33. // - in your Render function, try translating your projection matrix by (0.5f,0.5f) or (0.375f,0.375f)
  34. static void ImGui_ImplDX11_RenderDrawLists(ImDrawList** const cmd_lists, int cmd_lists_count)
  35. {
  36. // Copy and convert all vertices into a single contiguous buffer
  37. D3D11_MAPPED_SUBRESOURCE mappedResource;
  38. if (g_pd3dDeviceContext->Map(g_pVB, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource) != S_OK)
  39. return;
  40. ImDrawVert* vtx_dst = (ImDrawVert*)mappedResource.pData;
  41. for (int n = 0; n < cmd_lists_count; n++)
  42. {
  43. const ImDrawList* cmd_list = cmd_lists[n];
  44. const ImDrawVert* vtx_src = &cmd_list->vtx_buffer[0];
  45. memcpy(vtx_dst, vtx_src, cmd_list->vtx_buffer.size() * sizeof(ImDrawVert));
  46. vtx_dst += cmd_list->vtx_buffer.size();
  47. }
  48. g_pd3dDeviceContext->Unmap(g_pVB, 0);
  49. // Setup orthographic projection matrix into our constant buffer
  50. {
  51. D3D11_MAPPED_SUBRESOURCE mappedResource;
  52. if (g_pd3dDeviceContext->Map(g_pVertexConstantBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mappedResource) != S_OK)
  53. return;
  54. VERTEX_CONSTANT_BUFFER* pConstantBuffer = (VERTEX_CONSTANT_BUFFER*)mappedResource.pData;
  55. const float L = 0.0f;
  56. const float R = ImGui::GetIO().DisplaySize.x;
  57. const float B = ImGui::GetIO().DisplaySize.y;
  58. const float T = 0.0f;
  59. const float mvp[4][4] =
  60. {
  61. { 2.0f/(R-L), 0.0f, 0.0f, 0.0f},
  62. { 0.0f, 2.0f/(T-B), 0.0f, 0.0f,},
  63. { 0.0f, 0.0f, 0.5f, 0.0f },
  64. { (R+L)/(L-R), (T+B)/(B-T), 0.5f, 1.0f },
  65. };
  66. memcpy(&pConstantBuffer->mvp, mvp, sizeof(mvp));
  67. g_pd3dDeviceContext->Unmap(g_pVertexConstantBuffer, 0);
  68. }
  69. // Setup viewport
  70. {
  71. D3D11_VIEWPORT vp;
  72. memset(&vp, 0, sizeof(D3D11_VIEWPORT));
  73. vp.Width = ImGui::GetIO().DisplaySize.x;
  74. vp.Height = ImGui::GetIO().DisplaySize.y;
  75. vp.MinDepth = 0.0f;
  76. vp.MaxDepth = 1.0f;
  77. vp.TopLeftX = 0;
  78. vp.TopLeftY = 0;
  79. g_pd3dDeviceContext->RSSetViewports(1, &vp);
  80. }
  81. // Bind shader and vertex buffers
  82. unsigned int stride = sizeof(ImDrawVert);
  83. unsigned int offset = 0;
  84. g_pd3dDeviceContext->IASetInputLayout(g_pInputLayout);
  85. g_pd3dDeviceContext->IASetVertexBuffers(0, 1, &g_pVB, &stride, &offset);
  86. g_pd3dDeviceContext->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
  87. g_pd3dDeviceContext->VSSetShader(g_pVertexShader, NULL, 0);
  88. g_pd3dDeviceContext->VSSetConstantBuffers(0, 1, &g_pVertexConstantBuffer);
  89. g_pd3dDeviceContext->PSSetShader(g_pPixelShader, NULL, 0);
  90. g_pd3dDeviceContext->PSSetSamplers(0, 1, &g_pFontSampler);
  91. // Setup render state
  92. const float blendFactor[4] = { 0.f, 0.f, 0.f, 0.f };
  93. g_pd3dDeviceContext->OMSetBlendState(g_blendState, blendFactor, 0xffffffff);
  94. // Render command lists
  95. int vtx_offset = 0;
  96. for (int n = 0; n < cmd_lists_count; n++)
  97. {
  98. const ImDrawList* cmd_list = cmd_lists[n];
  99. for (size_t cmd_i = 0; cmd_i < cmd_list->commands.size(); cmd_i++)
  100. {
  101. const ImDrawCmd* pcmd = &cmd_list->commands[cmd_i];
  102. if (pcmd->user_callback)
  103. {
  104. pcmd->user_callback(cmd_list, pcmd);
  105. }
  106. else
  107. {
  108. const D3D11_RECT r = { (LONG)pcmd->clip_rect.x, (LONG)pcmd->clip_rect.y, (LONG)pcmd->clip_rect.z, (LONG)pcmd->clip_rect.w };
  109. g_pd3dDeviceContext->PSSetShaderResources(0, 1, (ID3D11ShaderResourceView**)&pcmd->texture_id);
  110. g_pd3dDeviceContext->RSSetScissorRects(1, &r);
  111. g_pd3dDeviceContext->Draw(pcmd->vtx_count, vtx_offset);
  112. }
  113. vtx_offset += pcmd->vtx_count;
  114. }
  115. }
  116. // Restore modified state
  117. g_pd3dDeviceContext->IASetInputLayout(NULL);
  118. g_pd3dDeviceContext->PSSetShader(NULL, NULL, 0);
  119. g_pd3dDeviceContext->VSSetShader(NULL, NULL, 0);
  120. }
  121. LRESULT ImGui_ImplDX11_WndProcHandler(HWND, UINT msg, WPARAM wParam, LPARAM lParam)
  122. {
  123. ImGuiIO& io = ImGui::GetIO();
  124. switch (msg)
  125. {
  126. case WM_LBUTTONDOWN:
  127. io.MouseDown[0] = true;
  128. return true;
  129. case WM_LBUTTONUP:
  130. io.MouseDown[0] = false;
  131. return true;
  132. case WM_RBUTTONDOWN:
  133. io.MouseDown[1] = true;
  134. return true;
  135. case WM_RBUTTONUP:
  136. io.MouseDown[1] = false;
  137. return true;
  138. case WM_MOUSEWHEEL:
  139. io.MouseWheel += GET_WHEEL_DELTA_WPARAM(wParam) > 0 ? +1.0f : -1.0f;
  140. return true;
  141. case WM_MOUSEMOVE:
  142. io.MousePos.x = (signed short)(lParam);
  143. io.MousePos.y = (signed short)(lParam >> 16);
  144. return true;
  145. case WM_KEYDOWN:
  146. if (wParam < 256)
  147. io.KeysDown[wParam] = 1;
  148. return true;
  149. case WM_KEYUP:
  150. if (wParam < 256)
  151. io.KeysDown[wParam] = 0;
  152. return true;
  153. case WM_CHAR:
  154. // You can also use ToAscii()+GetKeyboardState() to retrieve characters.
  155. if (wParam > 0 && wParam < 0x10000)
  156. io.AddInputCharacter((unsigned short)wParam);
  157. return true;
  158. }
  159. return 0;
  160. }
  161. static void ImGui_ImplDX11_CreateFontsTexture()
  162. {
  163. ImGuiIO& io = ImGui::GetIO();
  164. // Build
  165. unsigned char* pixels;
  166. int width, height;
  167. io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
  168. // Create DX11 texture
  169. {
  170. D3D11_TEXTURE2D_DESC texDesc;
  171. ZeroMemory(&texDesc, sizeof(texDesc));
  172. texDesc.Width = width;
  173. texDesc.Height = height;
  174. texDesc.MipLevels = 1;
  175. texDesc.ArraySize = 1;
  176. texDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
  177. texDesc.SampleDesc.Count = 1;
  178. texDesc.Usage = D3D11_USAGE_DEFAULT;
  179. texDesc.BindFlags = D3D11_BIND_SHADER_RESOURCE;
  180. texDesc.CPUAccessFlags = 0;
  181. ID3D11Texture2D *pTexture = NULL;
  182. D3D11_SUBRESOURCE_DATA subResource;
  183. subResource.pSysMem = pixels;
  184. subResource.SysMemPitch = texDesc.Width * 4;
  185. subResource.SysMemSlicePitch = 0;
  186. g_pd3dDevice->CreateTexture2D(&texDesc, &subResource, &pTexture);
  187. // Create texture view
  188. D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc;
  189. ZeroMemory(&srvDesc, sizeof(srvDesc));
  190. srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
  191. srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D;
  192. srvDesc.Texture2D.MipLevels = texDesc.MipLevels;
  193. srvDesc.Texture2D.MostDetailedMip = 0;
  194. g_pd3dDevice->CreateShaderResourceView(pTexture, &srvDesc, &g_pFontTextureView);
  195. pTexture->Release();
  196. }
  197. // Store our identifier
  198. io.Fonts->TexID = (void *)g_pFontTextureView;
  199. // Create texture sampler
  200. {
  201. D3D11_SAMPLER_DESC samplerDesc;
  202. ZeroMemory(&samplerDesc, sizeof(samplerDesc));
  203. samplerDesc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR;
  204. samplerDesc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP;
  205. samplerDesc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP;
  206. samplerDesc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP;
  207. samplerDesc.MipLODBias = 0.f;
  208. samplerDesc.ComparisonFunc = D3D11_COMPARISON_ALWAYS;
  209. samplerDesc.MinLOD = 0.f;
  210. samplerDesc.MaxLOD = 0.f;
  211. g_pd3dDevice->CreateSamplerState(&samplerDesc, &g_pFontSampler);
  212. }
  213. }
  214. bool ImGui_ImplDX11_CreateDeviceObjects()
  215. {
  216. if (!g_pd3dDevice)
  217. return false;
  218. if (g_pVB)
  219. ImGui_ImplDX11_InvalidateDeviceObjects();
  220. // Create the vertex shader
  221. {
  222. static const char* vertexShader =
  223. "cbuffer vertexBuffer : register(c0) \
  224. {\
  225. float4x4 ProjectionMatrix; \
  226. };\
  227. struct VS_INPUT\
  228. {\
  229. float2 pos : POSITION;\
  230. float4 col : COLOR0;\
  231. float2 uv : TEXCOORD0;\
  232. };\
  233. \
  234. struct PS_INPUT\
  235. {\
  236. float4 pos : SV_POSITION;\
  237. float4 col : COLOR0;\
  238. float2 uv : TEXCOORD0;\
  239. };\
  240. \
  241. PS_INPUT main(VS_INPUT input)\
  242. {\
  243. PS_INPUT output;\
  244. output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\
  245. output.col = input.col;\
  246. output.uv = input.uv;\
  247. return output;\
  248. }";
  249. D3DCompile(vertexShader, strlen(vertexShader), NULL, NULL, NULL, "main", "vs_5_0", 0, 0, &g_pVertexShaderBlob, NULL);
  250. if (g_pVertexShaderBlob == NULL) // NB: Pass ID3D10Blob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob!
  251. return false;
  252. if (g_pd3dDevice->CreateVertexShader((DWORD*)g_pVertexShaderBlob->GetBufferPointer(), g_pVertexShaderBlob->GetBufferSize(), NULL, &g_pVertexShader) != S_OK)
  253. return false;
  254. // Create the input layout
  255. D3D11_INPUT_ELEMENT_DESC localLayout[] = {
  256. { "POSITION", 0, DXGI_FORMAT_R32G32B32A32_FLOAT, 0, (size_t)(&((ImDrawVert*)0)->pos), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  257. { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (size_t)(&((ImDrawVert*)0)->uv), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  258. { "COLOR", 0, DXGI_FORMAT_R8G8B8A8_UNORM, 0, (size_t)(&((ImDrawVert*)0)->col), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  259. };
  260. if (g_pd3dDevice->CreateInputLayout(localLayout, 3, g_pVertexShaderBlob->GetBufferPointer(), g_pVertexShaderBlob->GetBufferSize(), &g_pInputLayout) != S_OK)
  261. return false;
  262. // Create the constant buffer
  263. {
  264. D3D11_BUFFER_DESC cbDesc;
  265. cbDesc.ByteWidth = sizeof(VERTEX_CONSTANT_BUFFER);
  266. cbDesc.Usage = D3D11_USAGE_DYNAMIC;
  267. cbDesc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
  268. cbDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
  269. cbDesc.MiscFlags = 0;
  270. g_pd3dDevice->CreateBuffer(&cbDesc, NULL, &g_pVertexConstantBuffer);
  271. }
  272. }
  273. // Create the pixel shader
  274. {
  275. static const char* pixelShader =
  276. "struct PS_INPUT\
  277. {\
  278. float4 pos : SV_POSITION;\
  279. float4 col : COLOR0;\
  280. float2 uv : TEXCOORD0;\
  281. };\
  282. sampler sampler0;\
  283. Texture2D texture0;\
  284. \
  285. float4 main(PS_INPUT input) : SV_Target\
  286. {\
  287. float4 out_col = input.col * texture0.Sample(sampler0, input.uv); \
  288. return out_col; \
  289. }";
  290. D3DCompile(pixelShader, strlen(pixelShader), NULL, NULL, NULL, "main", "ps_5_0", 0, 0, &g_pPixelShaderBlob, NULL);
  291. if (g_pPixelShaderBlob == NULL) // NB: Pass ID3D10Blob* pErrorBlob to D3DCompile() to get error showing in (const char*)pErrorBlob->GetBufferPointer(). Make sure to Release() the blob!
  292. return false;
  293. if (g_pd3dDevice->CreatePixelShader((DWORD*)g_pPixelShaderBlob->GetBufferPointer(), g_pPixelShaderBlob->GetBufferSize(), NULL, &g_pPixelShader) != S_OK)
  294. return false;
  295. }
  296. // Create the blending setup
  297. {
  298. D3D11_BLEND_DESC desc;
  299. ZeroMemory(&desc, sizeof(desc));
  300. desc.AlphaToCoverageEnable = false;
  301. desc.RenderTarget[0].BlendEnable = true;
  302. desc.RenderTarget[0].SrcBlend = D3D11_BLEND_SRC_ALPHA;
  303. desc.RenderTarget[0].DestBlend = D3D11_BLEND_INV_SRC_ALPHA;
  304. desc.RenderTarget[0].BlendOp = D3D11_BLEND_OP_ADD;
  305. desc.RenderTarget[0].SrcBlendAlpha = D3D11_BLEND_INV_SRC_ALPHA;
  306. desc.RenderTarget[0].DestBlendAlpha = D3D11_BLEND_ZERO;
  307. desc.RenderTarget[0].BlendOpAlpha = D3D11_BLEND_OP_ADD;
  308. desc.RenderTarget[0].RenderTargetWriteMask = D3D11_COLOR_WRITE_ENABLE_ALL;
  309. g_pd3dDevice->CreateBlendState(&desc, &g_blendState);
  310. }
  311. // Create the vertex buffer
  312. {
  313. D3D11_BUFFER_DESC bufferDesc;
  314. memset(&bufferDesc, 0, sizeof(D3D11_BUFFER_DESC));
  315. bufferDesc.Usage = D3D11_USAGE_DYNAMIC;
  316. bufferDesc.ByteWidth = VERTEX_BUFFER_SIZE * sizeof(ImDrawVert);
  317. bufferDesc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
  318. bufferDesc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
  319. bufferDesc.MiscFlags = 0;
  320. if (g_pd3dDevice->CreateBuffer(&bufferDesc, NULL, &g_pVB) < 0)
  321. return false;
  322. }
  323. ImGui_ImplDX11_CreateFontsTexture();
  324. return true;
  325. }
  326. void ImGui_ImplDX11_InvalidateDeviceObjects()
  327. {
  328. if (!g_pd3dDevice)
  329. return;
  330. if (g_pFontSampler) { g_pFontSampler->Release(); g_pFontSampler = NULL; }
  331. if (g_pFontTextureView) { g_pFontTextureView->Release(); ImGui::GetIO().Fonts->TexID = 0; }
  332. if (g_pVB) { g_pVB->Release(); g_pVB = NULL; }
  333. if (g_blendState) { g_blendState->Release(); g_blendState = NULL; }
  334. if (g_pPixelShader) { g_pPixelShader->Release(); g_pPixelShader = NULL; }
  335. if (g_pPixelShaderBlob) { g_pPixelShaderBlob->Release(); g_pPixelShaderBlob = NULL; }
  336. if (g_pVertexConstantBuffer) { g_pVertexConstantBuffer->Release(); g_pVertexConstantBuffer = NULL; }
  337. if (g_pInputLayout) { g_pInputLayout->Release(); g_pInputLayout = NULL; }
  338. if (g_pVertexShader) { g_pVertexShader->Release(); g_pVertexShader = NULL; }
  339. if (g_pVertexShaderBlob) { g_pVertexShaderBlob->Release(); g_pVertexShaderBlob = NULL; }
  340. }
  341. bool ImGui_ImplDX11_Init(void* hwnd, ID3D11Device* device, ID3D11DeviceContext* device_context)
  342. {
  343. g_hWnd = (HWND)hwnd;
  344. g_pd3dDevice = device;
  345. g_pd3dDeviceContext = device_context;
  346. if (!QueryPerformanceFrequency((LARGE_INTEGER *)&g_TicksPerSecond))
  347. return false;
  348. if (!QueryPerformanceCounter((LARGE_INTEGER *)&g_Time))
  349. return false;
  350. ImGuiIO& io = ImGui::GetIO();
  351. io.KeyMap[ImGuiKey_Tab] = VK_TAB; // Keyboard mapping. ImGui will use those indices to peek into the io.KeyDown[] array that we will update during the application lifetime.
  352. io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT;
  353. io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT;
  354. io.KeyMap[ImGuiKey_UpArrow] = VK_UP;
  355. io.KeyMap[ImGuiKey_DownArrow] = VK_UP;
  356. io.KeyMap[ImGuiKey_Home] = VK_HOME;
  357. io.KeyMap[ImGuiKey_End] = VK_END;
  358. io.KeyMap[ImGuiKey_Delete] = VK_DELETE;
  359. io.KeyMap[ImGuiKey_Backspace] = VK_BACK;
  360. io.KeyMap[ImGuiKey_Enter] = VK_RETURN;
  361. io.KeyMap[ImGuiKey_Escape] = VK_ESCAPE;
  362. io.KeyMap[ImGuiKey_A] = 'A';
  363. io.KeyMap[ImGuiKey_C] = 'C';
  364. io.KeyMap[ImGuiKey_V] = 'V';
  365. io.KeyMap[ImGuiKey_X] = 'X';
  366. io.KeyMap[ImGuiKey_Y] = 'Y';
  367. io.KeyMap[ImGuiKey_Z] = 'Z';
  368. io.RenderDrawListsFn = ImGui_ImplDX11_RenderDrawLists;
  369. io.ImeWindowHandle = g_hWnd;
  370. return true;
  371. }
  372. void ImGui_ImplDX11_Shutdown()
  373. {
  374. ImGui_ImplDX11_InvalidateDeviceObjects();
  375. ImGui::Shutdown();
  376. g_pd3dDevice = NULL;
  377. g_pd3dDeviceContext = NULL;
  378. g_hWnd = (HWND)0;
  379. }
  380. void ImGui_ImplDX11_NewFrame()
  381. {
  382. if (!g_pVB)
  383. ImGui_ImplDX11_CreateDeviceObjects();
  384. ImGuiIO& io = ImGui::GetIO();
  385. // Setup display size (every frame to accommodate for window resizing)
  386. RECT rect;
  387. GetClientRect(g_hWnd, &rect);
  388. io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top));
  389. // Setup time step
  390. INT64 current_time;
  391. QueryPerformanceCounter((LARGE_INTEGER *)&current_time);
  392. io.DeltaTime = (float)(current_time - g_Time) / g_TicksPerSecond;
  393. g_Time = current_time;
  394. // Read keyboard modifiers inputs
  395. io.KeyCtrl = (GetKeyState(VK_CONTROL) & 0x8000) != 0;
  396. io.KeyShift = (GetKeyState(VK_SHIFT) & 0x8000) != 0;
  397. io.KeyAlt = (GetKeyState(VK_MENU) & 0x8000) != 0;
  398. // io.KeysDown : filled by WM_KEYDOWN/WM_KEYUP events
  399. // io.MousePos : filled by WM_MOUSEMOVE events
  400. // io.MouseDown : filled by WM_*BUTTON* events
  401. // io.MouseWheel : filled by WM_MOUSEWHEEL events
  402. // Start the frame
  403. ImGui::NewFrame();
  404. }