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// HASH=24b9cf7e6f9a08394e1e07413bd8733a
5REG_FIDDLE(Canvas_setMatrix, 256, 128, false, 0) {
6void draw(SkCanvas* canvas) {
7    SkPaint paint;
8    SkFont font;
9    canvas->scale(4, 6);
10    canvas->drawString("truth", 2, 10, font, paint);
11    SkMatrix matrix;
12    matrix.setScale(2.8f, 6);
13    canvas->setMatrix(matrix);
14    canvas->drawString("consequences", 2, 20, font, paint);
15}
16}  // END FIDDLE
17