imgui_impl_dx11.cpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607
  1. // ImGui Win32 + DirectX11 binding
  2. // In this binding, ImTextureID is used to store a 'ID3D11ShaderResourceView*' texture identifier. Read the FAQ about ImTextureID in imgui.cpp.
  3. // You can copy and use unmodified imgui_impl_* files in your project. See main.cpp for an example of using this.
  4. // If you use this binding you'll need to call 4 functions: ImGui_ImplXXXX_Init(), ImGui_ImplXXXX_NewFrame(), ImGui::Render() and ImGui_ImplXXXX_Shutdown().
  5. // If you are new to ImGui, see examples/README.txt and documentation at the top of imgui.cpp.
  6. // https://github.com/ocornut/imgui
  7. #include <imgui.h>
  8. #include "imgui_impl_dx11.h"
  9. // DirectX
  10. #include <d3d11.h>
  11. #include <d3dcompiler.h>
  12. #define DIRECTINPUT_VERSION 0x0800
  13. #include <dinput.h>
  14. // Data
  15. static INT64 g_Time = 0;
  16. static INT64 g_TicksPerSecond = 0;
  17. static HWND g_hWnd = 0;
  18. static ID3D11Device* g_pd3dDevice = NULL;
  19. static ID3D11DeviceContext* g_pd3dDeviceContext = NULL;
  20. static ID3D11Buffer* g_pVB = NULL;
  21. static ID3D11Buffer* g_pIB = NULL;
  22. static ID3D10Blob * g_pVertexShaderBlob = NULL;
  23. static ID3D11VertexShader* g_pVertexShader = NULL;
  24. static ID3D11InputLayout* g_pInputLayout = NULL;
  25. static ID3D11Buffer* g_pVertexConstantBuffer = NULL;
  26. static ID3D10Blob * g_pPixelShaderBlob = NULL;
  27. static ID3D11PixelShader* g_pPixelShader = NULL;
  28. static ID3D11SamplerState* g_pFontSampler = NULL;
  29. static ID3D11ShaderResourceView*g_pFontTextureView = NULL;
  30. static ID3D11RasterizerState* g_pRasterizerState = NULL;
  31. static ID3D11BlendState* g_pBlendState = NULL;
  32. static ID3D11DepthStencilState* g_pDepthStencilState = NULL;
  33. static int g_VertexBufferSize = 5000, g_IndexBufferSize = 10000;
  34. struct VERTEX_CONSTANT_BUFFER
  35. {
  36. float mvp[4][4];
  37. };
  38. // This is the main rendering function that you have to implement and provide to ImGui (via setting up 'RenderDrawListsFn' in the ImGuiIO structure)
  39. // If text or lines are blurry when integrating ImGui in your engine:
  40. // - in your Render function, try translating your projection matrix by (0.5f,0.5f) or (0.375f,0.375f)
  41. void ImGui_ImplDX11_RenderDrawLists(ImDrawData* draw_data)
  42. {
  43. ID3D11DeviceContext* ctx = g_pd3dDeviceContext;
  44. // Create and grow vertex/index buffers if needed
  45. if (!g_pVB || g_VertexBufferSize < draw_data->TotalVtxCount)
  46. {
  47. if (g_pVB) { g_pVB->Release(); g_pVB = NULL; }
  48. g_VertexBufferSize = draw_data->TotalVtxCount + 5000;
  49. D3D11_BUFFER_DESC desc;
  50. memset(&desc, 0, sizeof(D3D11_BUFFER_DESC));
  51. desc.Usage = D3D11_USAGE_DYNAMIC;
  52. desc.ByteWidth = g_VertexBufferSize * sizeof(ImDrawVert);
  53. desc.BindFlags = D3D11_BIND_VERTEX_BUFFER;
  54. desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
  55. desc.MiscFlags = 0;
  56. if (g_pd3dDevice->CreateBuffer(&desc, NULL, &g_pVB) < 0)
  57. return;
  58. }
  59. if (!g_pIB || g_IndexBufferSize < draw_data->TotalIdxCount)
  60. {
  61. if (g_pIB) { g_pIB->Release(); g_pIB = NULL; }
  62. g_IndexBufferSize = draw_data->TotalIdxCount + 10000;
  63. D3D11_BUFFER_DESC desc;
  64. memset(&desc, 0, sizeof(D3D11_BUFFER_DESC));
  65. desc.Usage = D3D11_USAGE_DYNAMIC;
  66. desc.ByteWidth = g_IndexBufferSize * sizeof(ImDrawIdx);
  67. desc.BindFlags = D3D11_BIND_INDEX_BUFFER;
  68. desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
  69. if (g_pd3dDevice->CreateBuffer(&desc, NULL, &g_pIB) < 0)
  70. return;
  71. }
  72. // Copy and convert all vertices into a single contiguous buffer
  73. D3D11_MAPPED_SUBRESOURCE vtx_resource, idx_resource;
  74. if (ctx->Map(g_pVB, 0, D3D11_MAP_WRITE_DISCARD, 0, &vtx_resource) != S_OK)
  75. return;
  76. if (ctx->Map(g_pIB, 0, D3D11_MAP_WRITE_DISCARD, 0, &idx_resource) != S_OK)
  77. return;
  78. ImDrawVert* vtx_dst = (ImDrawVert*)vtx_resource.pData;
  79. ImDrawIdx* idx_dst = (ImDrawIdx*)idx_resource.pData;
  80. for (int n = 0; n < draw_data->CmdListsCount; n++)
  81. {
  82. const ImDrawList* cmd_list = draw_data->CmdLists[n];
  83. memcpy(vtx_dst, cmd_list->VtxBuffer.Data, cmd_list->VtxBuffer.Size * sizeof(ImDrawVert));
  84. memcpy(idx_dst, cmd_list->IdxBuffer.Data, cmd_list->IdxBuffer.Size * sizeof(ImDrawIdx));
  85. vtx_dst += cmd_list->VtxBuffer.Size;
  86. idx_dst += cmd_list->IdxBuffer.Size;
  87. }
  88. ctx->Unmap(g_pVB, 0);
  89. ctx->Unmap(g_pIB, 0);
  90. // Setup orthographic projection matrix into our constant buffer
  91. {
  92. D3D11_MAPPED_SUBRESOURCE mapped_resource;
  93. if (ctx->Map(g_pVertexConstantBuffer, 0, D3D11_MAP_WRITE_DISCARD, 0, &mapped_resource) != S_OK)
  94. return;
  95. VERTEX_CONSTANT_BUFFER* constant_buffer = (VERTEX_CONSTANT_BUFFER*)mapped_resource.pData;
  96. float L = 0.0f;
  97. float R = ImGui::GetIO().DisplaySize.x;
  98. float B = ImGui::GetIO().DisplaySize.y;
  99. float T = 0.0f;
  100. float mvp[4][4] =
  101. {
  102. { 2.0f/(R-L), 0.0f, 0.0f, 0.0f },
  103. { 0.0f, 2.0f/(T-B), 0.0f, 0.0f },
  104. { 0.0f, 0.0f, 0.5f, 0.0f },
  105. { (R+L)/(L-R), (T+B)/(B-T), 0.5f, 1.0f },
  106. };
  107. memcpy(&constant_buffer->mvp, mvp, sizeof(mvp));
  108. ctx->Unmap(g_pVertexConstantBuffer, 0);
  109. }
  110. // Backup DX state that will be modified to restore it afterwards (unfortunately this is very ugly looking and verbose. Close your eyes!)
  111. struct BACKUP_DX11_STATE
  112. {
  113. UINT ScissorRectsCount, ViewportsCount;
  114. D3D11_RECT ScissorRects[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE];
  115. D3D11_VIEWPORT Viewports[D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE];
  116. ID3D11RasterizerState* RS;
  117. ID3D11BlendState* BlendState;
  118. FLOAT BlendFactor[4];
  119. UINT SampleMask;
  120. UINT StencilRef;
  121. ID3D11DepthStencilState* DepthStencilState;
  122. ID3D11ShaderResourceView* PSShaderResource;
  123. ID3D11SamplerState* PSSampler;
  124. ID3D11PixelShader* PS;
  125. ID3D11VertexShader* VS;
  126. UINT PSInstancesCount, VSInstancesCount;
  127. ID3D11ClassInstance* PSInstances[256], *VSInstances[256]; // 256 is max according to PSSetShader documentation
  128. D3D11_PRIMITIVE_TOPOLOGY PrimitiveTopology;
  129. ID3D11Buffer* IndexBuffer, *VertexBuffer, *VSConstantBuffer;
  130. UINT IndexBufferOffset, VertexBufferStride, VertexBufferOffset;
  131. DXGI_FORMAT IndexBufferFormat;
  132. ID3D11InputLayout* InputLayout;
  133. };
  134. BACKUP_DX11_STATE old;
  135. old.ScissorRectsCount = old.ViewportsCount = D3D11_VIEWPORT_AND_SCISSORRECT_OBJECT_COUNT_PER_PIPELINE;
  136. ctx->RSGetScissorRects(&old.ScissorRectsCount, old.ScissorRects);
  137. ctx->RSGetViewports(&old.ViewportsCount, old.Viewports);
  138. ctx->RSGetState(&old.RS);
  139. ctx->OMGetBlendState(&old.BlendState, old.BlendFactor, &old.SampleMask);
  140. ctx->OMGetDepthStencilState(&old.DepthStencilState, &old.StencilRef);
  141. ctx->PSGetShaderResources(0, 1, &old.PSShaderResource);
  142. ctx->PSGetSamplers(0, 1, &old.PSSampler);
  143. old.PSInstancesCount = old.VSInstancesCount = 256;
  144. ctx->PSGetShader(&old.PS, old.PSInstances, &old.PSInstancesCount);
  145. ctx->VSGetShader(&old.VS, old.VSInstances, &old.VSInstancesCount);
  146. ctx->VSGetConstantBuffers(0, 1, &old.VSConstantBuffer);
  147. ctx->IAGetPrimitiveTopology(&old.PrimitiveTopology);
  148. ctx->IAGetIndexBuffer(&old.IndexBuffer, &old.IndexBufferFormat, &old.IndexBufferOffset);
  149. ctx->IAGetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset);
  150. ctx->IAGetInputLayout(&old.InputLayout);
  151. // Setup viewport
  152. D3D11_VIEWPORT vp;
  153. memset(&vp, 0, sizeof(D3D11_VIEWPORT));
  154. vp.Width = ImGui::GetIO().DisplaySize.x;
  155. vp.Height = ImGui::GetIO().DisplaySize.y;
  156. vp.MinDepth = 0.0f;
  157. vp.MaxDepth = 1.0f;
  158. vp.TopLeftX = vp.TopLeftY = 0.0f;
  159. ctx->RSSetViewports(1, &vp);
  160. // Bind shader and vertex buffers
  161. unsigned int stride = sizeof(ImDrawVert);
  162. unsigned int offset = 0;
  163. ctx->IASetInputLayout(g_pInputLayout);
  164. ctx->IASetVertexBuffers(0, 1, &g_pVB, &stride, &offset);
  165. ctx->IASetIndexBuffer(g_pIB, sizeof(ImDrawIdx) == 2 ? DXGI_FORMAT_R16_UINT : DXGI_FORMAT_R32_UINT, 0);
  166. ctx->IASetPrimitiveTopology(D3D11_PRIMITIVE_TOPOLOGY_TRIANGLELIST);
  167. ctx->VSSetShader(g_pVertexShader, NULL, 0);
  168. ctx->VSSetConstantBuffers(0, 1, &g_pVertexConstantBuffer);
  169. ctx->PSSetShader(g_pPixelShader, NULL, 0);
  170. ctx->PSSetSamplers(0, 1, &g_pFontSampler);
  171. // Setup render state
  172. const float blend_factor[4] = { 0.f, 0.f, 0.f, 0.f };
  173. ctx->OMSetBlendState(g_pBlendState, blend_factor, 0xffffffff);
  174. ctx->OMSetDepthStencilState(g_pDepthStencilState, 0);
  175. ctx->RSSetState(g_pRasterizerState);
  176. // Render command lists
  177. int vtx_offset = 0;
  178. int idx_offset = 0;
  179. for (int n = 0; n < draw_data->CmdListsCount; n++)
  180. {
  181. const ImDrawList* cmd_list = draw_data->CmdLists[n];
  182. for (int cmd_i = 0; cmd_i < cmd_list->CmdBuffer.Size; cmd_i++)
  183. {
  184. const ImDrawCmd* pcmd = &cmd_list->CmdBuffer[cmd_i];
  185. if (pcmd->UserCallback)
  186. {
  187. pcmd->UserCallback(cmd_list, pcmd);
  188. }
  189. else
  190. {
  191. const D3D11_RECT r = { (LONG)pcmd->ClipRect.x, (LONG)pcmd->ClipRect.y, (LONG)pcmd->ClipRect.z, (LONG)pcmd->ClipRect.w };
  192. ctx->PSSetShaderResources(0, 1, (ID3D11ShaderResourceView**)&pcmd->TextureId);
  193. ctx->RSSetScissorRects(1, &r);
  194. ctx->DrawIndexed(pcmd->ElemCount, idx_offset, vtx_offset);
  195. }
  196. idx_offset += pcmd->ElemCount;
  197. }
  198. vtx_offset += cmd_list->VtxBuffer.Size;
  199. }
  200. // Restore modified DX state
  201. ctx->RSSetScissorRects(old.ScissorRectsCount, old.ScissorRects);
  202. ctx->RSSetViewports(old.ViewportsCount, old.Viewports);
  203. ctx->RSSetState(old.RS); if (old.RS) old.RS->Release();
  204. ctx->OMSetBlendState(old.BlendState, old.BlendFactor, old.SampleMask); if (old.BlendState) old.BlendState->Release();
  205. ctx->OMSetDepthStencilState(old.DepthStencilState, old.StencilRef); if (old.DepthStencilState) old.DepthStencilState->Release();
  206. ctx->PSSetShaderResources(0, 1, &old.PSShaderResource); if (old.PSShaderResource) old.PSShaderResource->Release();
  207. ctx->PSSetSamplers(0, 1, &old.PSSampler); if (old.PSSampler) old.PSSampler->Release();
  208. ctx->PSSetShader(old.PS, old.PSInstances, old.PSInstancesCount); if (old.PS) old.PS->Release();
  209. for (UINT i = 0; i < old.PSInstancesCount; i++) if (old.PSInstances[i]) old.PSInstances[i]->Release();
  210. ctx->VSSetShader(old.VS, old.VSInstances, old.VSInstancesCount); if (old.VS) old.VS->Release();
  211. ctx->VSSetConstantBuffers(0, 1, &old.VSConstantBuffer); if (old.VSConstantBuffer) old.VSConstantBuffer->Release();
  212. for (UINT i = 0; i < old.VSInstancesCount; i++) if (old.VSInstances[i]) old.VSInstances[i]->Release();
  213. ctx->IASetPrimitiveTopology(old.PrimitiveTopology);
  214. ctx->IASetIndexBuffer(old.IndexBuffer, old.IndexBufferFormat, old.IndexBufferOffset); if (old.IndexBuffer) old.IndexBuffer->Release();
  215. ctx->IASetVertexBuffers(0, 1, &old.VertexBuffer, &old.VertexBufferStride, &old.VertexBufferOffset); if (old.VertexBuffer) old.VertexBuffer->Release();
  216. ctx->IASetInputLayout(old.InputLayout); if (old.InputLayout) old.InputLayout->Release();
  217. }
  218. static bool IsAnyMouseButtonDown()
  219. {
  220. ImGuiIO& io = ImGui::GetIO();
  221. for (int n = 0; n < ARRAYSIZE(io.MouseDown); n++)
  222. if (io.MouseDown[n])
  223. return true;
  224. return false;
  225. }
  226. IMGUI_API LRESULT ImGui_ImplDX11_WndProcHandler(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
  227. {
  228. ImGuiIO& io = ImGui::GetIO();
  229. switch (msg)
  230. {
  231. case WM_LBUTTONDOWN:
  232. if (!IsAnyMouseButtonDown()) ::SetCapture(hwnd);
  233. io.MouseDown[0] = true;
  234. return true;
  235. case WM_RBUTTONDOWN:
  236. if (!IsAnyMouseButtonDown()) ::SetCapture(hwnd);
  237. io.MouseDown[1] = true;
  238. return true;
  239. case WM_MBUTTONDOWN:
  240. if (!IsAnyMouseButtonDown()) ::SetCapture(hwnd);
  241. io.MouseDown[2] = true;
  242. return true;
  243. case WM_LBUTTONUP:
  244. io.MouseDown[0] = false;
  245. if (!IsAnyMouseButtonDown()) ::ReleaseCapture();
  246. return true;
  247. case WM_RBUTTONUP:
  248. io.MouseDown[1] = false;
  249. if (!IsAnyMouseButtonDown()) ::ReleaseCapture();
  250. return true;
  251. case WM_MBUTTONUP:
  252. io.MouseDown[2] = false;
  253. if (!IsAnyMouseButtonDown()) ::ReleaseCapture();
  254. return true;
  255. case WM_MOUSEWHEEL:
  256. io.MouseWheel += GET_WHEEL_DELTA_WPARAM(wParam) > 0 ? +1.0f : -1.0f;
  257. return true;
  258. case WM_MOUSEMOVE:
  259. io.MousePos.x = (signed short)(lParam);
  260. io.MousePos.y = (signed short)(lParam >> 16);
  261. return true;
  262. case WM_KEYDOWN:
  263. if (wParam < 256)
  264. io.KeysDown[wParam] = 1;
  265. return true;
  266. case WM_KEYUP:
  267. if (wParam < 256)
  268. io.KeysDown[wParam] = 0;
  269. return true;
  270. case WM_CHAR:
  271. // You can also use ToAscii()+GetKeyboardState() to retrieve characters.
  272. if (wParam > 0 && wParam < 0x10000)
  273. io.AddInputCharacter((unsigned short)wParam);
  274. return true;
  275. }
  276. return 0;
  277. }
  278. static void ImGui_ImplDX11_CreateFontsTexture()
  279. {
  280. // Build texture atlas
  281. ImGuiIO& io = ImGui::GetIO();
  282. unsigned char* pixels;
  283. int width, height;
  284. io.Fonts->GetTexDataAsRGBA32(&pixels, &width, &height);
  285. // Upload texture to graphics system
  286. {
  287. D3D11_TEXTURE2D_DESC desc;
  288. ZeroMemory(&desc, sizeof(desc));
  289. desc.Width = width;
  290. desc.Height = height;
  291. desc.MipLevels = 1;
  292. desc.ArraySize = 1;
  293. desc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
  294. desc.SampleDesc.Count = 1;
  295. desc.Usage = D3D11_USAGE_DEFAULT;
  296. desc.BindFlags = D3D11_BIND_SHADER_RESOURCE;
  297. desc.CPUAccessFlags = 0;
  298. ID3D11Texture2D *pTexture = NULL;
  299. D3D11_SUBRESOURCE_DATA subResource;
  300. subResource.pSysMem = pixels;
  301. subResource.SysMemPitch = desc.Width * 4;
  302. subResource.SysMemSlicePitch = 0;
  303. g_pd3dDevice->CreateTexture2D(&desc, &subResource, &pTexture);
  304. // Create texture view
  305. D3D11_SHADER_RESOURCE_VIEW_DESC srvDesc;
  306. ZeroMemory(&srvDesc, sizeof(srvDesc));
  307. srvDesc.Format = DXGI_FORMAT_R8G8B8A8_UNORM;
  308. srvDesc.ViewDimension = D3D11_SRV_DIMENSION_TEXTURE2D;
  309. srvDesc.Texture2D.MipLevels = desc.MipLevels;
  310. srvDesc.Texture2D.MostDetailedMip = 0;
  311. g_pd3dDevice->CreateShaderResourceView(pTexture, &srvDesc, &g_pFontTextureView);
  312. pTexture->Release();
  313. }
  314. // Store our identifier
  315. io.Fonts->TexID = (void *)g_pFontTextureView;
  316. // Create texture sampler
  317. {
  318. D3D11_SAMPLER_DESC desc;
  319. ZeroMemory(&desc, sizeof(desc));
  320. desc.Filter = D3D11_FILTER_MIN_MAG_MIP_LINEAR;
  321. desc.AddressU = D3D11_TEXTURE_ADDRESS_WRAP;
  322. desc.AddressV = D3D11_TEXTURE_ADDRESS_WRAP;
  323. desc.AddressW = D3D11_TEXTURE_ADDRESS_WRAP;
  324. desc.MipLODBias = 0.f;
  325. desc.ComparisonFunc = D3D11_COMPARISON_ALWAYS;
  326. desc.MinLOD = 0.f;
  327. desc.MaxLOD = 0.f;
  328. g_pd3dDevice->CreateSamplerState(&desc, &g_pFontSampler);
  329. }
  330. }
  331. bool ImGui_ImplDX11_CreateDeviceObjects()
  332. {
  333. if (!g_pd3dDevice)
  334. return false;
  335. if (g_pFontSampler)
  336. ImGui_ImplDX11_InvalidateDeviceObjects();
  337. // By using D3DCompile() from <d3dcompiler.h> / d3dcompiler.lib, we introduce a dependency to a given version of d3dcompiler_XX.dll (see D3DCOMPILER_DLL_A)
  338. // If you would like to use this DX11 sample code but remove this dependency you can:
  339. // 1) compile once, save the compiled shader blobs into a file or source code and pass them to CreateVertexShader()/CreatePixelShader() [preferred solution]
  340. // 2) use code to detect any version of the DLL and grab a pointer to D3DCompile from the DLL.
  341. // See https://github.com/ocornut/imgui/pull/638 for sources and details.
  342. // Create the vertex shader
  343. {
  344. static const char* vertexShader =
  345. "cbuffer vertexBuffer : register(b0) \
  346. {\
  347. float4x4 ProjectionMatrix; \
  348. };\
  349. struct VS_INPUT\
  350. {\
  351. float2 pos : POSITION;\
  352. float4 col : COLOR0;\
  353. float2 uv : TEXCOORD0;\
  354. };\
  355. \
  356. struct PS_INPUT\
  357. {\
  358. float4 pos : SV_POSITION;\
  359. float4 col : COLOR0;\
  360. float2 uv : TEXCOORD0;\
  361. };\
  362. \
  363. PS_INPUT main(VS_INPUT input)\
  364. {\
  365. PS_INPUT output;\
  366. output.pos = mul( ProjectionMatrix, float4(input.pos.xy, 0.f, 1.f));\
  367. output.col = input.col;\
  368. output.uv = input.uv;\
  369. return output;\
  370. }";
  371. D3DCompile(vertexShader, strlen(vertexShader), NULL, NULL, NULL, "main", "vs_4_0", 0, 0, &g_pVertexShaderBlob, NULL);
  372. 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!
  373. return false;
  374. if (g_pd3dDevice->CreateVertexShader((DWORD*)g_pVertexShaderBlob->GetBufferPointer(), g_pVertexShaderBlob->GetBufferSize(), NULL, &g_pVertexShader) != S_OK)
  375. return false;
  376. // Create the input layout
  377. D3D11_INPUT_ELEMENT_DESC local_layout[] = {
  378. { "POSITION", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (size_t)(&((ImDrawVert*)0)->pos), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  379. { "TEXCOORD", 0, DXGI_FORMAT_R32G32_FLOAT, 0, (size_t)(&((ImDrawVert*)0)->uv), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  380. { "COLOR", 0, DXGI_FORMAT_R8G8B8A8_UNORM, 0, (size_t)(&((ImDrawVert*)0)->col), D3D11_INPUT_PER_VERTEX_DATA, 0 },
  381. };
  382. if (g_pd3dDevice->CreateInputLayout(local_layout, 3, g_pVertexShaderBlob->GetBufferPointer(), g_pVertexShaderBlob->GetBufferSize(), &g_pInputLayout) != S_OK)
  383. return false;
  384. // Create the constant buffer
  385. {
  386. D3D11_BUFFER_DESC desc;
  387. desc.ByteWidth = sizeof(VERTEX_CONSTANT_BUFFER);
  388. desc.Usage = D3D11_USAGE_DYNAMIC;
  389. desc.BindFlags = D3D11_BIND_CONSTANT_BUFFER;
  390. desc.CPUAccessFlags = D3D11_CPU_ACCESS_WRITE;
  391. desc.MiscFlags = 0;
  392. g_pd3dDevice->CreateBuffer(&desc, NULL, &g_pVertexConstantBuffer);
  393. }
  394. }
  395. // Create the pixel shader
  396. {
  397. static const char* pixelShader =
  398. "struct PS_INPUT\
  399. {\
  400. float4 pos : SV_POSITION;\
  401. float4 col : COLOR0;\
  402. float2 uv : TEXCOORD0;\
  403. };\
  404. sampler sampler0;\
  405. Texture2D texture0;\
  406. \
  407. float4 main(PS_INPUT input) : SV_Target\
  408. {\
  409. float4 out_col = input.col * texture0.Sample(sampler0, input.uv); \
  410. return out_col; \
  411. }";
  412. D3DCompile(pixelShader, strlen(pixelShader), NULL, NULL, NULL, "main", "ps_4_0", 0, 0, &g_pPixelShaderBlob, NULL);
  413. 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!
  414. return false;
  415. if (g_pd3dDevice->CreatePixelShader((DWORD*)g_pPixelShaderBlob->GetBufferPointer(), g_pPixelShaderBlob->GetBufferSize(), NULL, &g_pPixelShader) != S_OK)
  416. return false;
  417. }
  418. // Create the blending setup
  419. {
  420. D3D11_BLEND_DESC desc;
  421. ZeroMemory(&desc, sizeof(desc));
  422. desc.AlphaToCoverageEnable = false;
  423. desc.RenderTarget[0].BlendEnable = true;
  424. desc.RenderTarget[0].SrcBlend = D3D11_BLEND_SRC_ALPHA;
  425. desc.RenderTarget[0].DestBlend = D3D11_BLEND_INV_SRC_ALPHA;
  426. desc.RenderTarget[0].BlendOp = D3D11_BLEND_OP_ADD;
  427. desc.RenderTarget[0].SrcBlendAlpha = D3D11_BLEND_INV_SRC_ALPHA;
  428. desc.RenderTarget[0].DestBlendAlpha = D3D11_BLEND_ZERO;
  429. desc.RenderTarget[0].BlendOpAlpha = D3D11_BLEND_OP_ADD;
  430. desc.RenderTarget[0].RenderTargetWriteMask = D3D11_COLOR_WRITE_ENABLE_ALL;
  431. g_pd3dDevice->CreateBlendState(&desc, &g_pBlendState);
  432. }
  433. // Create the rasterizer state
  434. {
  435. D3D11_RASTERIZER_DESC desc;
  436. ZeroMemory(&desc, sizeof(desc));
  437. desc.FillMode = D3D11_FILL_SOLID;
  438. desc.CullMode = D3D11_CULL_NONE;
  439. desc.ScissorEnable = true;
  440. desc.DepthClipEnable = true;
  441. g_pd3dDevice->CreateRasterizerState(&desc, &g_pRasterizerState);
  442. }
  443. // Create depth-stencil State
  444. {
  445. D3D11_DEPTH_STENCIL_DESC desc;
  446. ZeroMemory(&desc, sizeof(desc));
  447. desc.DepthEnable = false;
  448. desc.DepthWriteMask = D3D11_DEPTH_WRITE_MASK_ALL;
  449. desc.DepthFunc = D3D11_COMPARISON_ALWAYS;
  450. desc.StencilEnable = false;
  451. desc.FrontFace.StencilFailOp = desc.FrontFace.StencilDepthFailOp = desc.FrontFace.StencilPassOp = D3D11_STENCIL_OP_KEEP;
  452. desc.FrontFace.StencilFunc = D3D11_COMPARISON_ALWAYS;
  453. desc.BackFace = desc.FrontFace;
  454. g_pd3dDevice->CreateDepthStencilState(&desc, &g_pDepthStencilState);
  455. }
  456. ImGui_ImplDX11_CreateFontsTexture();
  457. return true;
  458. }
  459. void ImGui_ImplDX11_InvalidateDeviceObjects()
  460. {
  461. if (!g_pd3dDevice)
  462. return;
  463. if (g_pFontSampler) { g_pFontSampler->Release(); g_pFontSampler = NULL; }
  464. if (g_pFontTextureView) { g_pFontTextureView->Release(); g_pFontTextureView = NULL; ImGui::GetIO().Fonts->TexID = NULL; } // We copied g_pFontTextureView to io.Fonts->TexID so let's clear that as well.
  465. if (g_pIB) { g_pIB->Release(); g_pIB = NULL; }
  466. if (g_pVB) { g_pVB->Release(); g_pVB = NULL; }
  467. if (g_pBlendState) { g_pBlendState->Release(); g_pBlendState = NULL; }
  468. if (g_pDepthStencilState) { g_pDepthStencilState->Release(); g_pDepthStencilState = NULL; }
  469. if (g_pRasterizerState) { g_pRasterizerState->Release(); g_pRasterizerState = NULL; }
  470. if (g_pPixelShader) { g_pPixelShader->Release(); g_pPixelShader = NULL; }
  471. if (g_pPixelShaderBlob) { g_pPixelShaderBlob->Release(); g_pPixelShaderBlob = NULL; }
  472. if (g_pVertexConstantBuffer) { g_pVertexConstantBuffer->Release(); g_pVertexConstantBuffer = NULL; }
  473. if (g_pInputLayout) { g_pInputLayout->Release(); g_pInputLayout = NULL; }
  474. if (g_pVertexShader) { g_pVertexShader->Release(); g_pVertexShader = NULL; }
  475. if (g_pVertexShaderBlob) { g_pVertexShaderBlob->Release(); g_pVertexShaderBlob = NULL; }
  476. }
  477. bool ImGui_ImplDX11_Init(void* hwnd, ID3D11Device* device, ID3D11DeviceContext* device_context)
  478. {
  479. g_hWnd = (HWND)hwnd;
  480. g_pd3dDevice = device;
  481. g_pd3dDeviceContext = device_context;
  482. if (!QueryPerformanceFrequency((LARGE_INTEGER *)&g_TicksPerSecond))
  483. return false;
  484. if (!QueryPerformanceCounter((LARGE_INTEGER *)&g_Time))
  485. return false;
  486. ImGuiIO& io = ImGui::GetIO();
  487. 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.
  488. io.KeyMap[ImGuiKey_LeftArrow] = VK_LEFT;
  489. io.KeyMap[ImGuiKey_RightArrow] = VK_RIGHT;
  490. io.KeyMap[ImGuiKey_UpArrow] = VK_UP;
  491. io.KeyMap[ImGuiKey_DownArrow] = VK_DOWN;
  492. io.KeyMap[ImGuiKey_PageUp] = VK_PRIOR;
  493. io.KeyMap[ImGuiKey_PageDown] = VK_NEXT;
  494. io.KeyMap[ImGuiKey_Home] = VK_HOME;
  495. io.KeyMap[ImGuiKey_End] = VK_END;
  496. io.KeyMap[ImGuiKey_Delete] = VK_DELETE;
  497. io.KeyMap[ImGuiKey_Backspace] = VK_BACK;
  498. io.KeyMap[ImGuiKey_Enter] = VK_RETURN;
  499. io.KeyMap[ImGuiKey_Escape] = VK_ESCAPE;
  500. io.KeyMap[ImGuiKey_A] = 'A';
  501. io.KeyMap[ImGuiKey_C] = 'C';
  502. io.KeyMap[ImGuiKey_V] = 'V';
  503. io.KeyMap[ImGuiKey_X] = 'X';
  504. io.KeyMap[ImGuiKey_Y] = 'Y';
  505. io.KeyMap[ImGuiKey_Z] = 'Z';
  506. io.RenderDrawListsFn = ImGui_ImplDX11_RenderDrawLists; // Alternatively you can set this to NULL and call ImGui::GetDrawData() after ImGui::Render() to get the same ImDrawData pointer.
  507. io.ImeWindowHandle = g_hWnd;
  508. return true;
  509. }
  510. void ImGui_ImplDX11_Shutdown()
  511. {
  512. ImGui_ImplDX11_InvalidateDeviceObjects();
  513. ImGui::Shutdown();
  514. g_pd3dDevice = NULL;
  515. g_pd3dDeviceContext = NULL;
  516. g_hWnd = (HWND)0;
  517. }
  518. void ImGui_ImplDX11_NewFrame()
  519. {
  520. if (!g_pFontSampler)
  521. ImGui_ImplDX11_CreateDeviceObjects();
  522. ImGuiIO& io = ImGui::GetIO();
  523. // Setup display size (every frame to accommodate for window resizing)
  524. RECT rect;
  525. GetClientRect(g_hWnd, &rect);
  526. io.DisplaySize = ImVec2((float)(rect.right - rect.left), (float)(rect.bottom - rect.top));
  527. // Setup time step
  528. INT64 current_time;
  529. QueryPerformanceCounter((LARGE_INTEGER *)&current_time);
  530. io.DeltaTime = (float)(current_time - g_Time) / g_TicksPerSecond;
  531. g_Time = current_time;
  532. // Read keyboard modifiers inputs
  533. io.KeyCtrl = (GetKeyState(VK_CONTROL) & 0x8000) != 0;
  534. io.KeyShift = (GetKeyState(VK_SHIFT) & 0x8000) != 0;
  535. io.KeyAlt = (GetKeyState(VK_MENU) & 0x8000) != 0;
  536. io.KeySuper = false;
  537. // io.KeysDown : filled by WM_KEYDOWN/WM_KEYUP events
  538. // io.MousePos : filled by WM_MOUSEMOVE events
  539. // io.MouseDown : filled by WM_*BUTTON* events
  540. // io.MouseWheel : filled by WM_MOUSEWHEEL events
  541. // Set OS mouse position if requested last frame by io.WantMoveMouse flag (used when io.NavMovesTrue is enabled by user and using directional navigation)
  542. if (io.WantMoveMouse)
  543. {
  544. POINT pos = { (int)io.MousePos.x, (int)io.MousePos.y };
  545. ClientToScreen(g_hWnd, &pos);
  546. SetCursorPos(pos.x, pos.y);
  547. }
  548. // Hide OS mouse cursor if ImGui is drawing it
  549. if (io.MouseDrawCursor)
  550. SetCursor(NULL);
  551. // Start the frame
  552. ImGui::NewFrame();
  553. }