SkPaint filPaint;
filPaint.setAntiAlias(true);
filPaint.setStyle(SkPaint::kFill_Style);
float spaced = 200.0;
SkPoint testPts[6] = { SkPoint::Make(0, 0), SkPoint::Make(spaced, 0),
SkPoint::Make(0, spaced), SkPoint::Make(spaced, spaced),
SkPoint::Make(0, spaced * 2), SkPoint::Make(spaced, spaced * 2) };
SkColor colors[6] = { SK_ColorGREEN, SK_ColorRED, SK_ColorYELLOW, SK_ColorBLUE, SK_ColorGREEN, SK_ColorRED };
canvas->drawVertices(SkCanvas::kTriangleStrip_VertexMode, 6, &testPts[0], nullptr, &colors[0], nullptr, nullptr, 0, filPaint);