1 /*
2  * Copyright 2015 Google Inc.
3  *
4  * Use of this source code is governed by a BSD-style license that can be
5  * found in the LICENSE file.
6  */
7 
8 // This is an example of the translation unit that needs to be
9 // assembled by the fiddler program to compile into a fiddle: an
10 // implementation of the GetDrawOptions() and draw() functions.
11 
12 #include "fiddle_main.h"
GetDrawOptions()13 DrawOptions GetDrawOptions() {
14     // path *should* be absolute.
15     static const char path[] = "../../resources/color_wheel.png";
16     return DrawOptions(256, 256, true, true, true, true, path);
17 }
draw(SkCanvas * canvas)18 void draw(SkCanvas* canvas) {
19     canvas->clear(SK_ColorWHITE);
20     SkMatrix matrix;
21     matrix.setScale(0.75f, 0.75f);
22     matrix.preRotate(30.0f);
23     SkAutoTUnref<SkShader> shader(
24             image->newShader(SkShader::kRepeat_TileMode,
25                              SkShader::kRepeat_TileMode,
26                              &matrix));
27     SkPaint paint;
28     paint.setShader(shader);
29     canvas->drawPaint(paint);
30 }
31