Skip to content

Commit

Permalink
Comment (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed Mar 4, 2016
1 parent 3db4090 commit 6346690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui.h
Original file line number Diff line number Diff line change
Expand Up @@ -1256,7 +1256,7 @@ struct ImFontAtlas
int TexHeight; // Texture height calculated during Build().
int TexDesiredWidth; // Texture width desired by user before Build(). Must be a power-of-two. If have many glyphs your graphics API have texture size restrictions you may want to increase texture width to decrease height.
ImVec2 TexUvWhitePixel; // Texture coordinates to a white pixel (part of the TexExtraData block)
ImVector<ImFont*> Fonts;
ImVector<ImFont*> Fonts; // Hold all the fonts returned by AddFont*. Fonts[0] is the default font upon calling ImGui::NewFrame(), use ImGui::PushFont()/PopFont() to change the current font.

// Private
ImVector<ImFontConfig> ConfigData; // Internal data
Expand Down

0 comments on commit 6346690

Please sign in to comment.