Searched defs:xyIndex (Results 1 - 1 of 1) sorted by relevance

/external/skia/src/core/
H A DSkPaint.cpp823 // xyIndex is 0 for fAdvanceX or 1 for fAdvanceY
824 static SkFixed advance(const SkGlyph& glyph, int xyIndex) { argument
825 SkASSERT(0 == xyIndex || 1 == xyIndex);
826 return (&glyph.fAdvanceX)[xyIndex];
843 int xyIndex; local
846 xyIndex = 1;
849 xyIndex = 0;
859 Sk48Dot16 x = advance(*g, xyIndex);
869 x += SkAutoKern_AdjustF(rsb, g->fLsbDelta) + advance(*g, xyIndex);
967 const int xyIndex = paint.isVerticalText() ? 1 : 0; local
1090 const int xyIndex = paint.isVerticalText() ? 1 : 0; local
[all...]

Completed in 51 milliseconds