blob: 3db8f6c5c6543782594731af04f4ac2f170b46ec [file] [log] [blame]
Hal Canary88000422020-01-15 11:51:12 -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_ANIMATED(skew_x_animated, 256, 256, false, 6, 6) {
5void draw(SkCanvas* canvas) {
6 canvas->clear(SK_ColorWHITE);
7 SkMatrix matrix;
8 matrix.setAll(2, 5 * cos(6.28318548 * frame), 0,
9 0, 2, 128,
10 0, 0, 1);
11 SkPaint paint;
12 paint.setShader(
13 image->makeShader(
14 SkTileMode::kRepeat,
15 SkTileMode::kRepeat,
Mike Reedb86cd3d2020-12-10 14:55:43 -050016 SkSamplingOptions(),
17 matrix));
Hal Canary88000422020-01-15 11:51:12 -050018 canvas->drawPaint(paint);
19}
20} // END FIDDLE