Searched refs:runGlyphs (Results 1 – 1 of 1) sorted by relevance
/external/skia/modules/skshaper/src/ |
D | SkShaper_coretext.cpp | 250 CFIndex runGlyphs = CTRunGetGlyphCount(run); in shape() local 254 SkAutoSTArray<4096, CGSize> advances(runGlyphs); in shape() 255 CTRunGetAdvances(run, {0, runGlyphs}, advances.data()); in shape() 257 for (CFIndex k = 0; k < runGlyphs; ++k) { in shape() 269 (size_t)runGlyphs, in shape() 283 CFIndex runGlyphs = info.glyphCount; in shape() local 286 CTRunGetGlyphs(run, {0, runGlyphs}, buffer.glyphs); in shape() 288 SkAutoSTArray<4096, CGPoint> positions(runGlyphs); in shape() 289 CTRunGetPositions(run, {0, runGlyphs}, positions.data()); in shape() 292 indices.reset(runGlyphs); in shape() [all …]
|