blob: 40c874904318fe173a7bebc77f1c4b1b59dd7558 [file] [log] [blame]
Stephen Whitec4dbc372019-05-22 10:50:14 -04001/*
2 * Copyright 2019 Google Inc.
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"
10#include "include/core/SkPaint.h"
11#include "include/core/SkPath.h"
12
13DEF_SIMPLE_GM(crbug_913349, canvas, 500, 600) {
14 SkPaint paint;
15
16 paint.setAntiAlias(true);
17 paint.setStyle(SkPaint::kFill_Style);
18
19 // This is a reduction from crbug.com/913349 to 5 verts.
20 SkPath path;
21 path.moveTo( 349.5, 225.75);
22 path.lineTo( 96.5, 74);
23 path.lineTo( 500.50, 226);
24 path.lineTo( 350, 226);
25 path.lineTo( 350, 224);
26
27 canvas->drawPath(path, paint);
28}