blob: b931aad4e14ce016a43457cef35edfe915e8d869 [file] [log] [blame]
Hal Canary6c8422c2020-01-10 15:22:09 -05001// Copyright 2020 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"
4REG_FIDDLE(skpaint_bitmap_shader, 256, 256, false, 5) {
5void draw(SkCanvas* canvas) {
6 canvas->clear(SK_ColorWHITE);
7 SkMatrix matrix;
8 matrix.setScale(0.75f, 0.75f);
9 matrix.preRotate(30.0f);
10 SkPaint paint;
11 paint.setShader(image->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat, &matrix));
12 canvas->drawPaint(paint);
13}
14} // END FIDDLE