Flutter Engine
The Flutter Engine
IRect_bottom.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(IRect_bottom, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 SkIRect unsorted = { 15, 25, 10, 5 };
7 SkDebugf("unsorted.fBottom: %d unsorted.bottom(): %d\n", unsorted.fBottom, unsorted.bottom());
8 SkIRect sorted = unsorted.makeSorted();
9 SkDebugf("sorted.fBottom: %d sorted.bottom(): %d\n", sorted.fBottom, sorted.bottom());
10}
11} // END FIDDLE
REG_FIDDLE(IRect_bottom, 256, 256, true, 0)
Definition: IRect_bottom.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
Definition: SkRect.h:32
int32_t fBottom
larger y-axis bounds
Definition: SkRect.h:36
constexpr int32_t bottom() const
Definition: SkRect.h:134
SkIRect makeSorted() const
Definition: SkRect.h:569