Home | History | Annotate | Download | only in core

Lines Matching refs:TileProc

14 template <typename TileProc, bool tryDecal>
30 *xy++ = TileProc::Y(s, SkFractionalIntToFixed(fx), maxY);
49 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
50 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
56 a = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
57 b = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
66 *xx++ = TileProc::X(s, SkFractionalIntToFixed(fx), maxX); fx += dx;
75 template <typename TileProc>
96 *xy++ = (TileProc::Y(s, SkFractionalIntToFixed(fy), maxY) << 16) |
97 TileProc::X(s, SkFractionalIntToFixed(fx), maxX);
102 template <typename TileProc>
117 *xy++ = (TileProc::Y(s, srcXY[1], maxY) << 16) |
118 TileProc::X(s, srcXY[0], maxX);