1 /* 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/SkPathBuilder.h" 12 13 DEF_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 SkPathBuilder 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.detach(), paint); 28 } 29