Flutter Engine
The Flutter Engine
Region_Iterator_rewind.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(Region_Iterator_rewind, 256, 256, true, 0) {
5void draw(SkCanvas* canvas) {
6 auto debugster = [](const char* label, SkRegion::Iterator& iter, bool addRewind) -> void {
7 if (addRewind) {
8 bool success = iter.rewind();
9 SkDebugf("%14s rewind success=%s\n", label, success ? "true" : "false");
10 }
11 auto r = iter.rect();
12 SkDebugf("%14s rect={%d,%d,%d,%d}\n", label, r.fLeft, r.fTop, r.fRight, r.fBottom);
13 };
15 debugster("empty iter", iter, true);
17 iter.reset(region);
18 debugster("empty region", iter, true);
19 region.setRect({1, 2, 3, 4});
20 iter.reset(region);
21 debugster("after set rect", iter, false);
22 debugster("after rewind", iter, true);
23}
24} // END FIDDLE
REG_FIDDLE(Region_Iterator_rewind, 256, 256, true, 0)
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
bool setRect(const SkIRect &rect)
Definition: SkRegion.cpp:192
ClipOpAndAA opAA SkRegion region
Definition: SkRecords.h:238