1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

Misc: removed more redundant inline static linkage from imgui_internal.h. (#8813, #8682, #8358)

This commit is contained in:
gomkyung2 2025-07-17 18:56:12 +09:00 committed by ocornut
parent ea613e181c
commit 9c392896b7
2 changed files with 59 additions and 57 deletions

View file

@ -48,6 +48,8 @@ Other Changes:
selected), impacting code not checking for BeginChild() return value. (#8815)
- Error Handling: minor improvements to error handling for TableGetSortSpecs()
and TableSetBgColor() calls. (#1651, #8499)
- Misc: removed more redundant inline static linkage from imgui_internal.h to
facilitate using in C++ modules. (#8813, #8682, #8358) [@stripe2933]
- Backends: OpenGL2, OpenGL3: set GL_UNPACK_ALIGNMENT to 1 before updating
textures. (#8802) [@Daandelange]