f1d415188f
path strings can be parsed without returning an error. Draw the output through Skia and SVG to make sure they are parsed correctly. R=fmalita@chromium.org BUG=skia:4549 GOLD_TRYBOT_URL= https://gold.skia.org/search2?unt=true&query=source_type%3Dgm&master=false&issue=1675053002 Review URL: https://codereview.chromium.org/1675053002
18 lines
313 B
C++
18 lines
313 B
C++
/*
|
|
* Copyright 2016 Google Inc.
|
|
*
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef random_parse_path_DEFINED
|
|
#define random_parse_path_DEFINED
|
|
|
|
#include "SkString.h"
|
|
|
|
class SkRandom;
|
|
|
|
SkString MakeRandomParsePathPiece(SkRandom* rand);
|
|
|
|
#endif
|