Lines Matching refs:gCubics
69 const SkPoint gCubics[SkPatchUtils::kNumCtrlPts] = { variable
118 canvas->drawPatch(gCubics, nullptr, nullptr, modes[y], paint); in dopatch()
121 canvas->drawPatch(gCubics, colors, nullptr, modes[y], paint); in dopatch()
125 canvas->drawPatch(gCubics, nullptr, tex, modes[y], paint); in dopatch()
130 canvas->drawPatch(gCubics, colors, tex, modes[y], paint); in dopatch()
137 draw_control_points(canvas, gCubics); in dopatch()
172 canvas->drawPatch(gCubics, colors, nullptr, SkBlendMode::kModulate, paint);
177 path.moveTo(gCubics[0]);
178 path.cubicTo(gCubics[ 1], gCubics[ 2], gCubics[ 3]);
179 path.cubicTo(gCubics[ 4], gCubics[ 5], gCubics[ 6]);
180 path.cubicTo(gCubics[ 7], gCubics[ 8], gCubics[ 9]);
181 path.cubicTo(gCubics[10], gCubics[11], gCubics[ 0]);