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.
3#include "tools/fiddle/examples.h"
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
24