blob: f5394efbceedd27bf517357afe867942abf3700f [file] [log] [blame]
Hal Canary87515122019-03-15 14:22:51 -04001// 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.
Mike Kleinc0bd9f92019-04-23 12:05:21 -05003#include "tools/fiddle/examples.h"
Hal Canary87515122019-03-15 14:22:51 -04004// HASH=556832ac5711af662a98c21c547185e9
Hal Canarya7181e7c2019-03-18 16:06:34 -04005REG_FIDDLE(Canvas_getDeviceClipBounds, 256, 256, true, 0) {
Hal Canary87515122019-03-15 14:22:51 -04006void draw(SkCanvas* canvas) {
7 SkCanvas device(256, 256);
8 canvas = &device;
9 SkIRect bounds = canvas->getDeviceClipBounds();
10 SkDebugf("left:%d top:%d right:%d bottom:%d\n",
11 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
12 SkPoint clipPoints[] = {{30, 130}, {120, 130}, {120, 230} };
13 SkPath clipPath;
14 clipPath.addPoly(clipPoints, SK_ARRAY_COUNT(clipPoints), true);
15 canvas->save();
16 canvas->clipPath(clipPath);
17 bounds = canvas->getDeviceClipBounds();
18 SkDebugf("left:%d top:%d right:%d bottom:%d\n",
19 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
20 canvas->restore();
21 canvas->scale(1.f/2, 1.f/2);
22 canvas->clipPath(clipPath);
23 bounds = canvas->getDeviceClipBounds();
24 SkDebugf("left:%d top:%d right:%d bottom:%d\n",
25 bounds.fLeft, bounds.fTop, bounds.fRight, bounds.fBottom);
26}
27} // END FIDDLE