Home | History | Annotate | Download | only in gm

Lines Matching defs:glyphCount

41         int glyphCount = fGlyphs.count();
44 run = &builder.allocRun(p, glyphCount, 10, 10, nullptr);
45 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t));
47 run = &builder.allocRunPosH(p, glyphCount, 80, nullptr);
48 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t));
49 for (int i = 0; i < glyphCount; ++i) {
53 run = &builder.allocRunPos(p, glyphCount, nullptr);
54 memcpy(run->glyphs, fGlyphs.begin(), glyphCount * sizeof(uint16_t));
55 for (int i = 0; i < glyphCount; ++i) {
57 run->pos[i * 2 + 1] = 150 + 5 * sinf((float)i * 8 / glyphCount);