mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-16 00:54:19 +00:00
Minor formatting tweaks, comments
This commit is contained in:
parent
a597664672
commit
d65e051a07
5 changed files with 18 additions and 16 deletions
|
|
@ -956,6 +956,7 @@ struct ImGuiTextEditState
|
|||
static void RenderTextScrolledClipped(ImFont* font, float font_size, const char* text, ImVec2 pos_base, float width, float scroll_x);
|
||||
};
|
||||
|
||||
// Data saved in imgui.ini file
|
||||
struct ImGuiIniData
|
||||
{
|
||||
char* Name;
|
||||
|
|
@ -967,6 +968,7 @@ struct ImGuiIniData
|
|||
~ImGuiIniData() { if (Name) { ImGui::MemFree(Name); Name = NULL; } }
|
||||
};
|
||||
|
||||
// Main state for ImGui
|
||||
struct ImGuiState
|
||||
{
|
||||
bool Initialized;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue