blob: 45f29524d579f7259a496666047bfa859d196a6a [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
joshualitt37eb1842015-08-12 06:36:57 -07008#include "GrColor.h"
joshualitt9ff64252015-08-10 09:03:51 -07009#include "GrDefaultGeoProcFactory.h"
Brian Salomondad29232016-12-01 16:40:24 -050010#include "GrMeshDrawOp.h"
Brian Salomon742e31d2016-12-07 17:06:19 -050011#include "GrOpFlushState.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040012#include "GrRectOpFactory.h"
joshualitt9ff64252015-08-10 09:03:51 -070013#include "GrResourceKey.h"
14#include "GrResourceProvider.h"
joshualitt37eb1842015-08-12 06:36:57 -070015#include "GrTypes.h"
16#include "SkMatrix.h"
Brian Salomon8fb37252018-01-05 10:50:55 -050017#include "SkMatrixPriv.h"
joshualitt37eb1842015-08-12 06:36:57 -070018#include "SkRect.h"
Cary Clark74f623d2017-11-06 20:02:02 -050019#include "SkPointPriv.h"
Brian Salomonbaaf4392017-06-15 09:59:23 -040020#include "ops/GrSimpleMeshDrawOpHelper.h"
Mike Klein79aea6a2018-06-11 10:45:26 -040021#include <new>
joshualitt9ff64252015-08-10 09:03:51 -070022
23GR_DECLARE_STATIC_UNIQUE_KEY(gAAFillRectIndexBufferKey);
24
Brian Salomonbaaf4392017-06-15 09:59:23 -040025static inline bool view_matrix_ok_for_aa_fill_rect(const SkMatrix& viewMatrix) {
26 return viewMatrix.preservesRightAngles();
27}
28
29static inline void set_inset_fan(SkPoint* pts, size_t stride, const SkRect& r, SkScalar dx,
30 SkScalar dy) {
Cary Clark74f623d2017-11-06 20:02:02 -050031 SkPointPriv::SetRectFan(pts, r.fLeft + dx, r.fTop + dy, r.fRight - dx, r.fBottom - dy, stride);
joshualitt9ff64252015-08-10 09:03:51 -070032}
33
joshualitt27801bf2015-08-12 12:52:47 -070034static const int kNumAAFillRectsInIndexBuffer = 256;
35static const int kVertsPerAAFillRect = 8;
36static const int kIndicesPerAAFillRect = 30;
37
Brian Salomond28a79d2017-10-16 13:01:07 -040038static sk_sp<const GrBuffer> get_index_buffer(GrResourceProvider* resourceProvider) {
joshualitt27801bf2015-08-12 12:52:47 -070039 GR_DEFINE_STATIC_UNIQUE_KEY(gAAFillRectIndexBufferKey);
40
Brian Salomon6a639042016-12-14 11:08:17 -050041 // clang-format off
joshualitt27801bf2015-08-12 12:52:47 -070042 static const uint16_t gFillAARectIdx[] = {
43 0, 1, 5, 5, 4, 0,
44 1, 2, 6, 6, 5, 1,
45 2, 3, 7, 7, 6, 2,
46 3, 0, 4, 4, 7, 3,
47 4, 5, 6, 6, 7, 4,
48 };
Brian Salomon6a639042016-12-14 11:08:17 -050049 // clang-format on
50
joshualitt27801bf2015-08-12 12:52:47 -070051 GR_STATIC_ASSERT(SK_ARRAY_COUNT(gFillAARectIdx) == kIndicesPerAAFillRect);
Chris Daltonff926502017-05-03 14:36:54 -040052 return resourceProvider->findOrCreatePatternedIndexBuffer(
Brian Salomon6a639042016-12-14 11:08:17 -050053 gFillAARectIdx, kIndicesPerAAFillRect, kNumAAFillRectsInIndexBuffer,
54 kVertsPerAAFillRect, gAAFillRectIndexBufferKey);
joshualitt27801bf2015-08-12 12:52:47 -070055}
56
joshualittcd47b712015-08-18 07:25:38 -070057static void generate_aa_fill_rect_geometry(intptr_t verts,
58 size_t vertexStride,
59 GrColor color,
60 const SkMatrix& viewMatrix,
61 const SkRect& rect,
62 const SkRect& devRect,
Brian Salomonecea86a2017-01-04 13:25:17 -050063 bool tweakAlphaForCoverage,
joshualittcd47b712015-08-18 07:25:38 -070064 const SkMatrix* localMatrix) {
65 SkPoint* fan0Pos = reinterpret_cast<SkPoint*>(verts);
66 SkPoint* fan1Pos = reinterpret_cast<SkPoint*>(verts + 4 * vertexStride);
67
robertphillips0851d2d2016-06-02 05:21:34 -070068 SkScalar inset;
joshualittcd47b712015-08-18 07:25:38 -070069
70 if (viewMatrix.rectStaysRect()) {
robertphillips0851d2d2016-06-02 05:21:34 -070071 inset = SkMinScalar(devRect.width(), SK_Scalar1);
72 inset = SK_ScalarHalf * SkMinScalar(inset, devRect.height());
73
joshualittcd47b712015-08-18 07:25:38 -070074 set_inset_fan(fan0Pos, vertexStride, devRect, -SK_ScalarHalf, -SK_ScalarHalf);
Brian Salomon6a639042016-12-14 11:08:17 -050075 set_inset_fan(fan1Pos, vertexStride, devRect, inset, inset);
joshualittcd47b712015-08-18 07:25:38 -070076 } else {
77 // compute transformed (1, 0) and (0, 1) vectors
Brian Salomon6a639042016-12-14 11:08:17 -050078 SkVector vec[2] = {{viewMatrix[SkMatrix::kMScaleX], viewMatrix[SkMatrix::kMSkewY]},
79 {viewMatrix[SkMatrix::kMSkewX], viewMatrix[SkMatrix::kMScaleY]}};
joshualittcd47b712015-08-18 07:25:38 -070080
robertphillips0851d2d2016-06-02 05:21:34 -070081 SkScalar len1 = SkPoint::Normalize(&vec[0]);
joshualittcd47b712015-08-18 07:25:38 -070082 vec[0].scale(SK_ScalarHalf);
robertphillips0851d2d2016-06-02 05:21:34 -070083 SkScalar len2 = SkPoint::Normalize(&vec[1]);
joshualittcd47b712015-08-18 07:25:38 -070084 vec[1].scale(SK_ScalarHalf);
85
robertphillips0851d2d2016-06-02 05:21:34 -070086 inset = SkMinScalar(len1 * rect.width(), SK_Scalar1);
87 inset = SK_ScalarHalf * SkMinScalar(inset, len2 * rect.height());
88
joshualittcd47b712015-08-18 07:25:38 -070089 // create the rotated rect
Cary Clark74f623d2017-11-06 20:02:02 -050090 SkPointPriv::SetRectFan(fan0Pos, rect.fLeft, rect.fTop, rect.fRight, rect.fBottom,
91 vertexStride);
Brian Salomonfa3783f2018-01-05 13:49:07 -050092 SkMatrixPriv::MapPointsWithStride(viewMatrix, fan0Pos, vertexStride, 4);
joshualittcd47b712015-08-18 07:25:38 -070093
94 // Now create the inset points and then outset the original
95 // rotated points
96
97 // TL
98 *((SkPoint*)((intptr_t)fan1Pos + 0 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -050099 *((SkPoint*)((intptr_t)fan0Pos + 0 * vertexStride)) + vec[0] + vec[1];
joshualittcd47b712015-08-18 07:25:38 -0700100 *((SkPoint*)((intptr_t)fan0Pos + 0 * vertexStride)) -= vec[0] + vec[1];
101 // BL
102 *((SkPoint*)((intptr_t)fan1Pos + 1 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -0500103 *((SkPoint*)((intptr_t)fan0Pos + 1 * vertexStride)) + vec[0] - vec[1];
joshualittcd47b712015-08-18 07:25:38 -0700104 *((SkPoint*)((intptr_t)fan0Pos + 1 * vertexStride)) -= vec[0] - vec[1];
105 // BR
106 *((SkPoint*)((intptr_t)fan1Pos + 2 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -0500107 *((SkPoint*)((intptr_t)fan0Pos + 2 * vertexStride)) - vec[0] - vec[1];
joshualittcd47b712015-08-18 07:25:38 -0700108 *((SkPoint*)((intptr_t)fan0Pos + 2 * vertexStride)) += vec[0] + vec[1];
109 // TR
110 *((SkPoint*)((intptr_t)fan1Pos + 3 * vertexStride)) =
Brian Salomon6a639042016-12-14 11:08:17 -0500111 *((SkPoint*)((intptr_t)fan0Pos + 3 * vertexStride)) - vec[0] + vec[1];
joshualittcd47b712015-08-18 07:25:38 -0700112 *((SkPoint*)((intptr_t)fan0Pos + 3 * vertexStride)) += vec[0] - vec[1];
113 }
114
115 if (localMatrix) {
116 SkMatrix invViewMatrix;
117 if (!viewMatrix.invert(&invViewMatrix)) {
bsalomon4be9a302016-07-06 07:03:26 -0700118 SkDebugf("View matrix is non-invertible, local coords will be wrong.");
joshualittcd47b712015-08-18 07:25:38 -0700119 invViewMatrix = SkMatrix::I();
120 }
121 SkMatrix localCoordMatrix;
122 localCoordMatrix.setConcat(*localMatrix, invViewMatrix);
123 SkPoint* fan0Loc = reinterpret_cast<SkPoint*>(verts + sizeof(SkPoint) + sizeof(GrColor));
Brian Salomon7c2192b2018-01-08 09:47:57 -0500124 SkMatrixPriv::MapPointsWithStride(localCoordMatrix, fan0Loc, vertexStride, fan0Pos,
125 vertexStride, 8);
joshualittcd47b712015-08-18 07:25:38 -0700126 }
127
joshualittcd47b712015-08-18 07:25:38 -0700128 // Make verts point to vertex color and then set all the color and coverage vertex attrs
129 // values.
130 verts += sizeof(SkPoint);
131
132 // The coverage offset is always the last vertex attribute
133 intptr_t coverageOffset = vertexStride - sizeof(GrColor) - sizeof(SkPoint);
134 for (int i = 0; i < 4; ++i) {
135 if (tweakAlphaForCoverage) {
136 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = 0;
137 } else {
138 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
139 *reinterpret_cast<float*>(verts + i * vertexStride + coverageOffset) = 0;
140 }
141 }
142
143 int scale;
144 if (inset < SK_ScalarHalf) {
145 scale = SkScalarFloorToInt(512.0f * inset / (inset + SK_ScalarHalf));
146 SkASSERT(scale >= 0 && scale <= 255);
147 } else {
148 scale = 0xff;
149 }
150
151 verts += 4 * vertexStride;
152
153 float innerCoverage = GrNormalizeByteToFloat(scale);
154 GrColor scaledColor = (0xff == scale) ? color : SkAlphaMulQ(color, scale);
155
156 for (int i = 0; i < 4; ++i) {
157 if (tweakAlphaForCoverage) {
158 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = scaledColor;
159 } else {
160 *reinterpret_cast<GrColor*>(verts + i * vertexStride) = color;
Brian Salomon6a639042016-12-14 11:08:17 -0500161 *reinterpret_cast<float*>(verts + i * vertexStride + coverageOffset) = innerCoverage;
joshualittcd47b712015-08-18 07:25:38 -0700162 }
163 }
164}
Brian Salomon6a639042016-12-14 11:08:17 -0500165
Brian Salomonbaaf4392017-06-15 09:59:23 -0400166namespace {
167
168class AAFillRectOp final : public GrMeshDrawOp {
169private:
170 using Helper = GrSimpleMeshDrawOpHelperWithStencil;
171
joshualitt2ad37be2015-08-18 10:16:01 -0700172public:
Brian Salomon25a88092016-12-01 09:36:50 -0500173 DEFINE_OP_CLASS_ID
bsalomon4be9a302016-07-06 07:03:26 -0700174
Brian Salomonbaaf4392017-06-15 09:59:23 -0400175 static std::unique_ptr<GrDrawOp> Make(GrPaint&& paint,
176 const SkMatrix& viewMatrix,
177 const SkRect& rect,
178 const SkRect& devRect,
179 const SkMatrix* localMatrix,
180 const GrUserStencilSettings* stencil) {
181 SkASSERT(view_matrix_ok_for_aa_fill_rect(viewMatrix));
182 return Helper::FactoryHelper<AAFillRectOp>(std::move(paint), viewMatrix, rect, devRect,
183 localMatrix, stencil);
184 }
185
186 AAFillRectOp(const Helper::MakeArgs& helperArgs,
187 GrColor color,
Brian Salomon6a639042016-12-14 11:08:17 -0500188 const SkMatrix& viewMatrix,
189 const SkRect& rect,
190 const SkRect& devRect,
Brian Salomonbaaf4392017-06-15 09:59:23 -0400191 const SkMatrix* localMatrix,
192 const GrUserStencilSettings* stencil)
193 : INHERITED(ClassID()), fHelper(helperArgs, GrAAType::kCoverage, stencil) {
bsalomon4be9a302016-07-06 07:03:26 -0700194 if (localMatrix) {
195 void* mem = fRectData.push_back_n(sizeof(RectWithLocalMatrixInfo));
196 new (mem) RectWithLocalMatrixInfo(color, viewMatrix, rect, devRect, *localMatrix);
197 } else {
198 void* mem = fRectData.push_back_n(sizeof(RectInfo));
199 new (mem) RectInfo(color, viewMatrix, rect, devRect);
200 }
Brian Salomon6a639042016-12-14 11:08:17 -0500201 IsZeroArea zeroArea =
202 (!rect.width() || !rect.height()) ? IsZeroArea::kYes : IsZeroArea::kNo;
bsalomon88cf17d2016-07-08 06:40:56 -0700203 this->setBounds(devRect, HasAABloat::kYes, zeroArea);
bsalomon4be9a302016-07-06 07:03:26 -0700204 fRectCnt = 1;
bsalomon0fdec8a2016-07-01 06:31:25 -0700205 }
bsalomon08d14152016-06-30 12:45:18 -0700206
Brian Salomon6a639042016-12-14 11:08:17 -0500207 const char* name() const override { return "AAFillRectOp"; }
bsalomon08d14152016-06-30 12:45:18 -0700208
Robert Phillipsf1748f52017-09-14 14:11:24 -0400209 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400210 fHelper.visitProxies(func);
211 }
212
bsalomon08d14152016-06-30 12:45:18 -0700213 SkString dumpInfo() const override {
214 SkString str;
Robert Phillipsf5442bb2017-04-17 14:18:34 -0400215 str.append(INHERITED::dumpInfo());
Brian Salomon53e4c3c2016-12-21 11:38:53 -0500216 str.appendf("# combined: %d\n", fRectCnt);
bsalomon4be9a302016-07-06 07:03:26 -0700217 const RectInfo* info = this->first();
218 for (int i = 0; i < fRectCnt; ++i) {
219 const SkRect& rect = info->rect();
Brian Salomon6a639042016-12-14 11:08:17 -0500220 str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n", i,
221 info->color(), rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
bsalomon4be9a302016-07-06 07:03:26 -0700222 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700223 }
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400224 str += fHelper.dumpInfo();
225 str += INHERITED::dumpInfo();
bsalomon08d14152016-06-30 12:45:18 -0700226 return str;
227 }
228
Brian Salomonbaaf4392017-06-15 09:59:23 -0400229 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
230
Brian Osman9a725dd2017-09-20 09:53:22 -0400231 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip,
232 GrPixelConfigIsClamped dstIsClamped) override {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400233 GrColor color = this->first()->color();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400234 auto result = fHelper.xpRequiresDstTexture(
Brian Osman9a725dd2017-09-20 09:53:22 -0400235 caps, clip, dstIsClamped, GrProcessorAnalysisCoverage::kSingleChannel, &color);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400236 this->first()->setColor(color);
237 return result;
bsalomon08d14152016-06-30 12:45:18 -0700238 }
239
bsalomon08d14152016-06-30 12:45:18 -0700240private:
Brian Salomon91326c32017-08-09 16:02:19 -0400241 void onPrepareDraws(Target* target) override {
bsalomon4be9a302016-07-06 07:03:26 -0700242 using namespace GrDefaultGeoProcFactory;
243
Brian Salomon3de0aee2017-01-29 09:34:17 -0500244 Color color(Color::kPremulGrColorAttribute_Type);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400245 Coverage::Type coverageType = fHelper.compatibleWithAlphaAsCoverage()
246 ? Coverage::kSolid_Type
247 : Coverage::kAttribute_Type;
248 LocalCoords lc = fHelper.usesLocalCoords() ? LocalCoords::kHasExplicit_Type
249 : LocalCoords::kUnused_Type;
Brian Salomon6a639042016-12-14 11:08:17 -0500250 sk_sp<GrGeometryProcessor> gp =
Brian Salomon8c852be2017-01-04 10:44:42 -0500251 GrDefaultGeoProcFactory::Make(color, coverageType, lc, SkMatrix::I());
bsalomon08d14152016-06-30 12:45:18 -0700252 if (!gp) {
253 SkDebugf("Couldn't create GrGeometryProcessor\n");
254 return;
255 }
256
257 size_t vertexStride = gp->getVertexStride();
bsalomon08d14152016-06-30 12:45:18 -0700258
Brian Salomond28a79d2017-10-16 13:01:07 -0400259 sk_sp<const GrBuffer> indexBuffer = get_index_buffer(target->resourceProvider());
Chris Dalton3809bab2017-06-13 10:55:06 -0600260 PatternHelper helper(GrPrimitiveType::kTriangles);
Brian Salomon6a639042016-12-14 11:08:17 -0500261 void* vertices =
Chris Daltonbca46e22017-05-15 11:03:26 -0600262 helper.init(target, vertexStride, indexBuffer.get(), kVertsPerAAFillRect,
263 kIndicesPerAAFillRect, fRectCnt);
bsalomon08d14152016-06-30 12:45:18 -0700264 if (!vertices || !indexBuffer) {
265 SkDebugf("Could not allocate vertices\n");
266 return;
267 }
268
bsalomon4be9a302016-07-06 07:03:26 -0700269 const RectInfo* info = this->first();
270 const SkMatrix* localMatrix = nullptr;
271 for (int i = 0; i < fRectCnt; i++) {
Brian Salomon6a639042016-12-14 11:08:17 -0500272 intptr_t verts =
273 reinterpret_cast<intptr_t>(vertices) + i * kVertsPerAAFillRect * vertexStride;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400274 if (fHelper.usesLocalCoords()) {
bsalomon4be9a302016-07-06 07:03:26 -0700275 if (info->hasLocalMatrix()) {
276 localMatrix = &static_cast<const RectWithLocalMatrixInfo*>(info)->localMatrix();
277 } else {
278 localMatrix = &SkMatrix::I();
279 }
280 }
Brian Salomon6a639042016-12-14 11:08:17 -0500281 generate_aa_fill_rect_geometry(verts, vertexStride, info->color(), info->viewMatrix(),
Brian Salomonbaaf4392017-06-15 09:59:23 -0400282 info->rect(), info->devRect(),
283 fHelper.compatibleWithAlphaAsCoverage(), localMatrix);
bsalomon4be9a302016-07-06 07:03:26 -0700284 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700285 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400286 helper.recordDraw(target, gp.get(), fHelper.makePipeline(target));
bsalomon08d14152016-06-30 12:45:18 -0700287 }
288
Brian Salomon25a88092016-12-01 09:36:50 -0500289 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon6a639042016-12-14 11:08:17 -0500290 AAFillRectOp* that = t->cast<AAFillRectOp>();
Brian Salomonbaaf4392017-06-15 09:59:23 -0400291 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700292 return false;
293 }
294
bsalomon4be9a302016-07-06 07:03:26 -0700295 fRectData.push_back_n(that->fRectData.count(), that->fRectData.begin());
296 fRectCnt += that->fRectCnt;
bsalomon88cf17d2016-07-08 06:40:56 -0700297 this->joinBounds(*that);
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700298 return true;
299 }
300
301 struct RectInfo {
bsalomon4be9a302016-07-06 07:03:26 -0700302 public:
303 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
304 const SkRect& devRect)
Brian Salomon6a639042016-12-14 11:08:17 -0500305 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kNo) {}
bsalomon4be9a302016-07-06 07:03:26 -0700306 bool hasLocalMatrix() const { return HasLocalMatrix::kYes == fHasLocalMatrix; }
307 GrColor color() const { return fColor; }
308 const SkMatrix& viewMatrix() const { return fViewMatrix; }
309 const SkRect& rect() const { return fRect; }
310 const SkRect& devRect() const { return fDevRect; }
311
312 void setColor(GrColor color) { fColor = color; }
Brian Salomon6a639042016-12-14 11:08:17 -0500313
bsalomon4be9a302016-07-06 07:03:26 -0700314 protected:
315 enum class HasLocalMatrix : uint32_t { kNo, kYes };
316
317 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
318 const SkRect& devRect, HasLocalMatrix hasLM)
319 : fHasLocalMatrix(hasLM)
320 , fColor(color)
321 , fViewMatrix(viewMatrix)
322 , fRect(rect)
323 , fDevRect(devRect) {}
324
325 HasLocalMatrix fHasLocalMatrix;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700326 GrColor fColor;
327 SkMatrix fViewMatrix;
328 SkRect fRect;
329 SkRect fDevRect;
330 };
331
bsalomon4be9a302016-07-06 07:03:26 -0700332 struct RectWithLocalMatrixInfo : public RectInfo {
333 public:
334 RectWithLocalMatrixInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
335 const SkRect& devRect, const SkMatrix& localMatrix)
Brian Salomon6a639042016-12-14 11:08:17 -0500336 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kYes)
337 , fLocalMatrix(localMatrix) {}
bsalomon4be9a302016-07-06 07:03:26 -0700338 const SkMatrix& localMatrix() const { return fLocalMatrix; }
Brian Salomon6a639042016-12-14 11:08:17 -0500339
bsalomon4be9a302016-07-06 07:03:26 -0700340 private:
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700341 SkMatrix fLocalMatrix;
bsalomon0fdec8a2016-07-01 06:31:25 -0700342 };
343
bsalomon4be9a302016-07-06 07:03:26 -0700344 RectInfo* first() { return reinterpret_cast<RectInfo*>(fRectData.begin()); }
345 const RectInfo* first() const { return reinterpret_cast<const RectInfo*>(fRectData.begin()); }
346 const RectInfo* next(const RectInfo* prev) const {
Brian Salomon6a639042016-12-14 11:08:17 -0500347 intptr_t next =
348 reinterpret_cast<intptr_t>(prev) +
349 (prev->hasLocalMatrix() ? sizeof(RectWithLocalMatrixInfo) : sizeof(RectInfo));
bsalomon4be9a302016-07-06 07:03:26 -0700350 return reinterpret_cast<const RectInfo*>(next);
351 }
352
bsalomon4be9a302016-07-06 07:03:26 -0700353 SkSTArray<4 * sizeof(RectWithLocalMatrixInfo), uint8_t, true> fRectData;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400354 Helper fHelper;
bsalomon4be9a302016-07-06 07:03:26 -0700355 int fRectCnt;
bsalomon08d14152016-06-30 12:45:18 -0700356
Brian Salomonbaaf4392017-06-15 09:59:23 -0400357 typedef GrMeshDrawOp INHERITED;
joshualitt147dc062015-08-12 11:51:46 -0700358};
359
Brian Salomonbaaf4392017-06-15 09:59:23 -0400360} // anonymous namespace
joshualitt9ff64252015-08-10 09:03:51 -0700361
Brian Salomonbaaf4392017-06-15 09:59:23 -0400362namespace GrRectOpFactory {
joshualitt147dc062015-08-12 11:51:46 -0700363
Brian Salomonbaaf4392017-06-15 09:59:23 -0400364std::unique_ptr<GrDrawOp> MakeAAFill(GrPaint&& paint, const SkMatrix& viewMatrix,
365 const SkRect& rect, const GrUserStencilSettings* stencil) {
366 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
367 return nullptr;
368 }
bsalomonc55271f2015-11-09 11:55:57 -0800369 SkRect devRect;
370 viewMatrix.mapRect(&devRect, rect);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400371 return AAFillRectOp::Make(std::move(paint), viewMatrix, rect, devRect, nullptr, stencil);
bsalomonc55271f2015-11-09 11:55:57 -0800372}
373
Brian Salomonbaaf4392017-06-15 09:59:23 -0400374std::unique_ptr<GrDrawOp> MakeAAFillWithLocalMatrix(GrPaint&& paint, const SkMatrix& viewMatrix,
375 const SkMatrix& localMatrix,
376 const SkRect& rect) {
377 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
378 return nullptr;
379 }
380 SkRect devRect;
381 viewMatrix.mapRect(&devRect, rect);
382 return AAFillRectOp::Make(std::move(paint), viewMatrix, rect, devRect, &localMatrix, nullptr);
383}
384
385std::unique_ptr<GrDrawOp> MakeAAFillWithLocalRect(GrPaint&& paint, const SkMatrix& viewMatrix,
386 const SkRect& rect, const SkRect& localRect) {
387 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
388 return nullptr;
389 }
bsalomonc55271f2015-11-09 11:55:57 -0800390 SkRect devRect;
391 viewMatrix.mapRect(&devRect, rect);
392 SkMatrix localMatrix;
393 if (!localMatrix.setRectToRect(rect, localRect, SkMatrix::kFill_ScaleToFit)) {
394 return nullptr;
395 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400396 return AAFillRectOp::Make(std::move(paint), viewMatrix, rect, devRect, &localMatrix, nullptr);
bsalomonc55271f2015-11-09 11:55:57 -0800397}
Brian Salomonbaaf4392017-06-15 09:59:23 -0400398
399} // namespace GrRectOpFactory
joshualitt37eb1842015-08-12 06:36:57 -0700400
joshualitt9ff64252015-08-10 09:03:51 -0700401///////////////////////////////////////////////////////////////////////////////////////////////////
402
Hal Canary6f6961e2017-01-31 13:50:44 -0500403#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700404
Brian Salomon5ec9def2016-12-20 15:34:05 -0500405#include "GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700406
Brian Salomonbaaf4392017-06-15 09:59:23 -0400407GR_DRAW_OP_TEST_DEFINE(AAFillRectOp) {
408 SkMatrix viewMatrix;
409 do {
410 viewMatrix = GrTest::TestMatrixInvertible(random);
411 } while (!view_matrix_ok_for_aa_fill_rect(viewMatrix));
joshualitt090ae8e2015-08-14 09:01:21 -0700412 SkRect rect = GrTest::TestRect(random);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400413 SkRect devRect;
414 viewMatrix.mapRect(&devRect, rect);
415 const SkMatrix* localMatrix = nullptr;
416 SkMatrix m;
417 if (random->nextBool()) {
418 m = GrTest::TestMatrix(random);
419 }
420 const GrUserStencilSettings* stencil =
421 random->nextBool() ? nullptr : GrGetRandomStencil(random, context);
422 return AAFillRectOp::Make(std::move(paint), viewMatrix, rect, devRect, localMatrix, stencil);
joshualitt9ff64252015-08-10 09:03:51 -0700423}
424
425#endif