mirror of
https://github.com/ocornut/imgui.git
synced 2025-04-04 21:15:09 +00:00
WIP - Fonts: awkwardly alias old TexID name to TexRef using an union (may backtrack and just keep old name)
This commit is contained in:
parent
650b552be9
commit
83f2b3f193
1 changed files with 3 additions and 2 deletions
5
imgui.h
5
imgui.h
|
@ -3724,9 +3724,10 @@ struct ImFontAtlas
|
|||
void* UserData; // Store your own atlas related user-data (if e.g. you have multiple font atlas).
|
||||
|
||||
// Output
|
||||
ImTextureRef TexRef; // Current texture identifier == TexData->GetTexRef().
|
||||
#ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
|
||||
ImTextureRef& TexID = TexRef; // RENAMED in 1.92.x
|
||||
union { ImTextureRef TexRef; ImTextureRef TexID; }; // Current texture identifier == TexData->GetTexRef(). // RENAMED TexID to TexRef in 1.92.x
|
||||
#else
|
||||
ImTextureRef TexRef; // Current texture identifier == TexData->GetTexRef().
|
||||
#endif
|
||||
ImTextureData* TexData; // Current texture.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue