blob: 9d66299ef01d2c9740ee85c101d9f81b930c144f [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 Osman532b3f92018-07-11 10:02:07 -0400232 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip) 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 Osman532b3f92018-07-11 10:02:07 -0400235 caps, clip, 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 Salomon92be2f72018-06-19 14:33:47 -0400244 size_t vertexStride = sizeof(SkPoint) + sizeof(GrColor);
Brian Salomon3de0aee2017-01-29 09:34:17 -0500245 Color color(Color::kPremulGrColorAttribute_Type);
Brian Salomon92be2f72018-06-19 14:33:47 -0400246 Coverage::Type coverageType = Coverage::kSolid_Type;
247 if (!fHelper.compatibleWithAlphaAsCoverage()) {
248 coverageType = Coverage::kAttribute_Type;
249 vertexStride += sizeof(float);
250 }
251 LocalCoords lc = LocalCoords::kUnused_Type;
252 if (fHelper.usesLocalCoords()) {
253 lc = LocalCoords::kHasExplicit_Type;
254 vertexStride += sizeof(SkPoint);
255 }
256
Brian Salomon6a639042016-12-14 11:08:17 -0500257 sk_sp<GrGeometryProcessor> gp =
Ruiqi Maob609e6d2018-07-17 10:19:38 -0400258 GrDefaultGeoProcFactory::Make(target->caps().shaderCaps(), color, coverageType,
259 lc, SkMatrix::I());
bsalomon08d14152016-06-30 12:45:18 -0700260 if (!gp) {
261 SkDebugf("Couldn't create GrGeometryProcessor\n");
262 return;
263 }
264
Brian Salomon92be2f72018-06-19 14:33:47 -0400265 SkASSERT(vertexStride == gp->debugOnly_vertexStride());
bsalomon08d14152016-06-30 12:45:18 -0700266
Brian Salomond28a79d2017-10-16 13:01:07 -0400267 sk_sp<const GrBuffer> indexBuffer = get_index_buffer(target->resourceProvider());
Brian Salomon7eae3e02018-08-07 14:02:38 +0000268 PatternHelper helper(target, GrPrimitiveType::kTriangles, vertexStride, indexBuffer.get(),
269 kVertsPerAAFillRect, kIndicesPerAAFillRect, fRectCnt);
270 void* vertices = helper.vertices();
bsalomon08d14152016-06-30 12:45:18 -0700271 if (!vertices || !indexBuffer) {
272 SkDebugf("Could not allocate vertices\n");
273 return;
274 }
275
bsalomon4be9a302016-07-06 07:03:26 -0700276 const RectInfo* info = this->first();
277 const SkMatrix* localMatrix = nullptr;
278 for (int i = 0; i < fRectCnt; i++) {
Brian Salomon6a639042016-12-14 11:08:17 -0500279 intptr_t verts =
280 reinterpret_cast<intptr_t>(vertices) + i * kVertsPerAAFillRect * vertexStride;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400281 if (fHelper.usesLocalCoords()) {
bsalomon4be9a302016-07-06 07:03:26 -0700282 if (info->hasLocalMatrix()) {
283 localMatrix = &static_cast<const RectWithLocalMatrixInfo*>(info)->localMatrix();
284 } else {
285 localMatrix = &SkMatrix::I();
286 }
287 }
Brian Salomon6a639042016-12-14 11:08:17 -0500288 generate_aa_fill_rect_geometry(verts, vertexStride, info->color(), info->viewMatrix(),
Brian Salomonbaaf4392017-06-15 09:59:23 -0400289 info->rect(), info->devRect(),
290 fHelper.compatibleWithAlphaAsCoverage(), localMatrix);
bsalomon4be9a302016-07-06 07:03:26 -0700291 info = this->next(info);
bsalomon08d14152016-06-30 12:45:18 -0700292 }
Brian Salomon49348902018-06-26 09:12:38 -0400293 auto pipe = fHelper.makePipeline(target);
Brian Salomon7eae3e02018-08-07 14:02:38 +0000294 helper.recordDraw(target, std::move(gp), pipe.fPipeline, pipe.fFixedDynamicState);
bsalomon08d14152016-06-30 12:45:18 -0700295 }
296
Brian Salomon7eae3e02018-08-07 14:02:38 +0000297 CombineResult onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon6a639042016-12-14 11:08:17 -0500298 AAFillRectOp* that = t->cast<AAFillRectOp>();
Brian Salomonbaaf4392017-06-15 09:59:23 -0400299 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000300 return CombineResult::kCannotCombine;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700301 }
302
bsalomon4be9a302016-07-06 07:03:26 -0700303 fRectData.push_back_n(that->fRectData.count(), that->fRectData.begin());
304 fRectCnt += that->fRectCnt;
bsalomon88cf17d2016-07-08 06:40:56 -0700305 this->joinBounds(*that);
Brian Salomon7eae3e02018-08-07 14:02:38 +0000306 return CombineResult::kMerged;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700307 }
308
309 struct RectInfo {
bsalomon4be9a302016-07-06 07:03:26 -0700310 public:
311 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
312 const SkRect& devRect)
Brian Salomon6a639042016-12-14 11:08:17 -0500313 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kNo) {}
bsalomon4be9a302016-07-06 07:03:26 -0700314 bool hasLocalMatrix() const { return HasLocalMatrix::kYes == fHasLocalMatrix; }
315 GrColor color() const { return fColor; }
316 const SkMatrix& viewMatrix() const { return fViewMatrix; }
317 const SkRect& rect() const { return fRect; }
318 const SkRect& devRect() const { return fDevRect; }
319
320 void setColor(GrColor color) { fColor = color; }
Brian Salomon6a639042016-12-14 11:08:17 -0500321
bsalomon4be9a302016-07-06 07:03:26 -0700322 protected:
323 enum class HasLocalMatrix : uint32_t { kNo, kYes };
324
325 RectInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
326 const SkRect& devRect, HasLocalMatrix hasLM)
327 : fHasLocalMatrix(hasLM)
328 , fColor(color)
329 , fViewMatrix(viewMatrix)
330 , fRect(rect)
331 , fDevRect(devRect) {}
332
333 HasLocalMatrix fHasLocalMatrix;
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700334 GrColor fColor;
335 SkMatrix fViewMatrix;
336 SkRect fRect;
337 SkRect fDevRect;
338 };
339
bsalomon4be9a302016-07-06 07:03:26 -0700340 struct RectWithLocalMatrixInfo : public RectInfo {
341 public:
342 RectWithLocalMatrixInfo(GrColor color, const SkMatrix& viewMatrix, const SkRect& rect,
343 const SkRect& devRect, const SkMatrix& localMatrix)
Brian Salomon6a639042016-12-14 11:08:17 -0500344 : RectInfo(color, viewMatrix, rect, devRect, HasLocalMatrix::kYes)
345 , fLocalMatrix(localMatrix) {}
bsalomon4be9a302016-07-06 07:03:26 -0700346 const SkMatrix& localMatrix() const { return fLocalMatrix; }
Brian Salomon6a639042016-12-14 11:08:17 -0500347
bsalomon4be9a302016-07-06 07:03:26 -0700348 private:
benjaminwagnerd87a6b22016-07-04 11:30:01 -0700349 SkMatrix fLocalMatrix;
bsalomon0fdec8a2016-07-01 06:31:25 -0700350 };
351
bsalomon4be9a302016-07-06 07:03:26 -0700352 RectInfo* first() { return reinterpret_cast<RectInfo*>(fRectData.begin()); }
353 const RectInfo* first() const { return reinterpret_cast<const RectInfo*>(fRectData.begin()); }
354 const RectInfo* next(const RectInfo* prev) const {
Brian Salomon6a639042016-12-14 11:08:17 -0500355 intptr_t next =
356 reinterpret_cast<intptr_t>(prev) +
357 (prev->hasLocalMatrix() ? sizeof(RectWithLocalMatrixInfo) : sizeof(RectInfo));
bsalomon4be9a302016-07-06 07:03:26 -0700358 return reinterpret_cast<const RectInfo*>(next);
359 }
360
bsalomon4be9a302016-07-06 07:03:26 -0700361 SkSTArray<4 * sizeof(RectWithLocalMatrixInfo), uint8_t, true> fRectData;
Brian Salomonbaaf4392017-06-15 09:59:23 -0400362 Helper fHelper;
bsalomon4be9a302016-07-06 07:03:26 -0700363 int fRectCnt;
bsalomon08d14152016-06-30 12:45:18 -0700364
Brian Salomonbaaf4392017-06-15 09:59:23 -0400365 typedef GrMeshDrawOp INHERITED;
joshualitt147dc062015-08-12 11:51:46 -0700366};
367
Brian Salomonbaaf4392017-06-15 09:59:23 -0400368} // anonymous namespace
joshualitt9ff64252015-08-10 09:03:51 -0700369
Brian Salomonbaaf4392017-06-15 09:59:23 -0400370namespace GrRectOpFactory {
joshualitt147dc062015-08-12 11:51:46 -0700371
Robert Phillips7c525e62018-06-12 10:11:12 -0400372std::unique_ptr<GrDrawOp> MakeAAFill(GrContext* context,
373 GrPaint&& paint,
374 const SkMatrix& viewMatrix,
375 const SkRect& rect,
376 const GrUserStencilSettings* stencil) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400377 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
378 return nullptr;
379 }
bsalomonc55271f2015-11-09 11:55:57 -0800380 SkRect devRect;
381 viewMatrix.mapRect(&devRect, rect);
Robert Phillips7c525e62018-06-12 10:11:12 -0400382 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
383 nullptr, stencil);
bsalomonc55271f2015-11-09 11:55:57 -0800384}
385
Robert Phillips7c525e62018-06-12 10:11:12 -0400386std::unique_ptr<GrDrawOp> MakeAAFillWithLocalMatrix(GrContext* context,
387 GrPaint&& paint,
388 const SkMatrix& viewMatrix,
Brian Salomonbaaf4392017-06-15 09:59:23 -0400389 const SkMatrix& localMatrix,
390 const SkRect& rect) {
391 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
392 return nullptr;
393 }
394 SkRect devRect;
395 viewMatrix.mapRect(&devRect, rect);
Robert Phillips7c525e62018-06-12 10:11:12 -0400396 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
397 &localMatrix, nullptr);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400398}
399
Robert Phillips7c525e62018-06-12 10:11:12 -0400400std::unique_ptr<GrDrawOp> MakeAAFillWithLocalRect(GrContext* context,
401 GrPaint&& paint,
402 const SkMatrix& viewMatrix,
403 const SkRect& rect,
404 const SkRect& localRect) {
Brian Salomonbaaf4392017-06-15 09:59:23 -0400405 if (!view_matrix_ok_for_aa_fill_rect(viewMatrix)) {
406 return nullptr;
407 }
bsalomonc55271f2015-11-09 11:55:57 -0800408 SkRect devRect;
409 viewMatrix.mapRect(&devRect, rect);
410 SkMatrix localMatrix;
411 if (!localMatrix.setRectToRect(rect, localRect, SkMatrix::kFill_ScaleToFit)) {
412 return nullptr;
413 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400414 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect, devRect,
415 &localMatrix, nullptr);
bsalomonc55271f2015-11-09 11:55:57 -0800416}
Brian Salomonbaaf4392017-06-15 09:59:23 -0400417
418} // namespace GrRectOpFactory
joshualitt37eb1842015-08-12 06:36:57 -0700419
joshualitt9ff64252015-08-10 09:03:51 -0700420///////////////////////////////////////////////////////////////////////////////////////////////////
421
Hal Canary6f6961e2017-01-31 13:50:44 -0500422#if GR_TEST_UTILS
joshualitt9ff64252015-08-10 09:03:51 -0700423
Brian Salomon5ec9def2016-12-20 15:34:05 -0500424#include "GrDrawOpTest.h"
joshualitt9ff64252015-08-10 09:03:51 -0700425
Brian Salomonbaaf4392017-06-15 09:59:23 -0400426GR_DRAW_OP_TEST_DEFINE(AAFillRectOp) {
427 SkMatrix viewMatrix;
428 do {
429 viewMatrix = GrTest::TestMatrixInvertible(random);
430 } while (!view_matrix_ok_for_aa_fill_rect(viewMatrix));
joshualitt090ae8e2015-08-14 09:01:21 -0700431 SkRect rect = GrTest::TestRect(random);
Brian Salomonbaaf4392017-06-15 09:59:23 -0400432 SkRect devRect;
433 viewMatrix.mapRect(&devRect, rect);
434 const SkMatrix* localMatrix = nullptr;
435 SkMatrix m;
436 if (random->nextBool()) {
437 m = GrTest::TestMatrix(random);
438 }
Robert Phillips7c525e62018-06-12 10:11:12 -0400439 const GrUserStencilSettings* stencil = random->nextBool() ? nullptr
440 : GrGetRandomStencil(random, context);
441 return AAFillRectOp::Make(context, std::move(paint), viewMatrix, rect,
442 devRect, localMatrix, stencil);
joshualitt9ff64252015-08-10 09:03:51 -0700443}
444
445#endif