blob: 5472f11f71d4c34963d2b49399aaeb8decc8e0d0 [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
Robert Phillips7c525e62018-06-12 10:11:12 -0400175 static std::unique_ptr<GrDrawOp> Make(GrContext* context,
176 GrPaint&& paint,
Brian Salomonbaaf4392017-06-15 09:59:23 -0400177 const SkMatrix& viewMatrix,
178 const SkRect& rect,
179 const SkRect& devRect,
180 const SkMatrix* localMatrix,
181 const GrUserStencilSettings* stencil) {
182 SkASSERT(view_matrix_ok_for_aa_fill_rect(viewMatrix));
Robert Phillips7c525e62018-06-12 10:11:12 -0400183 return Helper::FactoryHelper<AAFillRectOp>(context, std::move(paint), viewMatrix, rect,
184 devRect, localMatrix, stencil);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400185 }
186
187 AAFillRectOp(const Helper::MakeArgs& helperArgs,
188 GrColor color,
Brian Salomon6a639042016-12-14 11:08:17 -0500189 const SkMatrix& viewMatrix,
190 const SkRect& rect,
191 const SkRect& devRect,
Brian Salomonbaaf4392017-06-15 09:59:23 -0400192 const SkMatrix* localMatrix,
193 const GrUserStencilSettings* stencil)
194 : INHERITED(ClassID()), fHelper(helperArgs, GrAAType::kCoverage, stencil) {
bsalomon4be9a302016-07-06 07:03:26 -0700195 if (localMatrix) {
196 void* mem = fRectData.push_back_n(sizeof(RectWithLocalMatrixInfo));
197 new (mem) RectWithLocalMatrixInfo(color, viewMatrix, rect, devRect, *localMatrix);
198 } else {
199 void* mem = fRectData.push_back_n(sizeof(RectInfo));
200 new (mem) RectInfo(color, viewMatrix, rect, devRect);
201 }
Brian Salomon6a639042016-12-14 11:08:17 -0500202 IsZeroArea zeroArea =
203 (!rect.width() || !rect.height()) ? IsZeroArea::kYes : IsZeroArea::kNo;
bsalomon88cf17d2016-07-08 06:40:56 -0700204 this->setBounds(devRect, HasAABloat::kYes, zeroArea);
bsalomon4be9a302016-07-06 07:03:26 -0700205 fRectCnt = 1;
bsalomon0fdec8a2016-07-01 06:31:25 -0700206 }
bsalomon08d14152016-06-30 12:45:18 -0700207
Brian Salomon6a639042016-12-14 11:08:17 -0500208 const char* name() const override { return "AAFillRectOp"; }
bsalomon08d14152016-06-30 12:45:18 -0700209
Robert Phillipsf1748f52017-09-14 14:11:24 -0400210 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400211 fHelper.visitProxies(func);
212 }
213
bsalomon08d14152016-06-30 12:45:18 -0700214 SkString dumpInfo() const override {
215 SkString str;
Robert Phillipsf5442bb2017-04-17 14:18:34 -0400216 str.append(INHERITED::dumpInfo());
Brian Salomon53e4c3c2016-12-21 11:38:53 -0500217 str.appendf("# combined: %d\n", fRectCnt);
bsalomon4be9a302016-07-06 07:03:26 -0700218 const RectInfo* info = this->first();
219 for (int i = 0; i < fRectCnt; ++i) {
220 const SkRect& rect = info->rect();
Brian Salomon6a639042016-12-14 11:08:17 -0500221 str.appendf("%d: Color: 0x%08x, Rect [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n", i,
222 info->color(), rect.fLeft, rect.fTop, rect.fRight, rect.fBottom);
bsalomon4be9a302016-07-06 07:03:26 -0700223 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700224 }
Brian Salomon82dfd3d2017-06-14 12:30:35 -0400225 str += fHelper.dumpInfo();
226 str += INHERITED::dumpInfo();
bsalomon08d14152016-06-30 12:45:18 -0700227 return str;
228 }
229
Brian Salomonbaaf4392017-06-15 09:59:23 -0400230 FixedFunctionFlags fixedFunctionFlags() const override { return fHelper.fixedFunctionFlags(); }
231
Brian Osman9a725dd2017-09-20 09:53:22 -0400232 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip,
233 GrPixelConfigIsClamped dstIsClamped) override {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400234 GrColor color = this->first()->color();
Brian Salomonf86d37b2017-06-16 10:04:34 -0400235 auto result = fHelper.xpRequiresDstTexture(
Brian Osman9a725dd2017-09-20 09:53:22 -0400236 caps, clip, dstIsClamped, GrProcessorAnalysisCoverage::kSingleChannel, &color);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400237 this->first()->setColor(color);
238 return result;
bsalomon08d14152016-06-30 12:45:18 -0700239 }
240
bsalomon08d14152016-06-30 12:45:18 -0700241private:
Brian Salomon91326c32017-08-09 16:02:19 -0400242 void onPrepareDraws(Target* target) override {
bsalomon4be9a302016-07-06 07:03:26 -0700243 using namespace GrDefaultGeoProcFactory;
244
Brian Salomon3de0aee2017-01-29 09:34:17 -0500245 Color color(Color::kPremulGrColorAttribute_Type);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400246 Coverage::Type coverageType = fHelper.compatibleWithAlphaAsCoverage()
247 ? Coverage::kSolid_Type
248 : Coverage::kAttribute_Type;
249 LocalCoords lc = fHelper.usesLocalCoords() ? LocalCoords::kHasExplicit_Type
250 : LocalCoords::kUnused_Type;
Brian Salomon6a639042016-12-14 11:08:17 -0500251 sk_sp<GrGeometryProcessor> gp =
Brian Salomon8c852be2017-01-04 10:44:42 -0500252 GrDefaultGeoProcFactory::Make(color, coverageType, lc, SkMatrix::I());
bsalomon08d14152016-06-30 12:45:18 -0700253 if (!gp) {
254 SkDebugf("Couldn't create GrGeometryProcessor\n");
255 return;
256 }
257
258 size_t vertexStride = gp->getVertexStride();
bsalomon08d14152016-06-30 12:45:18 -0700259
Brian Salomond28a79d2017-10-16 13:01:07 -0400260 sk_sp<const GrBuffer> indexBuffer = get_index_buffer(target->resourceProvider());
Chris Dalton3809bab2017-06-13 10:55:06 -0600261 PatternHelper helper(GrPrimitiveType::kTriangles);
Brian Salomon6a639042016-12-14 11:08:17 -0500262 void* vertices =
Chris Daltonbca46e22017-05-15 11:03:26 -0600263 helper.init(target, vertexStride, indexBuffer.get(), kVertsPerAAFillRect,
264 kIndicesPerAAFillRect, fRectCnt);
bsalomon08d14152016-06-30 12:45:18 -0700265 if (!vertices || !indexBuffer) {
266 SkDebugf("Could not allocate vertices\n");
267 return;
268 }
269
bsalomon4be9a302016-07-06 07:03:26 -0700270 const RectInfo* info = this->first();
271 const SkMatrix* localMatrix = nullptr;
272 for (int i = 0; i < fRectCnt; i++) {
Brian Salomon6a639042016-12-14 11:08:17 -0500273 intptr_t verts =
274 reinterpret_cast<intptr_t>(vertices) + i * kVertsPerAAFillRect * vertexStride;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400275 if (fHelper.usesLocalCoords()) {
bsalomon4be9a302016-07-06 07:03:26 -0700276 if (info->hasLocalMatrix()) {
277 localMatrix = &static_cast<const RectWithLocalMatrixInfo*>(info)->localMatrix();
278 } else {
279 localMatrix = &SkMatrix::I();
280 }
281 }
Brian Salomon6a639042016-12-14 11:08:17 -0500282 generate_aa_fill_rect_geometry(verts, vertexStride, info->color(), info->viewMatrix(),
Brian Salomonbaaf4392017-06-15 09:59:23 -0400283 info->rect(), info->devRect(),
284 fHelper.compatibleWithAlphaAsCoverage(), localMatrix);
bsalomon4be9a302016-07-06 07:03:26 -0700285 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700286 }
Brian Salomonbaaf4392017-06-15 09:59:23 -0400287 helper.recordDraw(target, gp.get(), fHelper.makePipeline(target));
bsalomon08d14152016-06-30 12:45:18 -0700288 }
289
Brian Salomon25a88092016-12-01 09:36:50 -0500290 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon6a639042016-12-14 11:08:17 -0500291 AAFillRectOp* that = t->cast<AAFillRectOp>();
Brian Salomonbaaf4392017-06-15 09:59:23 -0400292 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700293 return false;
294 }
295
bsalomon4be9a302016-07-06 07:03:26 -0700296 fRectData.push_back_n(that->fRectData.count(), that->fRectData.begin());
297 fRectCnt += that->fRectCnt;
bsalomon88cf17d2016-07-08 06:40:56 -0700298 this->joinBounds(*that);
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700299 return true;
300 }
301
302 struct RectInfo {
bsalomon4be9a302016-07-06 07:03:26 -0700303 public:
304 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
305 const SkRect& devRect)
Brian Salomon6a639042016-12-14 11:08:17 -0500306 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kNo) {}
bsalomon4be9a302016-07-06 07:03:26 -0700307 bool hasLocalMatrix() const { return HasLocalMatrix::kYes == fHasLocalMatrix; }
308 GrColor color() const { return fColor; }
309 const SkMatrix& viewMatrix() const { return fViewMatrix; }
310 const SkRect& rect() const { return fRect; }
311 const SkRect& devRect() const { return fDevRect; }
312
313 void setColor(GrColor color) { fColor = color; }
Brian Salomon6a639042016-12-14 11:08:17 -0500314
bsalomon4be9a302016-07-06 07:03:26 -0700315 protected:
316 enum class HasLocalMatrix : uint32_t { kNo, kYes };
317
318 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
319 const SkRect& devRect, HasLocalMatrix hasLM)
320 : fHasLocalMatrix(hasLM)
321 , fColor(color)
322 , fViewMatrix(viewMatrix)
323 , fRect(rect)
324 , fDevRect(devRect) {}
325
326 HasLocalMatrix fHasLocalMatrix;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700327 GrColor fColor;
328 SkMatrix fViewMatrix;
329 SkRect fRect;
330 SkRect fDevRect;
331 };
332
bsalomon4be9a302016-07-06 07:03:26 -0700333 struct RectWithLocalMatrixInfo : public RectInfo {
334 public:
335 RectWithLocalMatrixInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
336 const SkRect& devRect, const SkMatrix& localMatrix)
Brian Salomon6a639042016-12-14 11:08:17 -0500337 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kYes)
338 , fLocalMatrix(localMatrix) {}
bsalomon4be9a302016-07-06 07:03:26 -0700339 const SkMatrix& localMatrix() const { return fLocalMatrix; }
Brian Salomon6a639042016-12-14 11:08:17 -0500340
bsalomon4be9a302016-07-06 07:03:26 -0700341 private:
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700342 SkMatrix fLocalMatrix;
bsalomon0fdec8a2016-07-01 06:31:25 -0700343 };
344
bsalomon4be9a302016-07-06 07:03:26 -0700345 RectInfo* first() { return reinterpret_cast<RectInfo*>(fRectData.begin()); }
346 const RectInfo* first() const { return reinterpret_cast<const RectInfo*>(fRectData.begin()); }
347 const RectInfo* next(const RectInfo* prev) const {
Brian Salomon6a639042016-12-14 11:08:17 -0500348 intptr_t next =
349 reinterpret_cast<intptr_t>(prev) +
350 (prev->hasLocalMatrix() ? sizeof(RectWithLocalMatrixInfo) : sizeof(RectInfo));
bsalomon4be9a302016-07-06 07:03:26 -0700351 return reinterpret_cast<const RectInfo*>(next);
352 }
353
bsalomon4be9a302016-07-06 07:03:26 -0700354 SkSTArray<4 * sizeof(RectWithLocalMatrixInfo), uint8_t, true> fRectData;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400355 Helper fHelper;
bsalomon4be9a302016-07-06 07:03:26 -0700356 int fRectCnt;
bsalomon08d14152016-06-30 12:45:18 -0700357
Brian Salomonbaaf4392017-06-15 09:59:23 -0400358 typedef GrMeshDrawOp INHERITED;
joshualitt147dc062015-08-12 11:51:46 -0700359};
360
Brian Salomonbaaf4392017-06-15 09:59:23 -0400361} // anonymous namespace
joshualitt9ff64252015-08-10 09:03:51 -0700362
Brian Salomonbaaf4392017-06-15 09:59:23 -0400363namespace GrRectOpFactory {
joshualitt147dc062015-08-12 11:51:46 -0700364
Robert Phillips7c525e62018-06-12 10:11:12 -0400365std::unique_ptr<GrDrawOp> MakeAAFill(GrContext* context,
366 GrPaint&& paint,
367 const SkMatrix& viewMatrix,
368 const SkRect& rect,
369 const GrUserStencilSettings* stencil) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400370 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
371 return nullptr;
372 }
bsalomonc55271f2015-11-09 11:55:57 -0800373 SkRect devRect;
374 viewMatrix.mapRect(&devRect, rect);
Robert Phillips7c525e62018-06-12 10:11:12 -0400375 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
376 nullptr, stencil);
bsalomonc55271f2015-11-09 11:55:57 -0800377}
378
Robert Phillips7c525e62018-06-12 10:11:12 -0400379std::unique_ptr<GrDrawOp> MakeAAFillWithLocalMatrix(GrContext* context,
380 GrPaint&& paint,
381 const SkMatrix& viewMatrix,
Brian Salomonbaaf4392017-06-15 09:59:23 -0400382 const SkMatrix& localMatrix,
383 const SkRect& rect) {
384 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
385 return nullptr;
386 }
387 SkRect devRect;
388 viewMatrix.mapRect(&devRect, rect);
Robert Phillips7c525e62018-06-12 10:11:12 -0400389 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
390 &localMatrix, nullptr);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400391}
392
Robert Phillips7c525e62018-06-12 10:11:12 -0400393std::unique_ptr<GrDrawOp> MakeAAFillWithLocalRect(GrContext* context,
394 GrPaint&& paint,
395 const SkMatrix& viewMatrix,
396 const SkRect& rect,
397 const SkRect& localRect) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400398 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
399 return nullptr;
400 }
bsalomonc55271f2015-11-09 11:55:57 -0800401 SkRect devRect;
402 viewMatrix.mapRect(&devRect, rect);
403 SkMatrix localMatrix;
404 if (!localMatrix.setRectToRect(rect, localRect, SkMatrix::kFill_ScaleToFit)) {
405 return nullptr;
406 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400407 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
408 &localMatrix, nullptr);
bsalomonc55271f2015-11-09 11:55:57 -0800409}
Brian Salomonbaaf4392017-06-15 09:59:23 -0400410
411} // namespace GrRectOpFactory
joshualitt37eb1842015-08-12 06:36:57 -0700412
joshualitt9ff64252015-08-10 09:03:51 -0700413///////////////////////////////////////////////////////////////////////////////////////////////////
414
Hal Canary6f6961e2017-01-31 13:50:44 -0500415#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700416
Brian Salomon5ec9def2016-12-20 15:34:05 -0500417#include "GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700418
Brian Salomonbaaf4392017-06-15 09:59:23 -0400419GR_DRAW_OP_TEST_DEFINE(AAFillRectOp) {
420 SkMatrix viewMatrix;
421 do {
422 viewMatrix = GrTest::TestMatrixInvertible(random);
423 } while (!view_matrix_ok_for_aa_fill_rect(viewMatrix));
joshualitt090ae8e2015-08-14 09:01:21 -0700424 SkRect rect = GrTest::TestRect(random);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400425 SkRect devRect;
426 viewMatrix.mapRect(&devRect, rect);
427 const SkMatrix* localMatrix = nullptr;
428 SkMatrix m;
429 if (random->nextBool()) {
430 m = GrTest::TestMatrix(random);
431 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400432 const GrUserStencilSettings* stencil = random->nextBool() ? nullptr
433 : GrGetRandomStencil(random, context);
434 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect,
435 devRect, localMatrix, stencil);
joshualitt9ff64252015-08-10 09:03:51 -0700436}
437
438#endif