blob: 3515b4c3248d59e6f86a4b9883b40467e665dcdb [file] [log] [blame]
// Copyright 2019 Google LLC.
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
#include "fiddle/examples.h"
// HASH=ef7ae1dd522c235b0afe41b55a624f46
REG_FIDDLE(Rect_062, 256, 256, true, 0) {
void draw(SkCanvas* canvas) {
SkRect rect = { 30.5f, 50.5f, 40.5f, 60.5f };
SkIRect round = rect.round();
SkDebugf("round: %d, %d, %d, %d\n", round.fLeft, round.fTop, round.fRight, round.fBottom);
}
} // END FIDDLE