Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Rect_equal_operator.cpp
Go to the documentation of this file.
1// Copyright 2019 Google LLC.
2// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
4// HASH=c6c5b40cad7c3a839fdf576b380391a6
5REG_FIDDLE(Rect_equal_operator, 256, 256, true, 0) {
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
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
SkScalar fBottom
larger y-axis bounds
Definition extension.cpp:17
SkScalar fLeft
smaller x-axis bounds
Definition extension.cpp:14
SkScalar fRight
larger x-axis bounds
Definition extension.cpp:16
SkScalar fTop
smaller y-axis bounds
Definition extension.cpp:15