blob: 1abe2f0448d5d5008d427a9896a47455cfe10661 [file] [log] [blame]
Hal Canary83c2f702019-03-07 14:53:03 -05001// 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 "fiddle/examples.h"
4// HASH=dd801faa1e60a0fe9e0657674461e063
5REG_FIDDLE(Rect_007, 256, 256, true, 0) {
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