Skip to content

Commit 914fbcf

Browse files
committed
Fonts: removed unnecessary const qualifier from ImFont::FindGlyph()
Amend 0bde57c
1 parent 4f1d380 commit 914fbcf

File tree

3 files changed

+12
-10
lines changed

3 files changed

+12
-10
lines changed

imgui.h

+9-7
Original file line numberDiff line numberDiff line change
@@ -3412,6 +3412,7 @@ struct ImFontAtlas
34123412
// Members
34133413
//-------------------------------------------
34143414

3415+
// Input
34153416
ImFontAtlasFlags Flags; // Build flags (see ImFontAtlasFlags_)
34163417
ImTextureID TexID; // User data to refer to the texture once it has been uploaded to user's graphic systems. It is passed back to you during rendering via the ImDrawCmd structure.
34173418
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.
@@ -3443,8 +3444,8 @@ struct ImFontAtlas
34433444
int PackIdLines; // Custom texture rectangle ID for baked anti-aliased lines
34443445

34453446
// [Obsolete]
3446-
//typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+
3447-
//typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+
3447+
//typedef ImFontAtlasCustomRect CustomRect; // OBSOLETED in 1.72+
3448+
//typedef ImFontGlyphRangesBuilder GlyphRangesBuilder; // OBSOLETED in 1.67+
34483449
};
34493450

34503451
// Font runtime data and rendering
@@ -3459,7 +3460,7 @@ struct ImFont
34593460
// [Internal] Members: Hot ~28/40 bytes (for RenderText loop)
34603461
ImVector<ImU16> IndexLookup; // 12-16 // out // Sparse. Index glyphs by Unicode code-point.
34613462
ImVector<ImFontGlyph> Glyphs; // 12-16 // out // All glyphs.
3462-
const ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
3463+
ImFontGlyph* FallbackGlyph; // 4-8 // out // = FindGlyph(FontFallbackChar)
34633464

34643465
// [Internal] Members: Cold ~32/40 bytes
34653466
// Conceptually ConfigData[] is the list of font sources merged to create this font.
@@ -3480,12 +3481,13 @@ struct ImFont
34803481
// Methods
34813482
IMGUI_API ImFont();
34823483
IMGUI_API ~ImFont();
3483-
IMGUI_API const ImFontGlyph*FindGlyph(ImWchar c);
3484-
IMGUI_API const ImFontGlyph*FindGlyphNoFallback(ImWchar c);
3484+
IMGUI_API ImFontGlyph* FindGlyph(ImWchar c);
3485+
IMGUI_API ImFontGlyph* FindGlyphNoFallback(ImWchar c);
34853486
float GetCharAdvance(ImWchar c) { return ((int)c < IndexAdvanceX.Size) ? IndexAdvanceX[(int)c] : FallbackAdvanceX; }
34863487
bool IsLoaded() const { return ContainerAtlas != NULL; }
34873488
const char* GetDebugName() const { return ConfigData ? ConfigData->Name : "<unknown>"; }
34883489

3490+
// [Internal] Don't use!
34893491
// 'max_width' stops rendering after a certain width (could be turned into a 2d size). FLT_MAX to disable.
34903492
// 'wrap_width' enable automatic word-wrapping across multiple lines to fit into given width. 0.0f to disable.
34913493
IMGUI_API ImVec2 CalcTextSizeA(float size, float max_width, float wrap_width, const char* text_begin, const char* text_end = NULL, const char** remaining = NULL); // utf8
@@ -3552,7 +3554,7 @@ struct ImGuiPlatformIO
35523554
IMGUI_API ImGuiPlatformIO();
35533555

35543556
//------------------------------------------------------------------
3555-
// Interface with OS and Platform backend
3557+
// Input - Interface with OS and Platform backend (most common stuff)
35563558
//------------------------------------------------------------------
35573559

35583560
// Optional: Access OS clipboard
@@ -3577,7 +3579,7 @@ struct ImGuiPlatformIO
35773579
ImWchar Platform_LocaleDecimalPoint; // '.'
35783580

35793581
//------------------------------------------------------------------
3580-
// Interface with Renderer Backend
3582+
// Input - Interface with Renderer Backend
35813583
//------------------------------------------------------------------
35823584

35833585
// Written by some backends during ImGui_ImplXXXX_RenderDrawData() call to point backend_specific ImGui_ImplXXXX_RenderState* structure.

imgui_draw.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -3903,7 +3903,7 @@ void ImFont::AddRemapChar(ImWchar dst, ImWchar src, bool overwrite_dst)
39033903
}
39043904

39053905
// Find glyph, return fallback if missing
3906-
const ImFontGlyph* ImFont::FindGlyph(ImWchar c)
3906+
ImFontGlyph* ImFont::FindGlyph(ImWchar c)
39073907
{
39083908
if (c >= (size_t)IndexLookup.Size)
39093909
return FallbackGlyph;
@@ -3913,7 +3913,7 @@ const ImFontGlyph* ImFont::FindGlyph(ImWchar c)
39133913
return &Glyphs.Data[i];
39143914
}
39153915

3916-
const ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c)
3916+
ImFontGlyph* ImFont::FindGlyphNoFallback(ImWchar c)
39173917
{
39183918
if (c >= (size_t)IndexLookup.Size)
39193919
return NULL;

imgui_widgets.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -4252,7 +4252,7 @@ void ImGui::PushPasswordFont()
42524252
ImGuiContext& g = *GImGui;
42534253
ImFont* in_font = g.Font;
42544254
ImFont* out_font = &g.InputTextPasswordFont;
4255-
const ImFontGlyph* glyph = in_font->FindGlyph('*');
4255+
ImFontGlyph* glyph = in_font->FindGlyph('*');
42564256
out_font->FontSize = in_font->FontSize;
42574257
out_font->Scale = in_font->Scale;
42584258
out_font->Ascent = in_font->Ascent;

0 commit comments

Comments
 (0)