1 // Copyright 2019 Google LLC.
2 // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
3 #include "tools/fiddle/examples.h"
4 REG_FIDDLE(Canvas_setMatrix, 256, 128, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 SkPaint paint;
7 SkFont font = SkFont(fontMgr->matchFamilyStyle(nullptr, {}));
8 canvas->scale(4, 6);
9 canvas->drawString("truth", 2, 10, font, paint);
10 SkMatrix matrix;
11 matrix.setScale(2.8f, 6);
12 canvas->setMatrix(matrix);
13 canvas->drawString("consequences", 2, 20, font, paint);
14 }
15 } // END FIDDLE
16