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

Go to the source code of this file.

Functions

 REG_FIDDLE (Rect_Make_2, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Rect_Make_2  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Rect_Make_2.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 SkIRect i_rect1 = {2, 35, 22, 53};
8 SkRect f_rect = SkRect::Make(i_rect1);
9 f_rect.offset(0.49f, 0.49f);
10 SkIRect i_rect2;
11 f_rect.round(&i_rect2);
12 SkDebugf("i_rect1 %c= i_rect2\n", i_rect1 == i_rect2? '=' : '!');
13}
14} // 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
static SkRect Make(const SkISize &size)
Definition SkRect.h:669
void offset(float dx, float dy)
Definition SkRect.h:1016
void round(SkIRect *dst) const
Definition SkRect.h:1228