You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
538 B
16 lines
538 B
// Copyright 2019 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
#include "tools/fiddle/examples.h"
|
|
// HASH=412afffdf4682baa503a4e2e99201967
|
|
REG_FIDDLE(Canvas_resetMatrix, 256, 128, false, 0) {
|
|
void draw(SkCanvas* canvas) {
|
|
SkPaint paint;
|
|
SkFont font;
|
|
canvas->scale(4, 6);
|
|
canvas->drawString("truth", 2, 10, font, paint);
|
|
canvas->resetMatrix();
|
|
canvas->scale(2.8f, 6);
|
|
canvas->drawString("consequences", 2, 20, font, paint);
|
|
}
|
|
} // END FIDDLE
|