aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar joshualitt <joshualitt@chromium.org>2015-08-14 07:10:57 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-14 07:10:57 -0700
commit1bef9f59c566cc54c2259cc4d0171c115157cd1c (patch)
tree18b748b6bb87f430b129647ad80b92ede3cf2216
parentb0a32cc38fcd8f37a23dfa19e928aeca529eaf14 (diff)
stop dropping AA when rect stays rect
-rw-r--r--src/gpu/GrDrawContext.cpp42
1 files changed, 9 insertions, 33 deletions
diff --git a/src/gpu/GrDrawContext.cpp b/src/gpu/GrDrawContext.cpp
index 3033611146..8b95647631 100644
--- a/src/gpu/GrDrawContext.cpp
+++ b/src/gpu/GrDrawContext.cpp
@@ -204,35 +204,6 @@ void GrDrawContext::drawPaint(GrRenderTarget* rt,
}
}
-static inline bool is_irect(const SkRect& r) {
- return SkScalarIsInt(r.fLeft) && SkScalarIsInt(r.fTop) &&
- SkScalarIsInt(r.fRight) && SkScalarIsInt(r.fBottom);
-}
-
-static bool apply_aa_to_rect(GrDrawTarget* target,
- GrPipelineBuilder* pipelineBuilder,
- SkRect* devBoundRect,
- const SkRect& rect,
- SkScalar strokeWidth,
- const SkMatrix& combinedMatrix,
- GrColor color) {
- if (pipelineBuilder->getRenderTarget()->isUnifiedMultisampled() ||
- !combinedMatrix.preservesAxisAlignment()) {
- return false;
- }
-
- combinedMatrix.mapRect(devBoundRect, rect);
- if (!combinedMatrix.rectStaysRect()) {
- return true;
- }
-
- if (strokeWidth < 0) {
- return !is_irect(*devBoundRect);
- }
-
- return true;
-}
-
static inline bool rect_contains_inclusive(const SkRect& rect, const SkPoint& point) {
return point.fX >= rect.fLeft && point.fX <= rect.fRight &&
point.fY >= rect.fTop && point.fY <= rect.fBottom;
@@ -297,13 +268,18 @@ void GrDrawContext::drawRect(GrRenderTarget* rt,
}
GrColor color = paint.getColor();
- SkRect devBoundRect;
bool needAA = paint.isAntiAlias() &&
!pipelineBuilder.getRenderTarget()->isUnifiedMultisampled();
- bool doAA = needAA && apply_aa_to_rect(fDrawTarget, &pipelineBuilder, &devBoundRect, rect,
- width, viewMatrix, color);
- if (doAA) {
+ // The fill path can handle rotation but not skew
+ // The stroke path needs the rect to remain axis aligned (no rotation or skew)
+ // None of our draw rect calls can handle perspective yet
+ SkASSERT(!viewMatrix.hasPerspective());
+ bool canApplyAA = width >=0 ? viewMatrix.rectStaysRect() : viewMatrix.preservesRightAngles();
+
+ if (needAA && canApplyAA) {
+ SkRect devBoundRect;
+ viewMatrix.mapRect(&devBoundRect, rect);
SkAutoTUnref<GrDrawBatch> batch;
if (width >= 0) {
batch.reset(GrRectBatchFactory::CreateStrokeAA(color, viewMatrix, rect, devBoundRect,