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

Go to the source code of this file.

Functions

 REG_FIDDLE (Rect_equal_operator, 256, 256, true, 0)
 

Function Documentation

◆ REG_FIDDLE()

REG_FIDDLE ( Rect_equal_operator  ,
256  ,
256  ,
true  ,
 
)

Definition at line 5 of file Rect_equal_operator.cpp.

5 {
6void draw(SkCanvas* canvas) {
7 auto debugster = [](const SkRect& test) -> void {
8 SkRect negZero = {-0.0f, -0.0f, 2, 2};
9 SkDebugf("{%g, %g, %g, %g} %c= {%g, %g, %g, %g} %s numerically equal\n",
10 test.fLeft, test.fTop, test.fRight, test.fBottom,
11 test == negZero ? '=' : '!',
12 negZero.fLeft, negZero.fTop, negZero.fRight, negZero.fBottom,
13 (test.fLeft == negZero.fLeft && test.fTop == negZero.fTop &&
14 test.fRight == negZero.fRight && test.fBottom == negZero.fBottom) ?
15 "and are" : "yet are not");
16 };
17 SkRect tests[] = {{0, 0, 2, 2}, {-0, -0, 2, 2}, {0.0f, 0.0f, 2, 2}};
18 SkDebugf("tests are %s" "equal\n", tests[0] == tests[1] && tests[1] == tests[2] ? "" : "not ");
19 for (auto rect : tests) {
20 debugster(rect);
21 }
22}
23} // END FIDDLE
static BlurTest tests[]
Definition BlurTest.cpp:84
#define test(name)
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