Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Functions
Path_conservativelyContainsRect.cpp File Reference
#include "tools/fiddle/examples.h"

Go to the source code of this file.

Functions

 REG_FIDDLE (Path_conservativelyContainsRect, 256, 140, false, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Path_conservativelyContainsRect  ,
256  ,
140  ,
false  ,
 
)

Definition at line 5 of file Path_conservativelyContainsRect.cpp.

5 {
6void draw(SkCanvas* canvas) {
8 path.addRoundRect({10, 20, 54, 120}, 10, 20);
9 SkRect tests[] = {
10 { 10, 40, 54, 80 },
11 { 25, 20, 39, 120 },
12 { 15, 25, 49, 115 },
13 { 13, 27, 51, 113 },
14 };
15 for (unsigned i = 0; i < std::size(tests); ++i) {
17 paint.setColor(SK_ColorRED);
18 canvas->drawPath(path, paint);
19 bool rectInPath = path.conservativelyContainsRect(tests[i]);
20 paint.setColor(rectInPath ? SK_ColorBLUE : SK_ColorBLACK);
21 canvas->drawRect(tests[i], paint);
22 canvas->translate(64, 0);
23 }
24}
25} // END FIDDLE
static BlurTest tests[]
Definition BlurTest.cpp:84
constexpr SkColor SK_ColorBLUE
Definition SkColor.h:135
constexpr SkColor SK_ColorRED
Definition SkColor.h:126
constexpr SkColor SK_ColorBLACK
Definition SkColor.h:103
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
void drawRect(const SkRect &rect, const SkPaint &paint)
void translate(SkScalar dx, SkScalar dy)
void drawPath(const SkPath &path, const SkPaint &paint)
const Paint & paint
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir path
Definition switches.h:57