1 // 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.
3 #include "tools/fiddle/examples.h"
4 REG_FIDDLE(Canvas_clipRRect, 256, 128, false, 0) {
draw(SkCanvas * canvas)5 void draw(SkCanvas* canvas) {
6 canvas->clear(SK_ColorWHITE);
7 SkPaint paint;
8 paint.setAntiAlias(true);
9 paint.setColor(0x8055aaff);
10 SkRRect oval;
11 oval.setOval({10, 20, 90, 100});
12 canvas->clipRRect(oval, SkClipOp::kIntersect, true);
13 canvas->drawCircle(70, 100, 60, paint);
14 }
15 } // END FIDDLE
16