Flutter Engine
The Flutter Engine
IRect_x.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_x, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 SkIRect unsorted = { 15, 5, 10, 25 };
7 SkDebugf("unsorted.fLeft: %d unsorted.x(): %d\n", unsorted.fLeft, unsorted.x());
8 SkIRect sorted = unsorted.makeSorted();
9 SkDebugf("sorted.fLeft: %d sorted.x(): %d\n", sorted.fLeft, sorted.x());
10}
11} // END FIDDLE
REG_FIDDLE(IRect_x, 256, 256, true, 0)
Definition: IRect_x.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
constexpr int32_t x() const
Definition: SkRect.h:141
int32_t fLeft
smaller x-axis bounds
Definition: SkRect.h:33
SkIRect makeSorted() const
Definition: SkRect.h:569