Flutter Engine
The Flutter Engine
flag_us_1960.cpp
Go to the documentation of this file.
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.
4REG_FIDDLE(flag_us_1960, 486, 256, false, 0) {
5void draw(SkCanvas* canvas) {
7 canvas->clear(SkColorSetARGB(0xFF, 0xFF, 0xFF, 0xFF));
8 canvas->scale(256.0f / 3900, 256.0f / 3900);
9 paint.setColor(SkColorSetARGB(0xFF, 0xB2, 0x22, 0x34));
10 for (int s = 0; s < 13; s += 2) {
11 canvas->drawIRect({0, s * 300, 7410, (s + 1) * 300}, paint);
12 }
13 paint.setColor(SkColorSetARGB(0xFF, 0x3C, 0x3B, 0x6E));
14 canvas->drawIRect({0, 0, 2964, 2100}, paint);
15 paint.setColor(SkColorSetARGB(0xFF, 0xFF, 0xFF, 0xFF));
16 paint.setAntiAlias(true);
17 SkPath star;
19 "M 0 -120 L 70.5342 97.0819 L -114.127 -37.082 L 114.127 -37.0821 L -70.5342 "
20 "97.0819 Z",
21 &star);
22 for (int x = 1; x < 12; ++x) {
23 for (int y = 1; y < 10; ++y) {
24 if ((x + y) % 2 == 0) {
25 SkAutoCanvasRestore autoCanvasRestore(canvas, true);
26 canvas->translate(x * 247, y * 210);
27 canvas->drawPath(star, paint);
28 }
29 }
30 }
31}
32} // END FIDDLE
static constexpr SkColor SkColorSetARGB(U8CPU a, U8CPU r, U8CPU g, U8CPU b)
Definition: SkColor.h:49
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition: aaclip.cpp:27
void translate(SkScalar dx, SkScalar dy)
Definition: SkCanvas.cpp:1278
void drawIRect(const SkIRect &rect, const SkPaint &paint)
Definition: SkCanvas.h:1358
void clear(SkColor color)
Definition: SkCanvas.h:1199
void drawPath(const SkPath &path, const SkPaint &paint)
Definition: SkCanvas.cpp:1747
void scale(SkScalar sx, SkScalar sy)
Definition: SkCanvas.cpp:1289
static bool FromSVGString(const char str[], SkPath *)
Definition: SkPath.h:59
const Paint & paint
Definition: color_source.cc:38
struct MyStruct s
REG_FIDDLE(flag_us_1960, 486, 256, false, 0)
Definition: flag_us_1960.cpp:4
double y
double x