blob: 92b3f675e25ff49528eab56fc0d4987035afb025 [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,
16 &matrix));
17 canvas->drawPaint(paint);
18}
19} // END FIDDLE