Flutter Engine
The Flutter Engine
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 4 of file IRect_intersect.cpp.

4 {
5void draw(SkCanvas* canvas) {
6 SkIRect leftRect = { 10, 40, 50, 80 };
7 SkIRect rightRect = { 30, 60, 70, 90 };
8 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no ");
9 SkDebugf("%d, %d, %d, %d\n", leftRect.left(), leftRect.top(),
10 leftRect.right(), leftRect.bottom());
11}
12} // 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
Definition: SkRect.h:32
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