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

Go to the source code of this file.

Functions

 REG_FIDDLE (IRect_intersect, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( IRect_intersect  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file IRect_intersect.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 SkIRect leftRect = { 10, 40, 50, 80 };
8 SkIRect rightRect = { 30, 60, 70, 90 };
9 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no ");
10 SkDebugf("%d, %d, %d, %d\n", leftRect.left(), leftRect.top(),
11 leftRect.right(), leftRect.bottom());
12}
13} // END FIDDLE
void SK_SPI SkDebugf(const char format[],...) SK_PRINTF_LIKE(1
static void draw(SkCanvas *canvas, SkRect &target, int x, int y)
Definition aaclip.cpp:27
bool intersect(const SkIRect &r)
Definition SkRect.h:513
constexpr int32_t top() const
Definition SkRect.h:120
constexpr int32_t bottom() const
Definition SkRect.h:134
constexpr int32_t right() const
Definition SkRect.h:127
constexpr int32_t left() const
Definition SkRect.h:113