imgui_impl_dx11.cpp 27 KB

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