Update rive-cpp to 2.0 version
[platform/core/uifw/rive-tizen.git] / submodule / skia / docs / examples / skcanvas_square.cpp
1 // 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"
4 REG_FIDDLE(skcanvas_square, 256, 256, false, 0) {
5 void draw(SkCanvas* canvas) {
6     canvas->save();
7     canvas->translate(SkIntToScalar(128), SkIntToScalar(128));
8     canvas->rotate(SkIntToScalar(45));
9     SkRect rect = SkRect::MakeXYWH(-90.5f, -90.5f, 181.0f, 181.0f);
10     SkPaint paint;
11     paint.setColor(SK_ColorBLUE);
12     canvas->drawRect(rect, paint);
13     canvas->restore();
14 }
15 }  // END FIDDLE