blob: ce0f49192d2c301b68a58c7470f82556b7193e20 [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;
Mike Reedb86cd3d2020-12-10 14:55:43 -050011 paint.setShader(image->makeShader(SkTileMode::kRepeat, SkTileMode::kRepeat,
12 SkSamplingOptions(), matrix));
Hal Canary6c8422c2020-01-10 15:22:09 -050013 canvas->drawPaint(paint);
14}
15} // END FIDDLE