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