Flutter Engine
The Flutter Engine
Rect_height.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.
4REG_FIDDLE(Rect_height, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 SkRect unsorted = { 15, 25, 10, 20 };
7 SkDebugf("unsorted height: %g\n", unsorted.height());
8 SkRect large = { 1, -2147483647.f, 2, 2147483644.f };
9 SkDebugf("large height: %.0f\n", large.height());
10}
11} // END FIDDLE
REG_FIDDLE(Rect_height, 256, 256, true, 0)
Definition: Rect_height.cpp:4
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
constexpr float height() const
Definition: SkRect.h:769