blob: ddd5b7ae3b92de4dbab5fb5ae282fef828ee9961 [file] [log] [blame]
robertphillips@google.comf4c2c522012-04-27 12:08:47 +00001
2/*
3 * Copyright 2012 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
8
9#include "GrSoftwarePathRenderer.h"
robertphillips@google.comed4155d2012-05-01 14:30:24 +000010#include "GrContext.h"
robertphillips@google.com58b20212012-06-27 20:44:52 +000011#include "GrSWMaskHelper.h"
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000012
robertphillips@google.comed4155d2012-05-01 14:30:24 +000013////////////////////////////////////////////////////////////////////////////////
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000014bool GrSoftwarePathRenderer::canDrawPath(const SkPath& path,
15 GrPathFill fill,
16 const GrDrawTarget* target,
17 bool antiAlias) const {
robertphillips@google.comed4155d2012-05-01 14:30:24 +000018 if (!antiAlias || NULL == fContext) {
19 // TODO: We could allow the SW path to also handle non-AA paths but
20 // this would mean that GrDefaultPathRenderer would never be called
21 // (since it appears after the SW renderer in the path renderer
22 // chain). Some testing would need to be done r.e. performance
23 // and consistency of the resulting images before removing
24 // the "!antiAlias" clause from the above test
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000025 return false;
26 }
27
robertphillips@google.comed4155d2012-05-01 14:30:24 +000028 return true;
robertphillips@google.comf4c2c522012-04-27 12:08:47 +000029}
30
robertphillips@google.comed4155d2012-05-01 14:30:24 +000031namespace {
32
33////////////////////////////////////////////////////////////////////////////////
robertphillips@google.comed4155d2012-05-01 14:30:24 +000034// gets device coord bounds of path (not considering the fill) and clip. The
35// path bounds will be a subset of the clip bounds. returns false if
36// path bounds would be empty.
37bool get_path_and_clip_bounds(const GrDrawTarget* target,
38 const SkPath& path,
robertphillips@google.com366f1c62012-06-29 21:38:47 +000039 const GrMatrix& matrix,
robertphillips@google.comed4155d2012-05-01 14:30:24 +000040 GrIRect* pathBounds,
41 GrIRect* clipBounds) {
42 // compute bounds as intersection of rt size, clip, and path
43 const GrRenderTarget* rt = target->getDrawState().getRenderTarget();
44 if (NULL == rt) {
45 return false;
46 }
47 *pathBounds = GrIRect::MakeWH(rt->width(), rt->height());
48 const GrClip& clip = target->getClip();
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +000049
50 clip.getConservativeBounds().roundOut(clipBounds);
51 if (!pathBounds->intersect(*clipBounds)) {
52 return false;
robertphillips@google.comed4155d2012-05-01 14:30:24 +000053 }
robertphillips@google.com3e11c0b2012-07-11 18:20:35 +000054
robertphillips@google.com366f1c62012-06-29 21:38:47 +000055 if (!path.getBounds().isEmpty()) {
56 GrRect pathSBounds;
57 matrix.mapRect(&pathSBounds, path.getBounds());
robertphillips@google.comed4155d2012-05-01 14:30:24 +000058 GrIRect pathIBounds;
59 pathSBounds.roundOut(&pathIBounds);
60 if (!pathBounds->intersect(pathIBounds)) {
bsalomon@google.com276c1fa2012-06-19 13:22:45 +000061 // set the correct path bounds, as this would be used later.
62 *pathBounds = pathIBounds;
robertphillips@google.comed4155d2012-05-01 14:30:24 +000063 return false;
64 }
65 } else {
bsalomon@google.com276c1fa2012-06-19 13:22:45 +000066 *pathBounds = GrIRect::EmptyIRect();
robertphillips@google.comed4155d2012-05-01 14:30:24 +000067 return false;
68 }
69 return true;
70}
71
72////////////////////////////////////////////////////////////////////////////////
robertphillips@google.comed4155d2012-05-01 14:30:24 +000073void draw_around_inv_path(GrDrawTarget* target,
robertphillips@google.comed4155d2012-05-01 14:30:24 +000074 const GrIRect& clipBounds,
75 const GrIRect& pathBounds) {
bsalomon@google.come3d32162012-07-20 13:37:06 +000076 GrDrawTarget::AutoDeviceCoordDraw adcd(target);
77 if (!adcd.succeeded()) {
78 return;
79 }
robertphillips@google.comed4155d2012-05-01 14:30:24 +000080 GrRect rect;
81 if (clipBounds.fTop < pathBounds.fTop) {
82 rect.iset(clipBounds.fLeft, clipBounds.fTop,
83 clipBounds.fRight, pathBounds.fTop);
bsalomon@google.come3d32162012-07-20 13:37:06 +000084 target->drawSimpleRect(rect, NULL);
robertphillips@google.comed4155d2012-05-01 14:30:24 +000085 }
86 if (clipBounds.fLeft < pathBounds.fLeft) {
87 rect.iset(clipBounds.fLeft, pathBounds.fTop,
88 pathBounds.fLeft, pathBounds.fBottom);
bsalomon@google.come3d32162012-07-20 13:37:06 +000089 target->drawSimpleRect(rect, NULL);
robertphillips@google.comed4155d2012-05-01 14:30:24 +000090 }
91 if (clipBounds.fRight > pathBounds.fRight) {
92 rect.iset(pathBounds.fRight, pathBounds.fTop,
93 clipBounds.fRight, pathBounds.fBottom);
bsalomon@google.come3d32162012-07-20 13:37:06 +000094 target->drawSimpleRect(rect, NULL);
robertphillips@google.comed4155d2012-05-01 14:30:24 +000095 }
96 if (clipBounds.fBottom > pathBounds.fBottom) {
97 rect.iset(clipBounds.fLeft, pathBounds.fBottom,
98 clipBounds.fRight, clipBounds.fBottom);
bsalomon@google.come3d32162012-07-20 13:37:06 +000099 target->drawSimpleRect(rect, NULL);
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000100 }
101}
102
103}
104
105////////////////////////////////////////////////////////////////////////////////
106// return true on success; false on failure
robertphillips@google.comf4c2c522012-04-27 12:08:47 +0000107bool GrSoftwarePathRenderer::onDrawPath(const SkPath& path,
108 GrPathFill fill,
109 const GrVec* translate,
110 GrDrawTarget* target,
robertphillips@google.comf4c2c522012-04-27 12:08:47 +0000111 bool antiAlias) {
112
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000113 if (NULL == fContext) {
114 return false;
115 }
116
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000117 GrDrawState* drawState = target->drawState();
118
119 GrMatrix vm = drawState->getViewMatrix();
120 if (NULL != translate) {
121 vm.postTranslate(translate->fX, translate->fY);
122 }
123
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000124 GrIRect pathBounds, clipBounds;
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000125 if (!get_path_and_clip_bounds(target, path, vm,
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000126 &pathBounds, &clipBounds)) {
bsalomon@google.com276c1fa2012-06-19 13:22:45 +0000127 if (GrIsFillInverted(fill)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000128 draw_around_inv_path(target, clipBounds, pathBounds);
bsalomon@google.com276c1fa2012-06-19 13:22:45 +0000129 }
130 return true;
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000131 }
robertphillips@google.com366f1c62012-06-29 21:38:47 +0000132
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000133 SkAutoTUnref<GrTexture> texture(
134 GrSWMaskHelper::DrawPathMaskToTexture(fContext, path,
135 pathBounds, fill,
136 antiAlias, &vm));
137 if (NULL == texture) {
138 return false;
robertphillips@google.comed4155d2012-05-01 14:30:24 +0000139 }
140
bsalomon@google.come3d32162012-07-20 13:37:06 +0000141 GrSWMaskHelper::DrawToTargetWithPathMask(texture, target, pathBounds);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000142
143 if (GrIsFillInverted(fill)) {
bsalomon@google.come3d32162012-07-20 13:37:06 +0000144 draw_around_inv_path(target, clipBounds, pathBounds);
robertphillips@google.com5dfb6722012-07-09 16:32:28 +0000145 }
146
147 return true;
robertphillips@google.comf4c2c522012-04-27 12:08:47 +0000148}