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
//---- Pack colors to BGRA8 instead of RGBA8 (to avoid converting from one to another)
88
86
//#define IMGUI_USE_BGRA_PACKED_COLOR
89
87
90
-
//---- Use 32-bit for ImWchar (default is 16-bit) to support Unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...)
88
+
//---- Use 32-bit for ImWchar (default is 16-bit) to support unicode planes 1-16. (e.g. point beyond 0xFFFF like emoticons, dingbats, symbols, shapes, ancient languages, etc...)
91
89
//#define IMGUI_USE_WCHAR32
92
90
93
91
//---- Avoid multiple STB libraries implementations, or redefine path/filenames to prioritize another version
Copy file name to clipboardExpand all lines: imgui/src/imgui/imgui_impl_opengl3.cpp
+20-29Lines changed: 20 additions & 29 deletions
Original file line number
Diff line number
Diff line change
@@ -23,9 +23,8 @@
23
23
24
24
// CHANGELOG
25
25
// (minor and older changes stripped away, please see git history for details)
26
-
// 2024-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
27
-
// 2024-01-09: OpenGL: Update GL3W based imgui_impl_opengl3_loader.h to load "libGL.so" and variants, fixing regression on distros missing a symlink.
28
-
// 2023-11-08: OpenGL: Update GL3W based imgui_impl_opengl3_loader.h to load "libGL.so" instead of "libGL.so.1", accommodating for NetBSD systems having only "libGL.so.3" available. (#6983)
26
+
// 2023-XX-XX: Platform: Added support for multiple windows via the ImGuiPlatformIO interface.
27
+
// 2023-11-08: OpenGL: Update GL3W based imgui_impl_opengl3_loader.h to load "libGL.so" instead of "libGL.so.1", accomodating for NetBSD systems having only "libGL.so.3" available. (#6983)
29
28
// 2023-10-05: OpenGL: Rename symbols in our internal loader so that LTO compilation with another copy of gl3w is possible. (#6875, #6668, #4445)
30
29
// 2023-06-20: OpenGL: Fixed erroneous use glGetIntegerv(GL_CONTEXT_PROFILE_MASK) on contexts lower than 3.2. (#6539, #6333)
31
30
// 2023-05-09: OpenGL: Support for glBindSampler() backup/restore on ES3. (#6375)
0 commit comments