Home
last modified time | relevance | path

Searched refs:GlyphsList (Results 1 – 1 of 1) sorted by relevance

/external/mesa3d/src/imgui/
Dimgui_draw.cpp1761 … ImVector<int> GlyphsList; // Glyph codepoints list (flattened version of GlyphsMap) member
1870 src_tmp.GlyphsList.reserve(src_tmp.GlyphsCount); in ImFontAtlasBuildWithStbTruetype()
1871 UnpackBoolVectorToFlatIndexList(&src_tmp.GlyphsSet, &src_tmp.GlyphsList); in ImFontAtlasBuildWithStbTruetype()
1873 IM_ASSERT(src_tmp.GlyphsList.Size == src_tmp.GlyphsCount); in ImFontAtlasBuildWithStbTruetype()
1907 src_tmp.PackRange.array_of_unicode_codepoints = src_tmp.GlyphsList.Data; in ImFontAtlasBuildWithStbTruetype()
1908 src_tmp.PackRange.num_chars = src_tmp.GlyphsList.Size; in ImFontAtlasBuildWithStbTruetype()
1916 for (int glyph_i = 0; glyph_i < src_tmp.GlyphsList.Size; glyph_i++) in ImFontAtlasBuildWithStbTruetype()
1919 …nst int glyph_index_in_font = stbtt_FindGlyphIndex(&src_tmp.FontInfo, src_tmp.GlyphsList[glyph_i]); in ImFontAtlasBuildWithStbTruetype()
2018 const int codepoint = src_tmp.GlyphsList[glyph_i]; in ImFontAtlasBuildWithStbTruetype()