Minor formatting tweaks, comments

This commit is contained in:
ocornut
2015-02-11 18:14:39 +00:00
parent a597664672
commit d65e051a07
5 changed files with 18 additions and 16 deletions

View File

@ -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;