32 lines
912 B
C++
32 lines
912 B
C++
|
// Copyright 2020 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"
|
||
|
REG_FIDDLE_ANIMATED(shapes, 256, 256, false, 5, 0) {
|
||
|
void draw(SkCanvas* canvas) {
|
||
|
canvas->drawColor(SK_ColorWHITE);
|
||
|
|
||
|
SkPaint paint;
|
||
|
paint.setStyle(SkPaint::kFill_Style);
|
||
|
paint.setAntiAlias(true);
|
||
|
paint.setStrokeWidth(4);
|
||
|
paint.setColor(0xff4285F4);
|
||
|
|
||
|
SkRect rect = SkRect::MakeXYWH(10, 10, 100, 160);
|
||
|
canvas->drawRect(rect, paint);
|
||
|
|
||
|
SkRRect oval;
|
||
|
oval.setOval(rect);
|
||
|
oval.offset(40, 80);
|
||
|
paint.setColor(0xffDB4437);
|
||
|
canvas->drawRRect(oval, paint);
|
||
|
|
||
|
paint.setColor(0xff0F9D58);
|
||
|
canvas->drawCircle(180, 50, 25, paint);
|
||
|
|
||
|
rect.offset(80, 50);
|
||
|
paint.setColor(0xffF4B400);
|
||
|
paint.setStyle(SkPaint::kStroke_Style);
|
||
|
canvas->drawRoundRect(rect, 10, 10, paint);
|
||
|
}
|
||
|
} // END FIDDLE
|