Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Canvas_drawIRect.cpp
Go to the documentation of this file.
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.
4// HASH=d3d8ca584134560750b1efa4a4c6e138
5REG_FIDDLE(Canvas_drawIRect, 256, 256, false, 0) {
6void draw(SkCanvas* canvas) {
7 SkIRect rect = { 64, 48, 192, 160 };
9 paint.setAntiAlias(true);
11 paint.setStrokeWidth(20);
12 paint.setStrokeJoin(SkPaint::kRound_Join);
14 paint.setColor(color);
15 canvas->drawIRect(rect, paint);
16 canvas->rotate(30, 128, 128);
17 }
18}
19} // END FIDDLE
SkColor4f color
constexpr SkColor SK_ColorYELLOW
Definition SkColor.h:139
constexpr SkColor SK_ColorMAGENTA
Definition SkColor.h:147
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawIRect(const SkIRect &rect, const SkPaint &paint)
Definition SkCanvas.h:1358
void rotate(SkScalar degrees)
@ kStroke_Style
set to stroke geometry
Definition SkPaint.h:194
@ kRound_Join
adds circle
Definition SkPaint.h:360
const Paint & paint
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60