You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: backends/imgui_impl_dx12.cpp
+22-27
Original file line number
Diff line number
Diff line change
@@ -22,6 +22,7 @@
22
22
// CHANGELOG
23
23
// (minor and older changes stripped away, please see git history for details)
24
24
// 2025-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
25
+
// 2025-01-15: DirectX12: Texture upload use the command queue provided in ImGui_ImplDX12_InitInfo instead of creating its own.
25
26
// 2024-12-09: DirectX12: Let user specifies the DepthStencilView format by setting ImGui_ImplDX12_InitInfo::DSVFormat.
26
27
// 2024-11-15: DirectX12: *BREAKING CHANGE* Changed ImGui_ImplDX12_Init() signature to take a ImGui_ImplDX12_InitInfo struct. Legacy ImGui_ImplDX12_Init() signature is still supported (will obsolete).
27
28
// 2024-11-15: DirectX12: *BREAKING CHANGE* User is now required to pass function pointers to allocate/free SRV Descriptors. We provide convenience legacy fields to pass a single descriptor, matching the old API, but upcoming features will want multiple.
Copy file name to clipboardexpand all lines: backends/imgui_impl_opengl2.cpp
+11-1
Original file line number
Diff line number
Diff line change
@@ -71,6 +71,16 @@
71
71
#include<GL/gl.h>
72
72
#endif
73
73
74
+
// [Debugging]
75
+
//#define IMGUI_IMPL_OPENGL_DEBUG
76
+
#ifdef IMGUI_IMPL_OPENGL_DEBUG
77
+
#include<stdio.h>
78
+
#defineGL_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
79
+
#else
80
+
#defineGL_CALL(_CALL) _CALL // Call without error check
81
+
#endif
82
+
83
+
// OpenGL data
74
84
structImGui_ImplOpenGL2_Data
75
85
{
76
86
GLuint FontTexture;
@@ -166,7 +176,7 @@ static void ImGui_ImplOpenGL2_SetupRenderState(ImDrawData* draw_data, int fb_wid
166
176
167
177
// Setup viewport, orthographic projection matrix
168
178
// 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.
0 commit comments