blob: d19c2c33366f1725a6276bbed24e6b19514713fa [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=71fc6c069c377d808799f2453edabaf5
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Path_FillType_a, 256, 100, false, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkPath path;
Mike Reed30bc5272019-11-22 18:34:02 +00008 path.addRect({10, 10, 30, 30}, SkPathDirection::kCW);
9 path.addRect({20, 20, 40, 40}, SkPathDirection::kCW);
10 path.addRect({10, 60, 30, 80}, SkPathDirection::kCW);
11 path.addRect({20, 70, 40, 90}, SkPathDirection::kCCW);
Hal Canary87515122019-03-15 14:22:51 -040012 SkPaint strokePaint;
13 strokePaint.setStyle(SkPaint::kStroke_Style);
14 SkRect clipRect = {0, 0, 51, 100};
15 canvas->drawPath(path, strokePaint);
16 SkPaint fillPaint;
Mike Reed7d34dc72019-11-26 12:17:17 -050017 for (auto fillType : { SkPathFillType::kWinding, SkPathFillType::kEvenOdd,
18 SkPathFillType::kInverseWinding, SkPathFillType::kInverseEvenOdd } ) {
Hal Canary87515122019-03-15 14:22:51 -040019 canvas->translate(51, 0);
20 canvas->save();
21 canvas->clipRect(clipRect);
22 path.setFillType(fillType);
23 canvas->drawPath(path, fillPaint);
24 canvas->restore();
25 }
26}
27} // END FIDDLE