123456789101112131415 |
- diff --git a/imgui.h b/imgui.h
- index 78baa1b7bb10..6b7dd2b64b5c 100644
- --- a/imgui.h
- +++ b/imgui.h
- @@ -3329,8 +3329,8 @@ struct ImDrawList
-
- // Obsolete names
- #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS
- - IMGUI_API void PushTextureID(ImTextureRef tex_ref) { PushTexture(tex_ref); } // RENAMED in 1.92.x
- - IMGUI_API void PopTextureID() { PopTexture(); } // RENAMED in 1.92.x
- + inline void PushTextureID(ImTextureRef tex_ref) { PushTexture(tex_ref); } // RENAMED in 1.92.x
- + inline void PopTextureID() { PopTexture(); } // RENAMED in 1.92.x
- #endif
- //inline void AddEllipse(const ImVec2& center, float radius_x, float radius_y, ImU32 col, float rot = 0.0f, int num_segments = 0, float thickness = 1.0f) { AddEllipse(center, ImVec2(radius_x, radius_y), col, rot, num_segments, thickness); } // OBSOLETED in 1.90.5 (Mar 2024)
- //inline void AddEllipseFilled(const ImVec2& center, float radius_x, float radius_y, ImU32 col, float rot = 0.0f, int num_segments = 0) { AddEllipseFilled(center, ImVec2(radius_x, radius_y), col, rot, num_segments); } // OBSOLETED in 1.90.5 (Mar 2024)
|