| // Copyright 2019 Google LLC. |
| // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. |
| #include "tools/fiddle/examples.h" |
| // HASH=9303ffae45ddd0b0a1f93d816a1762f4 |
| REG_FIDDLE(Canvas_drawCircle_2, 256, 256, false, 0) { |
| void draw(SkCanvas* canvas) { |
| SkPaint paint; |
| paint.setAntiAlias(true); |
| canvas->drawCircle(128, 128, 90, paint); |
| paint.setColor(SK_ColorWHITE); |
| canvas->drawCircle({86, 86}, 20, paint); |
| canvas->drawCircle({160, 76}, 20, paint); |
| canvas->drawCircle({140, 150}, 35, paint); |
| } |
| } // END FIDDLE |