| Index: src/core/SkRemote.cpp
|
| diff --git a/src/core/SkRemote.cpp b/src/core/SkRemote.cpp
|
| index d3da1d2bfa07d3078614fe56d8341213bae1b605..4f2714fa24f9fcf231f77ba72e1ca23310eb7762 100644
|
| --- a/src/core/SkRemote.cpp
|
| +++ b/src/core/SkRemote.cpp
|
| @@ -207,6 +207,15 @@ namespace SkRemote {
|
| this->onDrawPath(path, paint);
|
| }
|
|
|
| + void Client::onDrawDRRect(const SkRRect& outside,
|
| + const SkRRect& inside,
|
| + const SkPaint& paint) {
|
| + SkPath path;
|
| + path.addRRect(outside);
|
| + path.addRRect(inside, SkPath::kCCW_Direction);
|
| + this->onDrawPath(path, paint);
|
| + }
|
| +
|
| void Client::onDrawPath(const SkPath& path, const SkPaint& paint) {
|
| LookupScope ls(fCache, fEncoder);
|
| ID p = ls.lookup(path),
|
|
|