aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/SkGpuDevice.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2015-11-24 05:36:02 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-11-24 05:36:02 -0800
commit514450cb695279e44af8b30c19e9d866e2eeb818 (patch)
tree37d5c80f16a01c94f513b3a4af9c69359dfa69cb /src/gpu/SkGpuDevice.cpp
parentb68ce74bd197a9ca4becd53cbcfee825b8d08e0e (diff)
Clarify when oval & rrects get devolved to paths in SkGpuDevice/GrDrawContext boundary
The GrDrawContext drawOval and drawRRect methods are only called from SkGpuDevice so there is no value in delaying the conversion to a path when dashing is involved. Review URL: https://codereview.chromium.org/1470103002
Diffstat (limited to 'src/gpu/SkGpuDevice.cpp')
-rw-r--r--src/gpu/SkGpuDevice.cpp46
1 files changed, 15 insertions, 31 deletions
diff --git a/src/gpu/SkGpuDevice.cpp b/src/gpu/SkGpuDevice.cpp
index 9b6a5304d2..b8630e5555 100644
--- a/src/gpu/SkGpuDevice.cpp
+++ b/src/gpu/SkGpuDevice.cpp
@@ -567,19 +567,7 @@ void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect,
}
- bool usePath = false;
-
- if (paint.getMaskFilter()) {
- usePath = true;
- } else {
- const SkPathEffect* pe = paint.getPathEffect();
- if (pe && !strokeInfo.isDashed()) {
- usePath = true;
- }
- }
-
-
- if (usePath) {
+ if (paint.getMaskFilter() || paint.getPathEffect()) {
SkPath path;
path.setIsVolatile(true);
path.addRRect(rect);
@@ -587,6 +575,8 @@ void SkGpuDevice::drawRRect(const SkDraw& draw, const SkRRect& rect,
return;
}
+ SkASSERT(!strokeInfo.isDashed());
+
fDrawContext->drawRRect(fClip, grPaint, *draw.fMatrix, rect, strokeInfo);
}
@@ -621,33 +611,24 @@ void SkGpuDevice::drawDRRect(const SkDraw& draw, const SkRRect& outer,
/////////////////////////////////////////////////////////////////////////////
-void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
- const SkPaint& paint) {
+void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval, const SkPaint& paint) {
GR_CREATE_TRACE_MARKER_CONTEXT("SkGpuDevice::drawOval", fContext);
CHECK_FOR_ANNOTATION(paint);
CHECK_SHOULD_DRAW(draw);
- GrStrokeInfo strokeInfo(paint);
-
- bool usePath = false;
- // some basic reasons we might need to call drawPath...
- if (paint.getMaskFilter()) {
- // The RRect path can handle special case blurring
- SkRRect rr = SkRRect::MakeOval(oval);
- return this->drawRRect(draw, rr, paint);
- } else {
- const SkPathEffect* pe = paint.getPathEffect();
- if (pe && !strokeInfo.isDashed()) {
- usePath = true;
- }
- }
-
- if (usePath) {
+ // Presumably the path effect warps this to something other than an oval
+ if (paint.getPathEffect()) {
SkPath path;
path.setIsVolatile(true);
path.addOval(oval);
this->drawPath(draw, path, paint, nullptr, true);
return;
+ }
+
+ if (paint.getMaskFilter()) {
+ // The RRect path can handle special case blurring
+ SkRRect rr = SkRRect::MakeOval(oval);
+ return this->drawRRect(draw, rr, paint);
}
GrPaint grPaint;
@@ -655,6 +636,9 @@ void SkGpuDevice::drawOval(const SkDraw& draw, const SkRect& oval,
return;
}
+ GrStrokeInfo strokeInfo(paint);
+ SkASSERT(!strokeInfo.isDashed());
+
fDrawContext->drawOval(fClip, grPaint, *draw.fMatrix, oval, strokeInfo);
}