blob: 0540f7e1ca2efc98b3d03e0cf00287c682e62f8b [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(UnicornPoop, 256, 256, false, 0) {
5void draw(SkCanvas* canvas) {
6 SkPaint p;
7 p.setAntiAlias(true);
8 p.setStyle(SkPaint::kStroke_Style);
9 p.setStrokeWidth(10);
10
11 for (int r = 0; r <= 255; r += 10) {
12 for (int g = 0; g <= 255; g += 10) {
13 for (int b = 0; b <= 255; b += 10) {
14 p.setColor(SkColorSetRGB(r, g, b));
15 canvas->drawRect(SkRect::MakeXYWH(r, g, b, 1), p);
16 }
17 }
18 }
19}
20} // END FIDDLE