| Index: Source/platform/graphics/Path.cpp
|
| diff --git a/Source/platform/graphics/Path.cpp b/Source/platform/graphics/Path.cpp
|
| index e008c93c8637c264ef5f5627c5750ac378c0a226..f88cc53d3ffba8d47cd445043fcf1ebb86f0eb1f 100644
|
| --- a/Source/platform/graphics/Path.cpp
|
| +++ b/Source/platform/graphics/Path.cpp
|
| @@ -61,6 +61,12 @@ Path& Path::operator=(const Path& other)
|
| return *this;
|
| }
|
|
|
| +Path& Path::operator=(const SkPath& other)
|
| +{
|
| + m_path = other;
|
| + return *this;
|
| +}
|
| +
|
| bool Path::operator==(const Path& other) const
|
| {
|
| return m_path == other.m_path;
|
|
|