6c8422c671
ignore offscreen, srgb, and animated fiddles for now. Change-Id: I923131b684865698e6cda138b004930e11f504d5 Reviewed-on: https://skia-review.googlesource.com/c/skia/+/263713 Commit-Queue: Hal Canary <halcanary@google.com> Reviewed-by: Ben Wagner <bungeman@google.com>
25 lines
762 B
C++
25 lines
762 B
C++
// Copyright 2020 Google LLC.
|
|
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
|
|
#include "tools/fiddle/examples.h"
|
|
REG_FIDDLE(SkParsePath_FromSVGString, 256, 256, false, 0) {
|
|
void draw(SkCanvas* canvas) {
|
|
const char pathString[] =
|
|
"M 243 128 "
|
|
"L 24 178 "
|
|
"L 200 38 "
|
|
"L 102 240 "
|
|
"L 102 16 "
|
|
"L 200 218 "
|
|
"L 24 78 "
|
|
"Z";
|
|
SkPath path;
|
|
SkParsePath::FromSVGString(pathString, &path);
|
|
SkPaint paint;
|
|
paint.setAntiAlias(true);
|
|
paint.setStyle(SkPaint::kStroke_Style);
|
|
paint.setStrokeCap(SkPaint::kRound_Cap);
|
|
paint.setStrokeWidth(2);
|
|
canvas->drawPath(path, paint);
|
|
}
|
|
} // END FIDDLE
|