1 /* 2 * Copyright 2017 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.h" 9 #include "SkParsePath.h" 10 11 DEF_SIMPLE_GM_CAN_FAIL(crbug_691386, canvas, errorMsg, 256, 256) { 12 SkPath path; 13 if (!SkParsePath::FromSVGString("M -1 0 A 1 1 0 0 0 1 0 Z", &path)) { 14 *errorMsg = "Failed to parse path."; 15 return skiagm::DrawResult::kFail; 16 } 17 SkPaint p; 18 p.setStyle(SkPaint::kStroke_Style); 19 p.setStrokeWidth(0.025f); 20 canvas->scale(96.0f, 96.0f); 21 canvas->translate(1.25f, 1.25f); 22 canvas->drawPath(path, p); 23 return skiagm::DrawResult::kOk; 24 } 25