imgui_impl_opengl2.cpp 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385
  1. // dear imgui: Renderer Backend for OpenGL2 (legacy OpenGL, fixed pipeline)
  2. // This needs to be used along with a Platform Backend (e.g. GLFW, SDL, Win32, custom..)
  3. // Implemented features:
  4. // [X] Renderer: User texture binding. Use 'GLuint' OpenGL texture as texture identifier. Read the FAQ about ImTextureID/ImTextureRef!
  5. // [X] Renderer: Texture updates support for dynamic font atlas (ImGuiBackendFlags_RendererHasTextures).
  6. // [X] Renderer: Multi-viewport support (multiple windows). Enable with 'io.ConfigFlags |= ImGuiConfigFlags_ViewportsEnable'.
  7. // Missing features or Issues:
  8. // [ ] Renderer: Large meshes support (64k+ vertices) even with 16-bit indices (ImGuiBackendFlags_RendererHasVtxOffset).
  9. // You can use unmodified imgui_impl_* files in your project. See examples/ folder for examples of using this.
  10. // Prefer including the entire imgui/ repository into your project (either as a copy or as a submodule), and only build the backends you need.
  11. // Learn about Dear ImGui:
  12. // - FAQ https://dearimgui.com/faq
  13. // - Getting Started https://dearimgui.com/getting-started
  14. // - Documentation https://dearimgui.com/docs (same as your local docs/ folder).
  15. // - Introduction, links and more at the top of imgui.cpp
  16. // **DO NOT USE THIS CODE IF YOUR CODE/ENGINE IS USING MODERN OPENGL (SHADERS, VBO, VAO, etc.)**
  17. // **Prefer using the code in imgui_impl_opengl3.cpp**
  18. // This code is mostly provided as a reference to learn how ImGui integration works, because it is shorter to read.
  19. // If your code is using GL3+ context or any semi modern OpenGL calls, using this is likely to make everything more
  20. // complicated, will require your code to reset every single OpenGL attributes to their initial state, and might
  21. // confuse your GPU driver.
  22. // The GL2 code is unable to reset attributes or even call e.g. "glUseProgram(0)" because they don't exist in that API.
  23. // CHANGELOG
  24. // (minor and older changes stripped away, please see git history for details)
  25. // 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
  26. // 2025-06-11: OpenGL: Added support for ImGuiBackendFlags_RendererHasTextures, for dynamic font atlas. Removed ImGui_ImplOpenGL2_CreateFontsTexture() and ImGui_ImplOpenGL2_DestroyFontsTexture().
  27. // 2024-10-07: OpenGL: Changed default texture sampler to Clamp instead of Repeat/Wrap.
  28. // 2024-06-28: OpenGL: ImGui_ImplOpenGL2_NewFrame() recreates font texture if it has been destroyed by ImGui_ImplOpenGL2_DestroyFontsTexture(). (#7748)
  29. // 2022-10-11: Using 'nullptr' instead of 'NULL' as per our switch to C++11.
  30. // 2021-12-08: OpenGL: Fixed mishandling of the ImDrawCmd::IdxOffset field! This is an old bug but it never had an effect until some internal rendering changes in 1.86.
  31. // 2021-06-29: Reorganized backend to pull data from a single structure to facilitate usage with multiple-contexts (all g_XXXX access changed to bd->XXXX).
  32. // 2021-05-19: OpenGL: Replaced direct access to ImDrawCmd::TextureId with a call to ImDrawCmd::GetTexID(). (will become a requirement)
  33. // 2021-01-03: OpenGL: Backup, setup and restore GL_SHADE_MODEL state, disable GL_STENCIL_TEST and disable GL_NORMAL_ARRAY client state to increase compatibility with legacy OpenGL applications.
  34. // 2020-01-23: OpenGL: Backup, setup and restore GL_TEXTURE_ENV to increase compatibility with legacy OpenGL applications.
  35. // 2019-04-30: OpenGL: Added support for special ImDrawCallback_ResetRenderState callback to reset render state.
  36. // 2019-02-11: OpenGL: Projecting clipping rectangles correctly using draw_data->FramebufferScale to allow multi-viewports for retina display.
  37. // 2018-11-30: Misc: Setting up io.BackendRendererName so it can be displayed in the About Window.
  38. // 2018-08-03: OpenGL: Disabling/restoring GL_LIGHTING and GL_COLOR_MATERIAL to increase compatibility with legacy OpenGL applications.
  39. // 2018-06-08: Misc: Extracted imgui_impl_opengl2.cpp/.h away from the old combined GLFW/SDL+OpenGL2 examples.
  40. // 2018-06-08: OpenGL: Use draw_data->DisplayPos and draw_data->DisplaySize to setup projection matrix and clipping rectangle.
  41. // 2018-02-16: Misc: Obsoleted the io.RenderDrawListsFn callback and exposed ImGui_ImplOpenGL2_RenderDrawData() in the .h file so you can call it yourself.
  42. // 2017-09-01: OpenGL: Save and restore current polygon mode.
  43. // 2016-09-10: OpenGL: Uploading font texture as RGBA32 to increase compatibility with users shaders (not ideal).
  44. // 2016-09-05: OpenGL: Fixed save and restore of current scissor rectangle.
  45. #include "imgui.h"
  46. #ifndef IMGUI_DISABLE
  47. #include "imgui_impl_opengl2.h"
  48. #include <stdint.h> // intptr_t
  49. // Clang/GCC warnings with -Weverything
  50. #if defined(__clang__)
  51. #pragma clang diagnostic push
  52. #pragma clang diagnostic ignored "-Wunused-macros" // warning: macro is not used
  53. #pragma clang diagnostic ignored "-Wnonportable-system-include-path"
  54. #endif
  55. // Include OpenGL header (without an OpenGL loader) requires a bit of fiddling
  56. #if defined(_WIN32) && !defined(APIENTRY)
  57. #define APIENTRY __stdcall // It is customary to use APIENTRY for OpenGL function pointer declarations on all platforms. Additionally, the Windows OpenGL header needs APIENTRY.
  58. #endif
  59. #if defined(_WIN32) && !defined(WINGDIAPI)
  60. #define WINGDIAPI __declspec(dllimport) // Some Windows OpenGL headers need this
  61. #endif
  62. #if defined(__APPLE__)
  63. #define GL_SILENCE_DEPRECATION
  64. #include <OpenGL/gl.h>
  65. #else
  66. #include <GL/gl.h>
  67. #endif
  68. // [Debugging]
  69. //#define IMGUI_IMPL_OPENGL_DEBUG
  70. #ifdef IMGUI_IMPL_OPENGL_DEBUG
  71. #include <stdio.h>
  72. #define GL_CALL(_CALL) do { _CALL; GLenum gl_err = glGetError(); if (gl_err != 0) fprintf(stderr, "GL error 0x%x returned from '%s'.\n", gl_err, #_CALL); } while (0) // Call with error check
  73. #else
  74. #define GL_CALL(_CALL) _CALL // Call without error check
  75. #endif
  76. // OpenGL data
  77. struct ImGui_ImplOpenGL2_Data
  78. {
  79. ImGui_ImplOpenGL2_Data() { memset((void*)this, 0, sizeof(*this)); }
  80. };
  81. // Backend data stored in io.BackendRendererUserData to allow support for multiple Dear ImGui contexts
  82. // It is STRONGLY preferred that you use docking branch with multi-viewports (== single Dear ImGui context + multiple windows) instead of multiple Dear ImGui contexts.
  83. static ImGui_ImplOpenGL2_Data* ImGui_ImplOpenGL2_GetBackendData()
  84. {
  85. return ImGui::GetCurrentContext() ? (ImGui_ImplOpenGL2_Data*)ImGui::GetIO().BackendRendererUserData : nullptr;
  86. }
  87. // Forward Declarations
  88. static void ImGui_ImplOpenGL2_InitMultiViewportSupport();
  89. static void ImGui_ImplOpenGL2_ShutdownMultiViewportSupport();
  90. // Functions
  91. bool ImGui_ImplOpenGL2_Init()
  92. {
  93. ImGuiIO& io = ImGui::GetIO();
  94. IMGUI_CHECKVERSION();
  95. IM_ASSERT(io.BackendRendererUserData == nullptr && "Already initialized a renderer backend!");
  96. // Setup backend capabilities flags
  97. ImGui_ImplOpenGL2_Data* bd = IM_NEW(ImGui_ImplOpenGL2_Data)();
  98. io.BackendRendererUserData = (void*)bd;
  99. io.BackendRendererName = "imgui_impl_opengl2";
  100. io.BackendFlags |= ImGuiBackendFlags_RendererHasTextures; // We can honor ImGuiPlatformIO::Textures[] requests during render.
  101. io.BackendFlags |= ImGuiBackendFlags_RendererHasViewports; // We can create multi-viewports on the Renderer side (optional)
  102. ImGui_ImplOpenGL2_InitMultiViewportSupport();
  103. return true;
  104. }
  105. void ImGui_ImplOpenGL2_Shutdown()
  106. {
  107. ImGui_ImplOpenGL2_Data* bd = ImGui_ImplOpenGL2_GetBackendData();
  108. IM_ASSERT(bd != nullptr && "No renderer backend to shutdown, or already shutdown?");
  109. ImGuiIO& io = ImGui::GetIO();
  110. ImGui_ImplOpenGL2_ShutdownMultiViewportSupport();
  111. ImGui_ImplOpenGL2_DestroyDeviceObjects();
  112. io.BackendRendererName = nullptr;
  113. io.BackendRendererUserData = nullptr;
  114. io.BackendFlags &= ~(ImGuiBackendFlags_RendererHasTextures | ImGuiBackendFlags_RendererHasViewports);
  115. IM_DELETE(bd);
  116. }
  117. void ImGui_ImplOpenGL2_NewFrame()
  118. {
  119. ImGui_ImplOpenGL2_Data* bd = ImGui_ImplOpenGL2_GetBackendData();
  120. IM_ASSERT(bd != nullptr && "Context or backend not initialized! Did you call ImGui_ImplOpenGL2_Init()?");
  121. IM_UNUSED(bd);
  122. }
  123. static void ImGui_ImplOpenGL2_SetupRenderState(ImDrawData* draw_data, int fb_width, int fb_height)
  124. {
  125. // Setup render state: alpha-blending enabled, no face culling, no depth testing, scissor enabled, vertex/texcoord/color pointers, polygon fill.
  126. glEnable(GL_BLEND);
  127. glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
  128. //glBlendFuncSeparate(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA, GL_ONE, GL_ONE_MINUS_SRC_ALPHA); // In order to composite our output buffer we need to preserve alpha
  129. glDisable(GL_CULL_FACE);
  130. glDisable(GL_DEPTH_TEST);
  131. glDisable(GL_STENCIL_TEST);
  132. glDisable(GL_LIGHTING);
  133. glDisable(GL_COLOR_MATERIAL);
  134. glEnable(GL_SCISSOR_TEST);
  135. glEnableClientState(GL_VERTEX_ARRAY);
  136. glEnableClientState(GL_TEXTURE_COORD_ARRAY);
  137. glEnableClientState(GL_COLOR_ARRAY);
  138. glDisableClientState(GL_NORMAL_ARRAY);
  139. glEnable(GL_TEXTURE_2D);
  140. glPolygonMode(GL_FRONT_AND_BACK, GL_FILL);
  141. glShadeModel(GL_SMOOTH);
  142. glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE);
  143. // If you are using this code with non-legacy OpenGL header/contexts (which you should not, prefer using imgui_impl_opengl3.cpp!!),
  144. // you may need to backup/reset/restore other state, e.g. for current shader using the commented lines below.
  145. // (DO NOT MODIFY THIS FILE! Add the code in your calling function)
  146. // GLint last_program;
  147. // glGetIntegerv(GL_CURRENT_PROGRAM, &last_program);
  148. // glUseProgram(0);
  149. // ImGui_ImplOpenGL2_RenderDrawData(...);
  150. // glUseProgram(last_program)
  151. // There are potentially many more states you could need to clear/setup that we can't access from default headers.
  152. // e.g. glBindBuffer(GL_ARRAY_BUFFER, 0), glDisable(GL_TEXTURE_CUBE_MAP).
  153. // Setup viewport, orthographic projection matrix
  154. // Our visible imgui space lies from draw_data->DisplayPos (top left) to draw_data->DisplayPos+data_data->DisplaySize (bottom right). DisplayPos is (0,0) for single viewport apps.
  155. GL_CALL(glViewport(0, 0, (GLsizei)fb_width, (GLsizei)fb_height));
  156. glMatrixMode(GL_PROJECTION);
  157. glPushMatrix();
  158. glLoadIdentity();
  159. glOrtho(draw_data->DisplayPos.x, draw_data->DisplayPos.x + draw_data->DisplaySize.x, draw_data->DisplayPos.y + draw_data->DisplaySize.y, draw_data->DisplayPos.y, -1.0f, +1.0f);
  160. glMatrixMode(GL_MODELVIEW);
  161. glPushMatrix();
  162. glLoadIdentity();
  163. }
  164. // OpenGL2 Render function.
  165. // Note that this implementation is little overcomplicated because we are saving/setting up/restoring every OpenGL state explicitly.
  166. // This is in order to be able to run within an OpenGL engine that doesn't do so.
  167. void ImGui_ImplOpenGL2_RenderDrawData(ImDrawData* draw_data)
  168. {
  169. // Avoid rendering when minimized, scale coordinates for retina displays (screen coordinates != framebuffer coordinates)
  170. int fb_width = (int)(draw_data->DisplaySize.x * draw_data->FramebufferScale.x);
  171. int fb_height = (int)(draw_data->DisplaySize.y * draw_data->FramebufferScale.y);
  172. if (fb_width == 0 || fb_height == 0)
  173. return;
  174. // Catch up with texture updates. Most of the times, the list will have 1 element with an OK status, aka nothing to do.
  175. // (This almost always points to ImGui::GetPlatformIO().Textures[] but is part of ImDrawData to allow overriding or disabling texture updates).
  176. if (draw_data->Textures != nullptr)
  177. for (ImTextureData* tex : *draw_data->Textures)
  178. if (tex->Status != ImTextureStatus_OK)
  179. ImGui_ImplOpenGL2_UpdateTexture(tex);
  180. // Backup GL state
  181. GLint last_texture; glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture);
  182. GLint last_polygon_mode[2]; glGetIntegerv(GL_POLYGON_MODE, last_polygon_mode);
  183. GLint last_viewport[4]; glGetIntegerv(GL_VIEWPORT, last_viewport);
  184. GLint last_scissor_box[4]; glGetIntegerv(GL_SCISSOR_BOX, last_scissor_box);
  185. GLint last_shade_model; glGetIntegerv(GL_SHADE_MODEL, &last_shade_model);
  186. GLint last_tex_env_mode; glGetTexEnviv(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, &last_tex_env_mode);
  187. glPushAttrib(GL_ENABLE_BIT | GL_COLOR_BUFFER_BIT | GL_TRANSFORM_BIT);
  188. // Setup desired GL state
  189. ImGui_ImplOpenGL2_SetupRenderState(draw_data, fb_width, fb_height);
  190. // Will project scissor/clipping rectangles into framebuffer space
  191. ImVec2 clip_off = draw_data->DisplayPos; // (0,0) unless using multi-viewports
  192. ImVec2 clip_scale = draw_data->FramebufferScale; // (1,1) unless using retina display which are often (2,2)
  193. // Render command lists
  194. for (int n = 0; n < draw_data->CmdListsCount; n++)
  195. {
  196. const ImDrawList* draw_list = draw_data->CmdLists[n];
  197. const ImDrawVert* vtx_buffer = draw_list->VtxBuffer.Data;
  198. const ImDrawIdx* idx_buffer = draw_list->IdxBuffer.Data;
  199. glVertexPointer(2, GL_FLOAT, sizeof(ImDrawVert), (const GLvoid*)((const char*)vtx_buffer + offsetof(ImDrawVert, pos)));
  200. glTexCoordPointer(2, GL_FLOAT, sizeof(ImDrawVert), (const GLvoid*)((const char*)vtx_buffer + offsetof(ImDrawVert, uv)));
  201. glColorPointer(4, GL_UNSIGNED_BYTE, sizeof(ImDrawVert), (const GLvoid*)((const char*)vtx_buffer + offsetof(ImDrawVert, col)));
  202. for (int cmd_i = 0; cmd_i < draw_list->CmdBuffer.Size; cmd_i++)
  203. {
  204. const ImDrawCmd* pcmd = &draw_list->CmdBuffer[cmd_i];
  205. if (pcmd->UserCallback)
  206. {
  207. // User callback, registered via ImDrawList::AddCallback()
  208. // (ImDrawCallback_ResetRenderState is a special callback value used by the user to request the renderer to reset render state.)
  209. if (pcmd->UserCallback == ImDrawCallback_ResetRenderState)
  210. ImGui_ImplOpenGL2_SetupRenderState(draw_data, fb_width, fb_height);
  211. else
  212. pcmd->UserCallback(draw_list, pcmd);
  213. }
  214. else
  215. {
  216. // Project scissor/clipping rectangles into framebuffer space
  217. ImVec2 clip_min((pcmd->ClipRect.x - clip_off.x) * clip_scale.x, (pcmd->ClipRect.y - clip_off.y) * clip_scale.y);
  218. ImVec2 clip_max((pcmd->ClipRect.z - clip_off.x) * clip_scale.x, (pcmd->ClipRect.w - clip_off.y) * clip_scale.y);
  219. if (clip_max.x <= clip_min.x || clip_max.y <= clip_min.y)
  220. continue;
  221. // Apply scissor/clipping rectangle (Y is inverted in OpenGL)
  222. glScissor((int)clip_min.x, (int)((float)fb_height - clip_max.y), (int)(clip_max.x - clip_min.x), (int)(clip_max.y - clip_min.y));
  223. // Bind texture, Draw
  224. glBindTexture(GL_TEXTURE_2D, (GLuint)(intptr_t)pcmd->GetTexID());
  225. glDrawElements(GL_TRIANGLES, (GLsizei)pcmd->ElemCount, sizeof(ImDrawIdx) == 2 ? GL_UNSIGNED_SHORT : GL_UNSIGNED_INT, idx_buffer + pcmd->IdxOffset);
  226. }
  227. }
  228. }
  229. // Restore modified GL state
  230. glDisableClientState(GL_COLOR_ARRAY);
  231. glDisableClientState(GL_TEXTURE_COORD_ARRAY);
  232. glDisableClientState(GL_VERTEX_ARRAY);
  233. glBindTexture(GL_TEXTURE_2D, (GLuint)last_texture);
  234. glMatrixMode(GL_MODELVIEW);
  235. glPopMatrix();
  236. glMatrixMode(GL_PROJECTION);
  237. glPopMatrix();
  238. glPopAttrib();
  239. glPolygonMode(GL_FRONT, (GLenum)last_polygon_mode[0]); glPolygonMode(GL_BACK, (GLenum)last_polygon_mode[1]);
  240. glViewport(last_viewport[0], last_viewport[1], (GLsizei)last_viewport[2], (GLsizei)last_viewport[3]);
  241. glScissor(last_scissor_box[0], last_scissor_box[1], (GLsizei)last_scissor_box[2], (GLsizei)last_scissor_box[3]);
  242. glShadeModel(last_shade_model);
  243. glTexEnvi(GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, last_tex_env_mode);
  244. }
  245. void ImGui_ImplOpenGL2_UpdateTexture(ImTextureData* tex)
  246. {
  247. if (tex->Status == ImTextureStatus_WantCreate)
  248. {
  249. // Create and upload new texture to graphics system
  250. //IMGUI_DEBUG_LOG("UpdateTexture #%03d: WantCreate %dx%d\n", tex->UniqueID, tex->Width, tex->Height);
  251. IM_ASSERT(tex->TexID == 0 && tex->BackendUserData == nullptr);
  252. IM_ASSERT(tex->Format == ImTextureFormat_RGBA32);
  253. const void* pixels = tex->GetPixels();
  254. GLuint gl_texture_id = 0;
  255. // Upload texture to graphics system
  256. // (Bilinear sampling is required by default. Set 'io.Fonts->Flags |= ImFontAtlasFlags_NoBakedLines' or 'style.AntiAliasedLinesUseTex = false' to allow point/nearest sampling)
  257. GLint last_texture;
  258. GL_CALL(glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture));
  259. GL_CALL(glGenTextures(1, &gl_texture_id));
  260. GL_CALL(glBindTexture(GL_TEXTURE_2D, gl_texture_id));
  261. GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR));
  262. GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR));
  263. GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP));
  264. GL_CALL(glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP));
  265. GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH, 0));
  266. GL_CALL(glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tex->Width, tex->Height, 0, GL_RGBA, GL_UNSIGNED_BYTE, pixels));
  267. // Store identifiers
  268. tex->SetTexID((ImTextureID)(intptr_t)gl_texture_id);
  269. tex->SetStatus(ImTextureStatus_OK);
  270. // Restore state
  271. GL_CALL(glBindTexture(GL_TEXTURE_2D, last_texture));
  272. }
  273. else if (tex->Status == ImTextureStatus_WantUpdates)
  274. {
  275. // Update selected blocks. We only ever write to textures regions which have never been used before!
  276. // This backend choose to use tex->Updates[] but you can use tex->UpdateRect to upload a single region.
  277. GLint last_texture;
  278. GL_CALL(glGetIntegerv(GL_TEXTURE_BINDING_2D, &last_texture));
  279. GLuint gl_tex_id = (GLuint)(intptr_t)tex->TexID;
  280. GL_CALL(glBindTexture(GL_TEXTURE_2D, gl_tex_id));
  281. GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH, tex->Width));
  282. for (ImTextureRect& r : tex->Updates)
  283. GL_CALL(glTexSubImage2D(GL_TEXTURE_2D, 0, r.x, r.y, r.w, r.h, GL_RGBA, GL_UNSIGNED_BYTE, tex->GetPixelsAt(r.x, r.y)));
  284. GL_CALL(glPixelStorei(GL_UNPACK_ROW_LENGTH, 0));
  285. GL_CALL(glBindTexture(GL_TEXTURE_2D, last_texture)); // Restore state
  286. tex->SetStatus(ImTextureStatus_OK);
  287. }
  288. else if (tex->Status == ImTextureStatus_WantDestroy)
  289. {
  290. GLuint gl_tex_id = (GLuint)(intptr_t)tex->TexID;
  291. glDeleteTextures(1, &gl_tex_id);
  292. // Clear identifiers and mark as destroyed (in order to allow e.g. calling InvalidateDeviceObjects while running)
  293. tex->SetTexID(ImTextureID_Invalid);
  294. tex->SetStatus(ImTextureStatus_Destroyed);
  295. }
  296. }
  297. bool ImGui_ImplOpenGL2_CreateDeviceObjects()
  298. {
  299. return true;
  300. }
  301. void ImGui_ImplOpenGL2_DestroyDeviceObjects()
  302. {
  303. for (ImTextureData* tex : ImGui::GetPlatformIO().Textures)
  304. if (tex->RefCount == 1)
  305. {
  306. tex->SetStatus(ImTextureStatus_WantDestroy);
  307. ImGui_ImplOpenGL2_UpdateTexture(tex);
  308. }
  309. }
  310. //--------------------------------------------------------------------------------------------------------
  311. // MULTI-VIEWPORT / PLATFORM INTERFACE SUPPORT
  312. // This is an _advanced_ and _optional_ feature, allowing the backend to create and handle multiple viewports simultaneously.
  313. // If you are new to dear imgui or creating a new binding for dear imgui, it is recommended that you completely ignore this section first..
  314. //--------------------------------------------------------------------------------------------------------
  315. static void ImGui_ImplOpenGL2_RenderWindow(ImGuiViewport* viewport, void*)
  316. {
  317. if (!(viewport->Flags & ImGuiViewportFlags_NoRendererClear))
  318. {
  319. ImVec4 clear_color = ImVec4(0.0f, 0.0f, 0.0f, 1.0f);
  320. glClearColor(clear_color.x, clear_color.y, clear_color.z, clear_color.w);
  321. glClear(GL_COLOR_BUFFER_BIT);
  322. }
  323. ImGui_ImplOpenGL2_RenderDrawData(viewport->DrawData);
  324. }
  325. static void ImGui_ImplOpenGL2_InitMultiViewportSupport()
  326. {
  327. ImGuiPlatformIO& platform_io = ImGui::GetPlatformIO();
  328. platform_io.Renderer_RenderWindow = ImGui_ImplOpenGL2_RenderWindow;
  329. }
  330. static void ImGui_ImplOpenGL2_ShutdownMultiViewportSupport()
  331. {
  332. ImGui::DestroyPlatformWindows();
  333. }
  334. //-----------------------------------------------------------------------------
  335. #if defined(__clang__)
  336. #pragma clang diagnostic pop
  337. #endif
  338. #endif // #ifndef IMGUI_DISABLE