Lines Matching defs:glyphInfo
74 GlyphInfo glyphInfo;
75 int8_t result = GetGlyphInfo(fontId, glyphInfo);
83 idx = *(reinterpret_cast<uint16_t*>(glyphInfo.indexCache + offset));
89 offset = glyphInfo.glyphNodeSectionStart + (idx - 1) * sizeof(GlyphNode);
204 int8_t GlyphsFile::GetGlyphInfo(uint16_t fontId, GlyphInfo& glyphInfo)
234 glyphInfo.fontHeader = nullptr;
235 glyphInfo.fontId = fontBuilder->GetBitmapFontIdMax();
240 glyphInfo.fontId = fontId;
241 glyphInfo.fontHeader = fontHeaderCache_ + fontIdx;
242 glyphInfo.fontIndexSectionStart = fontIndexSectionStart_ + glyphInfo.fontHeader->indexOffset;
246 glyphInfo.glyphNodeSectionStart = glyphNodeSectionStart_ + size;
247 glyphInfo.bitMapSectionStart = bitMapSectionStart_ + glyphInfo.fontHeader->glyphOffset;
248 glyphInfo.indexCache = indexCache_ + glyphInfo.fontHeader->indexOffset;
277 GlyphInfo glyphInfo;
278 int8_t ret = GetGlyphInfo(fontId, glyphInfo);
283 return glyphInfo.fontHeader;
288 GlyphInfo glyphInfo;
289 int8_t ret = GetGlyphInfo(fontId, glyphInfo);
294 return glyphInfo.fontHeader->fontHeight;
304 GlyphInfo glyphInfo;
305 int8_t result = GetGlyphInfo(node.fontId, glyphInfo);
310 uint32_t tmpBitMapSectionStart = glyphInfo.bitMapSectionStart;