How can I change the origin of a Canvas to the lower-left corner instead of the default top-left corner?
void draw(SkCanvas* canvas) {
SkPaint p;
p.setColor(SK_ColorRED);
p.setAntiAlias(true);
p.setStyle(SkPaint::kStroke_Style);
p.setStrokeWidth(10);
canvas->drawLine(200, 20, 100, 100, p);
}