blob: daf0479d1e1a5b96f05f5212588b84d3fcdbdaf2 [file] [log] [blame]
Chris Daltonc0966542019-09-23 20:16:03 -06001/*
2 * Copyright 2019 Google LLC.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "gm/gm.h"
9#include "include/core/SkCanvas.h"
Mike Reed06d7c9d2020-08-26 12:56:51 -040010#include "include/core/SkPathBuilder.h"
Chris Daltonc0966542019-09-23 20:16:03 -060011
12// Repro case for http://skbug.com/9453
13DEF_SIMPLE_GM(inverseclip, canvas, 400, 400) {
Mike Reed06d7c9d2020-08-26 12:56:51 -040014 SkPathBuilder clip;
Mike Reed7d34dc72019-11-26 12:17:17 -050015 clip.setFillType(SkPathFillType::kInverseWinding);
Chris Daltonc0966542019-09-23 20:16:03 -060016 clip.moveTo(195.448f, 31);
17 clip.cubicTo(97.9925f, 31, 18.99f, 105.23f, 18.99f, 196.797f);
18 clip.cubicTo(18.99f, 288.365f, 97.9925f, 362.595f, 195.448f, 362.595f);
19 clip.cubicTo(292.905f, 362.595f, 371.905f, 288.365f, 371.905f, 196.797f);
20 clip.cubicTo(371.905f, 105.23f, 292.905f, 31, 195.448f, 31);
21 clip.close();
Mike Reed06d7c9d2020-08-26 12:56:51 -040022 canvas->clipPath(clip.detach(), true);
Chris Daltonc0966542019-09-23 20:16:03 -060023
24 SkPaint paint;
25 paint.setColor(SK_ColorBLUE);
26 canvas->drawRect(SkRect::MakeWH(400, 400), paint);
27}