imgui_impl_dx10.cpp 25 KB

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