blob: e00ed5599fb90fc9fd378985da3430ed3a117ce1 [file] [log] [blame]
joshualitt9ff64252015-08-10 09:03:51 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
Brian Salomon6a639042016-12-14 11:08:17 -05008#include "GrAAFillRectOp.h"
joshualitt9ff64252015-08-10 09:03:51 -07009
joshualitt37eb1842015-08-12 06:36:57 -070010#include "GrColor.h"
joshualitt9ff64252015-08-10 09:03:51 -070011#include "GrDefaultGeoProcFactory.h"
Brian Salomondad29232016-12-01 16:40:24 -050012#include "GrMeshDrawOp.h"
Brian Salomon742e31d2016-12-07 17:06:19 -050013#include "GrOpFlushState.h"
joshualitt9ff64252015-08-10 09:03:51 -070014#include "GrResourceKey.h"
15#include "GrResourceProvider.h"
joshualitt37eb1842015-08-12 06:36:57 -070016#include "GrTypes.h"
17#include "SkMatrix.h"
18#include "SkRect.h"
joshualitt9ff64252015-08-10 09:03:51 -070019
20GR_DECLARE_STATIC_UNIQUE_KEY(gAAFillRectIndexBufferKey);
21
Brian Salomon6a639042016-12-14 11:08:17 -050022static void set_inset_fan(SkPoint* pts, size_t stride, const SkRect& r, SkScalar dx, SkScalar dy) {
23 pts->setRectFan(r.fLeft + dx, r.fTop + dy, r.fRight - dx, r.fBottom - dy, stride);
joshualitt9ff64252015-08-10 09:03:51 -070024}
25
joshualitt27801bf2015-08-12 12:52:47 -070026static const int kNumAAFillRectsInIndexBuffer = 256;
27static const int kVertsPerAAFillRect = 8;
28static const int kIndicesPerAAFillRect = 30;
29
cdalton397536c2016-03-25 12:15:03 -070030const GrBuffer* get_index_buffer(GrResourceProvider* resourceProvider) {
joshualitt27801bf2015-08-12 12:52:47 -070031 GR_DEFINE_STATIC_UNIQUE_KEY(gAAFillRectIndexBufferKey);
32
Brian Salomon6a639042016-12-14 11:08:17 -050033 // clang-format off
joshualitt27801bf2015-08-12 12:52:47 -070034 static const uint16_t gFillAARectIdx[] = {
35 0, 1, 5, 5, 4, 0,
36 1, 2, 6, 6, 5, 1,
37 2, 3, 7, 7, 6, 2,
38 3, 0, 4, 4, 7, 3,
39 4, 5, 6, 6, 7, 4,
40 };
Brian Salomon6a639042016-12-14 11:08:17 -050041 // clang-format on
42
joshualitt27801bf2015-08-12 12:52:47 -070043 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gFillAARectIdx) == kIndicesPerAAFillRect);
Brian Salomon6a639042016-12-14 11:08:17 -050044 return resourceProvider->findOrCreateInstancedIndexBuffer(
45 gFillAARectIdx, kIndicesPerAAFillRect, kNumAAFillRectsInIndexBuffer,
46 kVertsPerAAFillRect, gAAFillRectIndexBufferKey);
joshualitt27801bf2015-08-12 12:52:47 -070047}
48
joshualittcd47b712015-08-18 07:25:38 -070049static void generate_aa_fill_rect_geometry(intptr_t verts,
50 size_t vertexStride,
51 GrColor color,
52 const SkMatrix& viewMatrix,
53 const SkRect& rect,
54 const SkRect& devRect,
Brian Salomon92aee3d2016-12-21 09:20:25 -050055 const GrPipelineOptimizations& optimizations,
joshualittcd47b712015-08-18 07:25:38 -070056 const SkMatrix* localMatrix) {
57 SkPoint* fan0Pos = reinterpret_cast<SkPoint*>(verts);
58 SkPoint* fan1Pos = reinterpret_cast<SkPoint*>(verts + 4 * vertexStride);
59
robertphillips0851d2d2016-06-02 05:21:34 -070060 SkScalar inset;
joshualittcd47b712015-08-18 07:25:38 -070061
62 if (viewMatrix.rectStaysRect()) {
robertphillips0851d2d2016-06-02 05:21:34 -070063 inset = SkMinScalar(devRect.width(), SK_Scalar1);
64 inset = SK_ScalarHalf * SkMinScalar(inset, devRect.height());
65
joshualittcd47b712015-08-18 07:25:38 -070066 set_inset_fan(fan0Pos, vertexStride, devRect, -SK_ScalarHalf, -SK_ScalarHalf);
Brian Salomon6a639042016-12-14 11:08:17 -050067 set_inset_fan(fan1Pos, vertexStride, devRect, inset, inset);
joshualittcd47b712015-08-18 07:25:38 -070068 } else {
69 // compute transformed (1, 0) and (0, 1) vectors
Brian Salomon6a639042016-12-14 11:08:17 -050070 SkVector vec[2] = {{viewMatrix[SkMatrix::kMScaleX], viewMatrix[SkMatrix::kMSkewY]},
71 {viewMatrix[SkMatrix::kMSkewX], viewMatrix[SkMatrix::kMScaleY]}};
joshualittcd47b712015-08-18 07:25:38 -070072
robertphillips0851d2d2016-06-02 05:21:34 -070073 SkScalar len1 = SkPoint::Normalize(&vec[0]);
joshualittcd47b712015-08-18 07:25:38 -070074 vec[0].scale(SK_ScalarHalf);
robertphillips0851d2d2016-06-02 05:21:34 -070075 SkScalar len2 = SkPoint::Normalize(&vec[1]);
joshualittcd47b712015-08-18 07:25:38 -070076 vec[1].scale(SK_ScalarHalf);
77
robertphillips0851d2d2016-06-02 05:21:34 -070078 inset = SkMinScalar(len1 * rect.width(), SK_Scalar1);
79 inset = SK_ScalarHalf * SkMinScalar(inset, len2 * rect.height());
80
joshualittcd47b712015-08-18 07:25:38 -070081 // create the rotated rect
Brian Salomon6a639042016-12-14 11:08:17 -050082 fan0Pos->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vertexStride);
joshualittcd47b712015-08-18 07:25:38 -070083 viewMatrix.mapPointsWithStride(fan0Pos, vertexStride, 4);
84
85 // Now create the inset points and then outset the original
86 // rotated points
87
88 // TL
89 *((SkPoint*)((intptr_t)fan1Pos + 0 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -050090 *((SkPoint*)((intptr_t)fan0Pos + 0 * vertexStride)) + vec[0] + vec[1];
joshualittcd47b712015-08-18 07:25:38 -070091 *((SkPoint*)((intptr_t)fan0Pos + 0 * vertexStride)) -= vec[0] + vec[1];
92 // BL
93 *((SkPoint*)((intptr_t)fan1Pos + 1 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -050094 *((SkPoint*)((intptr_t)fan0Pos + 1 * vertexStride)) + vec[0] - vec[1];
joshualittcd47b712015-08-18 07:25:38 -070095 *((SkPoint*)((intptr_t)fan0Pos + 1 * vertexStride)) -= vec[0] - vec[1];
96 // BR
97 *((SkPoint*)((intptr_t)fan1Pos + 2 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -050098 *((SkPoint*)((intptr_t)fan0Pos + 2 * vertexStride)) - vec[0] - vec[1];
joshualittcd47b712015-08-18 07:25:38 -070099 *((SkPoint*)((intptr_t)fan0Pos + 2 * vertexStride)) += vec[0] + vec[1];
100 // TR
101 *((SkPoint*)((intptr_t)fan1Pos + 3 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -0500102 *((SkPoint*)((intptr_t)fan0Pos + 3 * vertexStride)) - vec[0] + vec[1];
joshualittcd47b712015-08-18 07:25:38 -0700103 *((SkPoint*)((intptr_t)fan0Pos + 3 * vertexStride)) += vec[0] - vec[1];
104 }
105
106 if (localMatrix) {
107 SkMatrix invViewMatrix;
108 if (!viewMatrix.invert(&invViewMatrix)) {
bsalomon4be9a302016-07-06 07:03:26 -0700109 SkDebugf("View matrix is non-invertible, local coords will be wrong.");
joshualittcd47b712015-08-18 07:25:38 -0700110 invViewMatrix = SkMatrix::I();
111 }
112 SkMatrix localCoordMatrix;
113 localCoordMatrix.setConcat(*localMatrix, invViewMatrix);
114 SkPoint* fan0Loc = reinterpret_cast<SkPoint*>(verts + sizeof(SkPoint) + sizeof(GrColor));
115 localCoordMatrix.mapPointsWithStride(fan0Loc, fan0Pos, vertexStride, 8);
116 }
117
Brian Salomon92aee3d2016-12-21 09:20:25 -0500118 bool tweakAlphaForCoverage = optimizations.canTweakAlphaForCoverage();
joshualittcd47b712015-08-18 07:25:38 -0700119
120 // Make verts point to vertex color and then set all the color and coverage vertex attrs
121 // values.
122 verts += sizeof(SkPoint);
123
124 // The coverage offset is always the last vertex attribute
125 intptr_t coverageOffset = vertexStride - sizeof(GrColor) - sizeof(SkPoint);
126 for (int i = 0; i < 4; ++i) {
127 if (tweakAlphaForCoverage) {
128 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = 0;
129 } else {
130 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
131 *reinterpret_cast<float*>(verts + i * vertexStride + coverageOffset) = 0;
132 }
133 }
134
135 int scale;
136 if (inset < SK_ScalarHalf) {
137 scale = SkScalarFloorToInt(512.0f * inset / (inset + SK_ScalarHalf));
138 SkASSERT(scale >= 0 && scale <= 255);
139 } else {
140 scale = 0xff;
141 }
142
143 verts += 4 * vertexStride;
144
145 float innerCoverage = GrNormalizeByteToFloat(scale);
146 GrColor scaledColor = (0xff == scale) ? color : SkAlphaMulQ(color, scale);
147
148 for (int i = 0; i < 4; ++i) {
149 if (tweakAlphaForCoverage) {
150 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = scaledColor;
151 } else {
152 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
Brian Salomon6a639042016-12-14 11:08:17 -0500153 *reinterpret_cast<float*>(verts + i * vertexStride + coverageOffset) = innerCoverage;
joshualittcd47b712015-08-18 07:25:38 -0700154 }
155 }
156}
Brian Salomon6a639042016-12-14 11:08:17 -0500157
158class AAFillRectOp final: public GrMeshDrawOp {
joshualitt2ad37be2015-08-18 10:16:01 -0700159public:
Brian Salomon25a88092016-12-01 09:36:50 -0500160 DEFINE_OP_CLASS_ID
bsalomon4be9a302016-07-06 07:03:26 -0700161
Brian Salomon6a639042016-12-14 11:08:17 -0500162 AAFillRectOp(GrColor color,
163 const SkMatrix& viewMatrix,
164 const SkRect& rect,
165 const SkRect& devRect,
166 const SkMatrix* localMatrix)
167 : INHERITED(ClassID()) {
bsalomon4be9a302016-07-06 07:03:26 -0700168 if (localMatrix) {
169 void* mem = fRectData.push_back_n(sizeof(RectWithLocalMatrixInfo));
170 new (mem) RectWithLocalMatrixInfo(color, viewMatrix, rect, devRect, *localMatrix);
171 } else {
172 void* mem = fRectData.push_back_n(sizeof(RectInfo));
173 new (mem) RectInfo(color, viewMatrix, rect, devRect);
174 }
Brian Salomon6a639042016-12-14 11:08:17 -0500175 IsZeroArea zeroArea =
176 (!rect.width() || !rect.height()) ? IsZeroArea::kYes : IsZeroArea::kNo;
bsalomon88cf17d2016-07-08 06:40:56 -0700177 this->setBounds(devRect, HasAABloat::kYes, zeroArea);
bsalomon4be9a302016-07-06 07:03:26 -0700178 fRectCnt = 1;
bsalomon0fdec8a2016-07-01 06:31:25 -0700179 }
bsalomon08d14152016-06-30 12:45:18 -0700180
Brian Salomon6a639042016-12-14 11:08:17 -0500181 const char* name() const override { return "AAFillRectOp"; }
bsalomon08d14152016-06-30 12:45:18 -0700182
183 SkString dumpInfo() const override {
184 SkString str;
bsalomon4be9a302016-07-06 07:03:26 -0700185 str.appendf("# batched: %d\n", fRectCnt);
186 const RectInfo* info = this->first();
187 for (int i = 0; i < fRectCnt; ++i) {
188 const SkRect& rect = info->rect();
Brian Salomon6a639042016-12-14 11:08:17 -0500189 str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n", i,
190 info->color(), rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
bsalomon4be9a302016-07-06 07:03:26 -0700191 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700192 }
Brian Salomon7c3e7182016-12-01 09:35:30 -0500193 str.append(DumpPipelineInfo(*this->pipeline()));
bsalomon08d14152016-06-30 12:45:18 -0700194 str.append(INHERITED::dumpInfo());
195 return str;
196 }
197
Brian Salomon92aee3d2016-12-21 09:20:25 -0500198 void applyPipelineOptimizations(const GrPipelineOptimizations& optimizations) override {
bsalomon4be9a302016-07-06 07:03:26 -0700199 GrColor color;
Brian Salomon92aee3d2016-12-21 09:20:25 -0500200 if (optimizations.getOverrideColorIfSet(&color)) {
bsalomon4be9a302016-07-06 07:03:26 -0700201 this->first()->setColor(color);
202 }
Brian Salomon92aee3d2016-12-21 09:20:25 -0500203 fOptimizations = optimizations;
bsalomon08d14152016-06-30 12:45:18 -0700204 }
205
bsalomon08d14152016-06-30 12:45:18 -0700206private:
Brian Salomon92aee3d2016-12-21 09:20:25 -0500207 void getPipelineAnalysisInput(GrPipelineAnalysisDrawOpInput* input) const override {
208 input->pipelineColorInput()->setKnownFourComponents(this->first()->color());
209 input->pipelineCoverageInput()->setUnknownSingleComponent();
210 }
211
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700212 void onPrepareDraws(Target* target) const override {
Brian Salomon92aee3d2016-12-21 09:20:25 -0500213 bool needLocalCoords = fOptimizations.readsLocalCoords();
bsalomon4be9a302016-07-06 07:03:26 -0700214 using namespace GrDefaultGeoProcFactory;
215
216 Color color(Color::kAttribute_Type);
217 Coverage::Type coverageType;
Brian Salomon92aee3d2016-12-21 09:20:25 -0500218 if (fOptimizations.canTweakAlphaForCoverage()) {
bsalomon4be9a302016-07-06 07:03:26 -0700219 coverageType = Coverage::kSolid_Type;
220 } else {
221 coverageType = Coverage::kAttribute_Type;
222 }
223 Coverage coverage(coverageType);
Brian Salomon6a639042016-12-14 11:08:17 -0500224 LocalCoords lc =
225 needLocalCoords ? LocalCoords::kHasExplicit_Type : LocalCoords::kUnused_Type;
226 sk_sp<GrGeometryProcessor> gp =
227 GrDefaultGeoProcFactory::Make(color, coverage, lc, SkMatrix::I());
bsalomon08d14152016-06-30 12:45:18 -0700228 if (!gp) {
229 SkDebugf("Couldn't create GrGeometryProcessor\n");
230 return;
231 }
232
233 size_t vertexStride = gp->getVertexStride();
bsalomon08d14152016-06-30 12:45:18 -0700234
Hal Canary144caf52016-11-07 17:57:18 -0500235 sk_sp<const GrBuffer> indexBuffer(get_index_buffer(target->resourceProvider()));
bsalomon08d14152016-06-30 12:45:18 -0700236 InstancedHelper helper;
Brian Salomon6a639042016-12-14 11:08:17 -0500237 void* vertices =
238 helper.init(target, kTriangles_GrPrimitiveType, vertexStride, indexBuffer.get(),
239 kVertsPerAAFillRect, kIndicesPerAAFillRect, fRectCnt);
bsalomon08d14152016-06-30 12:45:18 -0700240 if (!vertices || !indexBuffer) {
241 SkDebugf("Could not allocate vertices\n");
242 return;
243 }
244
bsalomon4be9a302016-07-06 07:03:26 -0700245 const RectInfo* info = this->first();
246 const SkMatrix* localMatrix = nullptr;
247 for (int i = 0; i < fRectCnt; i++) {
Brian Salomon6a639042016-12-14 11:08:17 -0500248 intptr_t verts =
249 reinterpret_cast<intptr_t>(vertices) + i * kVertsPerAAFillRect * vertexStride;
bsalomon4be9a302016-07-06 07:03:26 -0700250 if (needLocalCoords) {
251 if (info->hasLocalMatrix()) {
252 localMatrix = &static_cast<const RectWithLocalMatrixInfo*>(info)->localMatrix();
253 } else {
254 localMatrix = &SkMatrix::I();
255 }
256 }
Brian Salomon6a639042016-12-14 11:08:17 -0500257 generate_aa_fill_rect_geometry(verts, vertexStride, info->color(), info->viewMatrix(),
Brian Salomon92aee3d2016-12-21 09:20:25 -0500258 info->rect(), info->devRect(), fOptimizations,
259 localMatrix);
bsalomon4be9a302016-07-06 07:03:26 -0700260 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700261 }
262 helper.recordDraw(target, gp.get());
263 }
264
Brian Salomon25a88092016-12-01 09:36:50 -0500265 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon6a639042016-12-14 11:08:17 -0500266 AAFillRectOp* that = t->cast<AAFillRectOp>();
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700267 if (!GrPipeline::CanCombine(*this->pipeline(), this->bounds(), *that->pipeline(),
268 that->bounds(), caps)) {
269 return false;
270 }
271
Brian Salomon6a639042016-12-14 11:08:17 -0500272 // In the event of two ops, one who can tweak, one who cannot, we just fall back to not
273 // tweaking.
Brian Salomon92aee3d2016-12-21 09:20:25 -0500274 if (fOptimizations.canTweakAlphaForCoverage() &&
275 !that->fOptimizations.canTweakAlphaForCoverage()) {
276 fOptimizations = that->fOptimizations;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700277 }
278
bsalomon4be9a302016-07-06 07:03:26 -0700279 fRectData.push_back_n(that->fRectData.count(), that->fRectData.begin());
280 fRectCnt += that->fRectCnt;
bsalomon88cf17d2016-07-08 06:40:56 -0700281 this->joinBounds(*that);
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700282 return true;
283 }
284
285 struct RectInfo {
bsalomon4be9a302016-07-06 07:03:26 -0700286 public:
287 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
288 const SkRect& devRect)
Brian Salomon6a639042016-12-14 11:08:17 -0500289 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kNo) {}
bsalomon4be9a302016-07-06 07:03:26 -0700290 bool hasLocalMatrix() const { return HasLocalMatrix::kYes == fHasLocalMatrix; }
291 GrColor color() const { return fColor; }
292 const SkMatrix& viewMatrix() const { return fViewMatrix; }
293 const SkRect& rect() const { return fRect; }
294 const SkRect& devRect() const { return fDevRect; }
295
296 void setColor(GrColor color) { fColor = color; }
Brian Salomon6a639042016-12-14 11:08:17 -0500297
bsalomon4be9a302016-07-06 07:03:26 -0700298 protected:
299 enum class HasLocalMatrix : uint32_t { kNo, kYes };
300
301 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
302 const SkRect& devRect, HasLocalMatrix hasLM)
303 : fHasLocalMatrix(hasLM)
304 , fColor(color)
305 , fViewMatrix(viewMatrix)
306 , fRect(rect)
307 , fDevRect(devRect) {}
308
309 HasLocalMatrix fHasLocalMatrix;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700310 GrColor fColor;
311 SkMatrix fViewMatrix;
312 SkRect fRect;
313 SkRect fDevRect;
314 };
315
bsalomon4be9a302016-07-06 07:03:26 -0700316 struct RectWithLocalMatrixInfo : public RectInfo {
317 public:
318 RectWithLocalMatrixInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
319 const SkRect& devRect, const SkMatrix& localMatrix)
Brian Salomon6a639042016-12-14 11:08:17 -0500320 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kYes)
321 , fLocalMatrix(localMatrix) {}
bsalomon4be9a302016-07-06 07:03:26 -0700322 const SkMatrix& localMatrix() const { return fLocalMatrix; }
Brian Salomon6a639042016-12-14 11:08:17 -0500323
bsalomon4be9a302016-07-06 07:03:26 -0700324 private:
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700325 SkMatrix fLocalMatrix;
bsalomon0fdec8a2016-07-01 06:31:25 -0700326 };
327
bsalomon4be9a302016-07-06 07:03:26 -0700328 RectInfo* first() { return reinterpret_cast<RectInfo*>(fRectData.begin()); }
329 const RectInfo* first() const { return reinterpret_cast<const RectInfo*>(fRectData.begin()); }
330 const RectInfo* next(const RectInfo* prev) const {
Brian Salomon6a639042016-12-14 11:08:17 -0500331 intptr_t next =
332 reinterpret_cast<intptr_t>(prev) +
333 (prev->hasLocalMatrix() ? sizeof(RectWithLocalMatrixInfo) : sizeof(RectInfo));
bsalomon4be9a302016-07-06 07:03:26 -0700334 return reinterpret_cast<const RectInfo*>(next);
335 }
336
Brian Salomon92aee3d2016-12-21 09:20:25 -0500337 GrPipelineOptimizations fOptimizations;
bsalomon4be9a302016-07-06 07:03:26 -0700338 SkSTArray<4 * sizeof(RectWithLocalMatrixInfo), uint8_t, true> fRectData;
339 int fRectCnt;
bsalomon08d14152016-06-30 12:45:18 -0700340
Brian Salomondad29232016-12-01 16:40:24 -0500341 typedef GrMeshDrawOp INHERITED;
joshualitt147dc062015-08-12 11:51:46 -0700342};
343
Brian Salomon6a639042016-12-14 11:08:17 -0500344namespace GrAAFillRectOp {
joshualitt9ff64252015-08-10 09:03:51 -0700345
Brian Salomon6a639042016-12-14 11:08:17 -0500346sk_sp<GrDrawOp> Make(GrColor color,
347 const SkMatrix& viewMatrix,
348 const SkRect& rect,
349 const SkRect& devRect) {
350 return sk_sp<GrDrawOp>(new AAFillRectOp(color, viewMatrix, rect, devRect, nullptr));
joshualitt147dc062015-08-12 11:51:46 -0700351}
352
Brian Salomon6a639042016-12-14 11:08:17 -0500353sk_sp<GrDrawOp> Make(GrColor color,
354 const SkMatrix& viewMatrix,
355 const SkMatrix& localMatrix,
356 const SkRect& rect,
357 const SkRect& devRect) {
358 return sk_sp<GrDrawOp>(new AAFillRectOp(color, viewMatrix, rect, devRect, &localMatrix));
joshualitt9ff64252015-08-10 09:03:51 -0700359}
360
Brian Salomon6a639042016-12-14 11:08:17 -0500361sk_sp<GrDrawOp> Make(GrColor color,
362 const SkMatrix& viewMatrix,
363 const SkMatrix& localMatrix,
364 const SkRect& rect) {
bsalomonc55271f2015-11-09 11:55:57 -0800365 SkRect devRect;
366 viewMatrix.mapRect(&devRect, rect);
Brian Salomon6a639042016-12-14 11:08:17 -0500367 return Make(color, viewMatrix, localMatrix, rect, devRect);
bsalomonc55271f2015-11-09 11:55:57 -0800368}
369
Brian Salomon6a639042016-12-14 11:08:17 -0500370sk_sp<GrDrawOp> MakeWithLocalRect(GrColor color,
371 const SkMatrix& viewMatrix,
372 const SkRect& rect,
373 const SkRect& localRect) {
bsalomonc55271f2015-11-09 11:55:57 -0800374 SkRect devRect;
375 viewMatrix.mapRect(&devRect, rect);
376 SkMatrix localMatrix;
377 if (!localMatrix.setRectToRect(rect, localRect, SkMatrix::kFill_ScaleToFit)) {
378 return nullptr;
379 }
Brian Salomon6a639042016-12-14 11:08:17 -0500380 return Make(color, viewMatrix, localMatrix, rect, devRect);
bsalomonc55271f2015-11-09 11:55:57 -0800381}
joshualitt37eb1842015-08-12 06:36:57 -0700382};
383
joshualitt9ff64252015-08-10 09:03:51 -0700384///////////////////////////////////////////////////////////////////////////////////////////////////
385
386#ifdef GR_TEST_UTILS
387
Brian Salomon5ec9def2016-12-20 15:34:05 -0500388#include "GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700389
Brian Salomon5ec9def2016-12-20 15:34:05 -0500390DRAW_OP_TEST_DEFINE(AAFillRectOp) {
joshualitt090ae8e2015-08-14 09:01:21 -0700391 GrColor color = GrRandomColor(random);
392 SkMatrix viewMatrix = GrTest::TestMatrixInvertible(random);
393 SkRect rect = GrTest::TestRect(random);
394 SkRect devRect = GrTest::TestRect(random);
Brian Salomon5ec9def2016-12-20 15:34:05 -0500395 return GrAAFillRectOp::Make(color, viewMatrix, rect, devRect);
joshualitt147dc062015-08-12 11:51:46 -0700396}
397
Brian Salomon5ec9def2016-12-20 15:34:05 -0500398DRAW_OP_TEST_DEFINE(AAFillRectOpLocalMatrix) {
joshualitt090ae8e2015-08-14 09:01:21 -0700399 GrColor color = GrRandomColor(random);
400 SkMatrix viewMatrix = GrTest::TestMatrixInvertible(random);
401 SkMatrix localMatrix = GrTest::TestMatrix(random);
402 SkRect rect = GrTest::TestRect(random);
403 SkRect devRect = GrTest::TestRect(random);
Brian Salomon5ec9def2016-12-20 15:34:05 -0500404 return GrAAFillRectOp::Make(color, viewMatrix, localMatrix, rect, devRect);
joshualitt9ff64252015-08-10 09:03:51 -0700405}
406
407#endif