MCPcopy Create free account
hub / github.com/defold/defold / FontGetGlyph

Function FontGetGlyph

engine/font/src/font.cpp:133–143  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

131}
132
133FontResult FontGetGlyph(HFont font, uint32_t codepoint, FontGlyphOptions* options, FontGlyph* glyph)
134{
135 uint32_t index = font->m_GetGlyphIndex(font, codepoint);
136 if (!index)
137 {
138 return FONT_RESULT_ERROR;
139 }
140 FontResult r = font->m_GetGlyph(font, index, options, glyph);
141 glyph->m_Codepoint = codepoint;
142 return r;
143}
144
145FontResult FontGetGlyphByIndex(HFont font, uint32_t glyph_index, FontGlyphOptions* options, FontGlyph* glyph)
146{

Callers 3

FontDebugFunction · 0.85
TextLayoutLegacyCreateFunction · 0.85
GetMaxCellSizeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected