diff options
| -rw-r--r-- | WebCore/platform/graphics/android/GraphicsContextAndroid.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp index b76f5d5..80ba477 100644 --- a/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp +++ b/WebCore/platform/graphics/android/GraphicsContextAndroid.cpp @@ -838,17 +838,6 @@ void GraphicsContext::clipOut(const IntRect& r) GC2CANVAS(this)->clipRect(r, SkRegion::kDifference_Op); } -void GraphicsContext::clipOutEllipseInRect(const IntRect& r) -{ - if (paintingDisabled()) - return; - - SkPath path; - - path.addOval(r, SkPath::kCCW_Direction); - GC2CANVAS(this)->clipPath(path, SkRegion::kDifference_Op); -} - #if ENABLE(SVG) void GraphicsContext::clipPath(WindRule clipRule) { |
