Flutter Engine
The Flutter Engine
Rect_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(Rect_x, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 SkRect unsorted = { 15, 5, 10, 25 };
7 SkDebugf("unsorted.fLeft: %g unsorted.x(): %g\n", unsorted.fLeft, unsorted.x());
8 SkRect sorted = unsorted.makeSorted();
9 SkDebugf("sorted.fLeft: %g sorted.x(): %g\n", sorted.fLeft, sorted.x());
10}
11} // END FIDDLE
REG_FIDDLE(Rect_x, 256, 256, true, 0)
Definition: Rect_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
SkRect makeSorted() const
Definition: SkRect.h:1330
SkScalar fLeft
smaller x-axis bounds
Definition: extension.cpp:14
constexpr float x() const
Definition: SkRect.h:720