Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
IRect_intersect.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.
4// HASH=ea233f5d5d1ae0e76fc6f2eb371c927a
5REG_FIDDLE(IRect_intersect, 256, 256, true, 0) {
6void draw(SkCanvas* canvas) {
7 SkIRect leftRect = { 10, 40, 50, 80 };
8 SkIRect rightRect = { 30, 60, 70, 90 };
9 SkDebugf("%s intersection: ", leftRect.intersect(rightRect) ? "" : "no ");
10 SkDebugf("%d, %d, %d, %d\n", leftRect.left(), leftRect.top(),
11 leftRect.right(), leftRect.bottom());
12}
13} // END FIDDLE
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
#define REG_FIDDLE(NAME, W, H, TEXT, I)
Definition examples.h:60
bool intersect(const SkIRect &r)
Definition SkRect.h:513
constexpr int32_t top() const
Definition SkRect.h:120
constexpr int32_t bottom() const
Definition SkRect.h:134
constexpr int32_t right() const
Definition SkRect.h:127
constexpr int32_t left() const
Definition SkRect.h:113