blob: 3cba2627a1b51400a31f31732c71f812b7210efb [file] [log] [blame]
Michael Ludwig69858532018-11-28 15:34:34 -05001/*
2 * Copyright 2018 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
Mike Kleinc0bd9f92019-04-23 12:05:21 -05008#include "src/gpu/ops/GrFillRectOp.h"
Michael Ludwig69858532018-11-28 15:34:34 -05009
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkMatrix.h"
11#include "include/core/SkRect.h"
12#include "src/gpu/GrCaps.h"
13#include "src/gpu/GrGeometryProcessor.h"
14#include "src/gpu/GrPaint.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050015#include "src/gpu/SkGr.h"
Michael Ludwigfd4f4df2019-05-29 09:51:09 -040016#include "src/gpu/geometry/GrQuad.h"
Michael Ludwig425eb452019-06-27 10:13:27 -040017#include "src/gpu/geometry/GrQuadBuffer.h"
Michael Ludwig0f809022019-06-04 09:14:37 -040018#include "src/gpu/geometry/GrQuadUtils.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050019#include "src/gpu/glsl/GrGLSLColorSpaceXformHelper.h"
20#include "src/gpu/glsl/GrGLSLGeometryProcessor.h"
21#include "src/gpu/glsl/GrGLSLVarying.h"
22#include "src/gpu/ops/GrMeshDrawOp.h"
23#include "src/gpu/ops/GrQuadPerEdgeAA.h"
24#include "src/gpu/ops/GrSimpleMeshDrawOpHelper.h"
Michael Ludwig69858532018-11-28 15:34:34 -050025
26namespace {
27
28using VertexSpec = GrQuadPerEdgeAA::VertexSpec;
29using ColorType = GrQuadPerEdgeAA::ColorType;
30
Michael Ludwigc96fc372019-01-08 15:46:15 -050031#ifdef SK_DEBUG
Michael Ludwigde4c58c2019-06-04 09:12:59 -040032static SkString dump_quad_info(int index, const GrQuad& deviceQuad,
33 const GrQuad& localQuad, const SkPMColor4f& color,
Michael Ludwigc96fc372019-01-08 15:46:15 -050034 GrQuadAAFlags aaFlags) {
35 SkString str;
36 str.appendf("%d: Color: [%.2f, %.2f, %.2f, %.2f], Edge AA: l%u_t%u_r%u_b%u, \n"
37 " device quad: [(%.2f, %2.f, %.2f), (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f), "
38 "(%.2f, %.2f, %.2f)],\n"
39 " local quad: [(%.2f, %2.f, %.2f), (%.2f, %.2f, %.2f), (%.2f, %.2f, %.2f), "
40 "(%.2f, %.2f, %.2f)]\n",
41 index, color.fR, color.fG, color.fB, color.fA,
42 (uint32_t) (aaFlags & GrQuadAAFlags::kLeft),
43 (uint32_t) (aaFlags & GrQuadAAFlags::kTop),
44 (uint32_t) (aaFlags & GrQuadAAFlags::kRight),
45 (uint32_t) (aaFlags & GrQuadAAFlags::kBottom),
46 deviceQuad.x(0), deviceQuad.y(0), deviceQuad.w(0),
47 deviceQuad.x(1), deviceQuad.y(1), deviceQuad.w(1),
48 deviceQuad.x(2), deviceQuad.y(2), deviceQuad.w(2),
49 deviceQuad.x(3), deviceQuad.y(3), deviceQuad.w(3),
50 localQuad.x(0), localQuad.y(0), localQuad.w(0),
51 localQuad.x(1), localQuad.y(1), localQuad.w(1),
52 localQuad.x(2), localQuad.y(2), localQuad.w(2),
53 localQuad.x(3), localQuad.y(3), localQuad.w(3));
54 return str;
55}
56#endif
Michael Ludwig69858532018-11-28 15:34:34 -050057
Michael Ludwig69858532018-11-28 15:34:34 -050058class FillRectOp final : public GrMeshDrawOp {
59private:
60 using Helper = GrSimpleMeshDrawOpHelperWithStencil;
61
62public:
Robert Phillipsb97da532019-02-12 15:24:12 -050063 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Michael Ludwig69858532018-11-28 15:34:34 -050064 GrPaint&& paint,
65 GrAAType aaType,
66 GrQuadAAFlags edgeAA,
67 const GrUserStencilSettings* stencilSettings,
Michael Ludwigde4c58c2019-06-04 09:12:59 -040068 const GrQuad& deviceQuad,
69 const GrQuad& localQuad) {
Michael Ludwig69858532018-11-28 15:34:34 -050070 // Clean up deviations between aaType and edgeAA
Michael Ludwig0f809022019-06-04 09:14:37 -040071 GrQuadUtils::ResolveAAType(aaType, edgeAA, deviceQuad, &aaType, &edgeAA);
Michael Ludwigdcd48212019-01-08 15:28:57 -050072 return Helper::FactoryHelper<FillRectOp>(context, std::move(paint), aaType, edgeAA,
Michael Ludwig41f395d2019-05-23 13:59:45 -040073 stencilSettings, deviceQuad, localQuad);
Michael Ludwig69858532018-11-28 15:34:34 -050074 }
75
Michael Ludwigdcd48212019-01-08 15:28:57 -050076 // aaType is passed to Helper in the initializer list, so incongruities between aaType and
77 // edgeFlags must be resolved prior to calling this constructor.
78 FillRectOp(Helper::MakeArgs args, SkPMColor4f paintColor, GrAAType aaType,
79 GrQuadAAFlags edgeFlags, const GrUserStencilSettings* stencil,
Michael Ludwigde4c58c2019-06-04 09:12:59 -040080 const GrQuad& deviceQuad, const GrQuad& localQuad)
Michael Ludwig69858532018-11-28 15:34:34 -050081 : INHERITED(ClassID())
Michael Ludwig425eb452019-06-27 10:13:27 -040082 , fHelper(args, aaType, stencil)
83 , fQuads(1, !fHelper.isTrivial()) {
84 // Conservatively keep track of the local coordinates; it may be that the paint doesn't
85 // need them after analysis is finished. If the paint is known to be solid up front they
86 // can be skipped entirely.
87 fQuads.append(deviceQuad, { paintColor, edgeFlags },
88 fHelper.isTrivial() ? nullptr : &localQuad);
Michael Ludwig41f395d2019-05-23 13:59:45 -040089 this->setBounds(deviceQuad.bounds(), HasAABloat(aaType == GrAAType::kCoverage),
Greg Daniel5faf4742019-10-01 15:14:44 -040090 IsHairline::kNo);
Michael Ludwig69858532018-11-28 15:34:34 -050091 }
92
93 const char* name() const override { return "FillRectOp"; }
94
Chris Dalton1706cbf2019-05-21 19:35:29 -060095 void visitProxies(const VisitProxyFunc& func) const override {
Michael Ludwig69858532018-11-28 15:34:34 -050096 return fHelper.visitProxies(func);
97 }
98
99#ifdef SK_DEBUG
100 SkString dumpInfo() const override {
101 SkString str;
Michael Ludwig425eb452019-06-27 10:13:27 -0400102 str.appendf("# draws: %u\n", fQuads.count());
Michael Ludwig69858532018-11-28 15:34:34 -0500103 str.appendf("Device quad type: %u, local quad type: %u\n",
Michael Ludwig425eb452019-06-27 10:13:27 -0400104 (uint32_t) fQuads.deviceQuadType(), (uint32_t) fQuads.localQuadType());
Michael Ludwig69858532018-11-28 15:34:34 -0500105 str += fHelper.dumpInfo();
Michael Ludwig425eb452019-06-27 10:13:27 -0400106 int i = 0;
107 auto iter = fQuads.iterator();
108 while(iter.next()) {
109 const ColorAndAA& info = iter.metadata();
110 str += dump_quad_info(i, iter.deviceQuad(), iter.localQuad(),
111 info.fColor, info.fAAFlags);
112 i++;
Michael Ludwig69858532018-11-28 15:34:34 -0500113 }
114 str += INHERITED::dumpInfo();
115 return str;
116 }
117#endif
118
Chris Dalton6ce447a2019-06-23 18:07:38 -0600119 GrProcessorSet::Analysis finalize(
120 const GrCaps& caps, const GrAppliedClip* clip, bool hasMixedSampledCoverage,
121 GrClampType clampType) override {
Michael Ludwig69858532018-11-28 15:34:34 -0500122 // Initialize aggregate color analysis with the first quad's color (which always exists)
Michael Ludwig425eb452019-06-27 10:13:27 -0400123 auto iter = fQuads.metadata();
124 SkAssertResult(iter.next());
125 GrProcessorAnalysisColor quadColors(iter->fColor);
Michael Ludwig69858532018-11-28 15:34:34 -0500126 // Then combine the colors of any additional quads (e.g. from MakeSet)
Michael Ludwig425eb452019-06-27 10:13:27 -0400127 while(iter.next()) {
128 quadColors = GrProcessorAnalysisColor::Combine(quadColors, iter->fColor);
Michael Ludwigca91e1f2018-12-10 10:44:44 -0500129 if (quadColors.isUnknown()) {
130 // No point in accumulating additional starting colors, combining cannot make it
131 // less unknown.
132 break;
133 }
Michael Ludwig69858532018-11-28 15:34:34 -0500134 }
Michael Ludwig72ab3462018-12-10 12:43:36 -0500135
136 // If the AA type is coverage, it will be a single value per pixel; if it's not coverage AA
137 // then the coverage is always 1.0, so specify kNone for more optimal blending.
138 GrProcessorAnalysisCoverage coverage = fHelper.aaType() == GrAAType::kCoverage ?
139 GrProcessorAnalysisCoverage::kSingleChannel :
140 GrProcessorAnalysisCoverage::kNone;
Brian Osman5ced0bf2019-03-15 10:15:29 -0400141 auto result = fHelper.finalizeProcessors(
Chris Dalton6ce447a2019-06-23 18:07:38 -0600142 caps, clip, hasMixedSampledCoverage, clampType, coverage, &quadColors);
Michael Ludwig69858532018-11-28 15:34:34 -0500143 // If there is a constant color after analysis, that means all of the quads should be set
144 // to the same color (even if they started out with different colors).
Michael Ludwig425eb452019-06-27 10:13:27 -0400145 iter = fQuads.metadata();
Michael Ludwig69858532018-11-28 15:34:34 -0500146 SkPMColor4f colorOverride;
147 if (quadColors.isConstant(&colorOverride)) {
Brian Osman8fa7ab42019-03-18 10:22:42 -0400148 fColorType = GrQuadPerEdgeAA::MinColorType(colorOverride, clampType, caps);
Michael Ludwig425eb452019-06-27 10:13:27 -0400149 while(iter.next()) {
150 iter->fColor = colorOverride;
Michael Ludwig69858532018-11-28 15:34:34 -0500151 }
Brian Osman8fa7ab42019-03-18 10:22:42 -0400152 } else {
153 // Otherwise compute the color type needed as the max over all quads.
154 fColorType = ColorType::kNone;
Michael Ludwig425eb452019-06-27 10:13:27 -0400155 while(iter.next()) {
Brian Osman8fa7ab42019-03-18 10:22:42 -0400156 fColorType = SkTMax(fColorType,
Michael Ludwig425eb452019-06-27 10:13:27 -0400157 GrQuadPerEdgeAA::MinColorType(iter->fColor, clampType, caps));
Brian Osman8fa7ab42019-03-18 10:22:42 -0400158 }
Michael Ludwig69858532018-11-28 15:34:34 -0500159 }
Brian Salomon41f9c3c2019-03-25 11:06:12 -0400160 // Most SkShaders' FPs multiply their calculated color by the paint color or alpha. We want
161 // to use ColorType::kNone to optimize out that multiply. However, if there are no color
162 // FPs then were really writing a special shader for white rectangles and not saving any
163 // multiples. So in that case use bytes to avoid the extra shader (and possibly work around
164 // an ANGLE issue: crbug.com/942565).
165 if (fColorType == ColorType::kNone && !result.hasColorFragmentProcessor()) {
166 fColorType = ColorType::kByte;
167 }
Michael Ludwig69858532018-11-28 15:34:34 -0500168
169 return result;
170 }
171
172 FixedFunctionFlags fixedFunctionFlags() const override {
173 // Since the AA type of the whole primitive is kept consistent with the per edge AA flags
174 // the helper's fixed function flags are appropriate.
175 return fHelper.fixedFunctionFlags();
176 }
177
178 DEFINE_OP_CLASS_ID
179
180private:
181 // For GrFillRectOp::MakeSet's use of addQuad
Robert Phillipsb97da532019-02-12 15:24:12 -0500182 friend std::unique_ptr<GrDrawOp> GrFillRectOp::MakeSet(
183 GrRecordingContext*,
184 GrPaint&&,
185 GrAAType, const SkMatrix& viewMatrix,
Michael Ludwig69858532018-11-28 15:34:34 -0500186 const GrRenderTargetContext::QuadSetEntry quads[], int quadCount,
Robert Phillipsb97da532019-02-12 15:24:12 -0500187 const GrUserStencilSettings*);
Michael Ludwig69858532018-11-28 15:34:34 -0500188
Michael Ludwigc96fc372019-01-08 15:46:15 -0500189 void onPrepareDraws(Target* target) override {
Brian Salomon5f394272019-07-02 14:07:49 -0400190 TRACE_EVENT0("skia.gpu", TRACE_FUNC);
Michael Ludwig69858532018-11-28 15:34:34 -0500191
192 using Domain = GrQuadPerEdgeAA::Domain;
193 static constexpr SkRect kEmptyDomain = SkRect::MakeEmpty();
194
Robert Phillipsc554dcf2019-10-28 11:43:55 -0400195 auto indexBufferOption = GrQuadPerEdgeAA::CalcIndexBufferOption(fHelper.aaType(),
196 fQuads.count());
197
Michael Ludwig425eb452019-06-27 10:13:27 -0400198 VertexSpec vertexSpec(fQuads.deviceQuadType(), fColorType, fQuads.localQuadType(),
Brian Salomon1d835422019-03-13 16:11:44 -0400199 fHelper.usesLocalCoords(), Domain::kNo, fHelper.aaType(),
Robert Phillipsc554dcf2019-10-28 11:43:55 -0400200 fHelper.compatibleWithCoverageAsAlpha(), indexBufferOption);
Michael Ludwigdcd48212019-01-08 15:28:57 -0500201 // Make sure that if the op thought it was a solid color, the vertex spec does not use
202 // local coords.
203 SkASSERT(!fHelper.isTrivial() || !fHelper.usesLocalCoords());
Michael Ludwig69858532018-11-28 15:34:34 -0500204
Michael Ludwig467994d2018-12-03 14:58:31 +0000205 sk_sp<GrGeometryProcessor> gp = GrQuadPerEdgeAA::MakeProcessor(vertexSpec);
Michael Ludwig69858532018-11-28 15:34:34 -0500206 size_t vertexSize = gp->vertexStride();
207
Brian Salomon12d22642019-01-29 14:38:50 -0500208 sk_sp<const GrBuffer> vbuffer;
Michael Ludwig69858532018-11-28 15:34:34 -0500209 int vertexOffsetInBuffer = 0;
210
211 // Fill the allocated vertex data
Michael Ludwig93aeba02018-12-21 09:50:31 -0500212 void* vdata = target->makeVertexSpace(
Michael Ludwig425eb452019-06-27 10:13:27 -0400213 vertexSize, fQuads.count() * vertexSpec.verticesPerQuad(),
Michael Ludwig93aeba02018-12-21 09:50:31 -0500214 &vbuffer, &vertexOffsetInBuffer);
Michael Ludwig69858532018-11-28 15:34:34 -0500215 if (!vdata) {
216 SkDebugf("Could not allocate vertices\n");
217 return;
218 }
219
220 // vertices pointer advances through vdata based on Tessellate's return value
221 void* vertices = vdata;
Michael Ludwig425eb452019-06-27 10:13:27 -0400222 auto iter = fQuads.iterator();
223 while(iter.next()) {
224 // All entries should have local coords, or no entries should have local coords,
225 // matching !helper.isTrivial() (which is more conservative than helper.usesLocalCoords)
226 SkASSERT(iter.isLocalValid() != fHelper.isTrivial());
227 auto info = iter.metadata();
228 vertices = GrQuadPerEdgeAA::Tessellate(vertices, vertexSpec, iter.deviceQuad(),
229 info.fColor, iter.localQuad(), kEmptyDomain, info.fAAFlags);
Michael Ludwig69858532018-11-28 15:34:34 -0500230 }
231
232 // Configure the mesh for the vertex data
Michael Ludwig93aeba02018-12-21 09:50:31 -0500233 GrMesh* mesh = target->allocMeshes(1);
Michael Ludwig425eb452019-06-27 10:13:27 -0400234 if (!GrQuadPerEdgeAA::ConfigureMeshIndices(target, mesh, vertexSpec, fQuads.count())) {
Michael Ludwig93aeba02018-12-21 09:50:31 -0500235 SkDebugf("Could not allocate indices\n");
236 return;
Michael Ludwig69858532018-11-28 15:34:34 -0500237 }
Brian Salomon12d22642019-01-29 14:38:50 -0500238 mesh->setVertexData(std::move(vbuffer), vertexOffsetInBuffer);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700239 target->recordDraw(std::move(gp), mesh);
240 }
Michael Ludwig69858532018-11-28 15:34:34 -0500241
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700242 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
243 fHelper.executeDrawsAndUploads(this, flushState, chainBounds);
244 }
Michael Ludwig69858532018-11-28 15:34:34 -0500245
246 CombineResult onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomon5f394272019-07-02 14:07:49 -0400247 TRACE_EVENT0("skia.gpu", TRACE_FUNC);
Michael Ludwig69858532018-11-28 15:34:34 -0500248 const auto* that = t->cast<FillRectOp>();
249
Michael Ludwig93aeba02018-12-21 09:50:31 -0500250 if ((fHelper.aaType() == GrAAType::kCoverage ||
251 that->fHelper.aaType() == GrAAType::kCoverage) &&
Michael Ludwig425eb452019-06-27 10:13:27 -0400252 fQuads.count() + that->fQuads.count() > GrQuadPerEdgeAA::kNumAAQuadsInIndexBuffer) {
Michael Ludwig93aeba02018-12-21 09:50:31 -0500253 // This limit on batch size seems to help on Adreno devices
254 return CombineResult::kCannotCombine;
255 }
256
Michael Ludwigc96fc372019-01-08 15:46:15 -0500257 // Unlike most users of the draw op helper, this op can merge none-aa and coverage-aa draw
258 // ops together, so pass true as the last argument.
Michael Ludwig69858532018-11-28 15:34:34 -0500259 if (!fHelper.isCompatible(that->fHelper, caps, this->bounds(), that->bounds(), true)) {
260 return CombineResult::kCannotCombine;
261 }
262
Michael Ludwigdcd48212019-01-08 15:28:57 -0500263 // If the paints were compatible, the trivial/solid-color state should be the same
264 SkASSERT(fHelper.isTrivial() == that->fHelper.isTrivial());
Michael Ludwig69858532018-11-28 15:34:34 -0500265
Michael Ludwigdcd48212019-01-08 15:28:57 -0500266 // If the processor sets are compatible, the two ops are always compatible; it just needs to
267 // adjust the state of the op to be the more general quad and aa types of the two ops and
268 // then concatenate the per-quad data.
Brian Salomon1d835422019-03-13 16:11:44 -0400269 fColorType = SkTMax(fColorType, that->fColorType);
Michael Ludwig69858532018-11-28 15:34:34 -0500270
271 // The helper stores the aa type, but isCompatible(with true arg) allows the two ops' aa
272 // types to be none and coverage, in which case this op's aa type must be lifted to coverage
273 // so that quads with no aa edges can be batched with quads that have some/all edges aa'ed.
274 if (fHelper.aaType() == GrAAType::kNone && that->fHelper.aaType() == GrAAType::kCoverage) {
275 fHelper.setAAType(GrAAType::kCoverage);
276 }
277
Michael Ludwig425eb452019-06-27 10:13:27 -0400278 fQuads.concat(that->fQuads);
Michael Ludwig69858532018-11-28 15:34:34 -0500279 return CombineResult::kMerged;
280 }
281
282 // Similar to onCombineIfPossible, but adds a quad assuming its op would have been compatible.
283 // But since it's avoiding the op list management, it must update the op's bounds. This is only
284 // used with quad sets, which uses the same view matrix for each quad so this assumes that the
285 // device quad type of the new quad is the same as the op's.
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400286 void addQuad(const GrQuad& deviceQuad, const GrQuad& localQuad,
Michael Ludwig41f395d2019-05-23 13:59:45 -0400287 const SkPMColor4f& color, GrQuadAAFlags edgeAA, GrAAType aaType) {
Michael Ludwig69858532018-11-28 15:34:34 -0500288 // The new quad's aa type should be the same as the first quad's or none, except when the
289 // first quad's aa type was already downgraded to none, in which case the stored type must
290 // be lifted to back to the requested type.
291 if (aaType != fHelper.aaType()) {
292 if (aaType != GrAAType::kNone) {
293 // Original quad was downgraded to non-aa, lift back up to this quad's required type
294 SkASSERT(fHelper.aaType() == GrAAType::kNone);
295 fHelper.setAAType(aaType);
296 }
297 // else the new quad could have been downgraded but the other quads can't be, so don't
298 // reset the op's accumulated aa type.
299 }
300
Michael Ludwig69858532018-11-28 15:34:34 -0500301 // Update the bounds and add the quad to this op's storage
302 SkRect newBounds = this->bounds();
Michael Ludwig41f395d2019-05-23 13:59:45 -0400303 newBounds.joinPossiblyEmptyRect(deviceQuad.bounds());
Michael Ludwig69858532018-11-28 15:34:34 -0500304 this->setBounds(newBounds, HasAABloat(fHelper.aaType() == GrAAType::kCoverage),
Greg Daniel5faf4742019-10-01 15:14:44 -0400305 IsHairline::kNo);
Michael Ludwig425eb452019-06-27 10:13:27 -0400306 fQuads.append(deviceQuad, { color, edgeAA }, fHelper.isTrivial() ? nullptr : &localQuad);
Michael Ludwigc96fc372019-01-08 15:46:15 -0500307 }
308
309 struct ColorAndAA {
310 SkPMColor4f fColor;
311 GrQuadAAFlags fAAFlags;
312 };
Michael Ludwig69858532018-11-28 15:34:34 -0500313
314 Helper fHelper;
Michael Ludwig425eb452019-06-27 10:13:27 -0400315 GrQuadBuffer<ColorAndAA> fQuads;
Michael Ludwig69858532018-11-28 15:34:34 -0500316
Brian Salomon1d835422019-03-13 16:11:44 -0400317 ColorType fColorType;
Michael Ludwig69858532018-11-28 15:34:34 -0500318
Michael Ludwig69858532018-11-28 15:34:34 -0500319 typedef GrMeshDrawOp INHERITED;
320};
321
322} // anonymous namespace
323
324namespace GrFillRectOp {
325
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400326std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
327 GrPaint&& paint,
328 GrAAType aaType,
329 GrQuadAAFlags aaFlags,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400330 const GrQuad& deviceQuad,
331 const GrQuad& localQuad,
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400332 const GrUserStencilSettings* stencil) {
Michael Ludwigd9f917b2019-05-24 12:57:55 -0400333 return FillRectOp::Make(context, std::move(paint), aaType, aaFlags, stencil,
334 deviceQuad, localQuad);
335}
336
Michael Ludwigaa1b6b32019-05-29 14:43:13 -0400337std::unique_ptr<GrDrawOp> MakeNonAARect(GrRecordingContext* context,
338 GrPaint&& paint,
339 const SkMatrix& view,
340 const SkRect& rect,
341 const GrUserStencilSettings* stencil) {
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400342 return FillRectOp::Make(context, std::move(paint), GrAAType::kNone, GrQuadAAFlags::kNone,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400343 stencil, GrQuad::MakeFromRect(rect, view), GrQuad(rect));
Michael Ludwig009b92e2019-02-15 16:03:53 -0500344}
345
Robert Phillipsb97da532019-02-12 15:24:12 -0500346std::unique_ptr<GrDrawOp> MakeSet(GrRecordingContext* context,
Michael Ludwig69858532018-11-28 15:34:34 -0500347 GrPaint&& paint,
348 GrAAType aaType,
349 const SkMatrix& viewMatrix,
350 const GrRenderTargetContext::QuadSetEntry quads[],
351 int cnt,
352 const GrUserStencilSettings* stencilSettings) {
353 // First make a draw op for the first quad in the set
354 SkASSERT(cnt > 0);
Michael Ludwig69858532018-11-28 15:34:34 -0500355
356 paint.setColor4f(quads[0].fColor);
357 std::unique_ptr<GrDrawOp> op = FillRectOp::Make(context, std::move(paint), aaType,
Michael Ludwige9c57d32019-02-13 13:39:39 -0500358 quads[0].fAAFlags, stencilSettings,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400359 GrQuad::MakeFromRect(quads[0].fRect, viewMatrix),
360 GrQuad::MakeFromRect(quads[0].fRect, quads[0].fLocalMatrix));
Michael Ludwig69858532018-11-28 15:34:34 -0500361 auto* fillRects = op->cast<FillRectOp>();
362
363 // Accumulate remaining quads similar to onCombineIfPossible() without creating an op
364 for (int i = 1; i < cnt; ++i) {
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400365 GrQuad deviceQuad = GrQuad::MakeFromRect(quads[i].fRect, viewMatrix);
Michael Ludwig69858532018-11-28 15:34:34 -0500366
367 GrAAType resolvedAA;
368 GrQuadAAFlags resolvedEdgeFlags;
Michael Ludwig0f809022019-06-04 09:14:37 -0400369 GrQuadUtils::ResolveAAType(aaType, quads[i].fAAFlags, deviceQuad,
370 &resolvedAA, &resolvedEdgeFlags);
Michael Ludwig69858532018-11-28 15:34:34 -0500371
Michael Ludwige9c57d32019-02-13 13:39:39 -0500372 fillRects->addQuad(deviceQuad,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400373 GrQuad::MakeFromRect(quads[i].fRect, quads[i].fLocalMatrix),
Michael Ludwig41f395d2019-05-23 13:59:45 -0400374 quads[i].fColor, resolvedEdgeFlags,resolvedAA);
Michael Ludwig69858532018-11-28 15:34:34 -0500375 }
376
377 return op;
378}
379
380} // namespace GrFillRectOp
381
382#if GR_TEST_UTILS
383
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500384#include "src/gpu/GrDrawOpTest.h"
385#include "src/gpu/SkGr.h"
Michael Ludwig69858532018-11-28 15:34:34 -0500386
387GR_DRAW_OP_TEST_DEFINE(FillRectOp) {
388 SkMatrix viewMatrix = GrTest::TestMatrixInvertible(random);
389 SkRect rect = GrTest::TestRect(random);
390
391 GrAAType aaType = GrAAType::kNone;
392 if (random->nextBool()) {
Chris Dalton6ce447a2019-06-23 18:07:38 -0600393 aaType = (numSamples > 1) ? GrAAType::kMSAA : GrAAType::kCoverage;
Michael Ludwig69858532018-11-28 15:34:34 -0500394 }
395 const GrUserStencilSettings* stencil = random->nextBool() ? nullptr
396 : GrGetRandomStencil(random, context);
397
398 GrQuadAAFlags aaFlags = GrQuadAAFlags::kNone;
399 aaFlags |= random->nextBool() ? GrQuadAAFlags::kLeft : GrQuadAAFlags::kNone;
400 aaFlags |= random->nextBool() ? GrQuadAAFlags::kTop : GrQuadAAFlags::kNone;
401 aaFlags |= random->nextBool() ? GrQuadAAFlags::kRight : GrQuadAAFlags::kNone;
402 aaFlags |= random->nextBool() ? GrQuadAAFlags::kBottom : GrQuadAAFlags::kNone;
403
404 if (random->nextBool()) {
405 if (random->nextBool()) {
406 if (random->nextBool()) {
407 // Local matrix with a set op
408 uint32_t extraQuadCt = random->nextRangeU(1, 4);
409 SkTArray<GrRenderTargetContext::QuadSetEntry> quads(extraQuadCt + 1);
410 quads.push_back(
411 {rect, SkPMColor4f::FromBytes_RGBA(SkColorToPremulGrColor(random->nextU())),
412 GrTest::TestMatrixInvertible(random), aaFlags});
413 for (uint32_t i = 0; i < extraQuadCt; ++i) {
414 GrQuadAAFlags aaFlags = GrQuadAAFlags::kNone;
415 aaFlags |= random->nextBool() ? GrQuadAAFlags::kLeft : GrQuadAAFlags::kNone;
416 aaFlags |= random->nextBool() ? GrQuadAAFlags::kTop : GrQuadAAFlags::kNone;
417 aaFlags |= random->nextBool() ? GrQuadAAFlags::kRight : GrQuadAAFlags::kNone;
418 aaFlags |= random->nextBool() ? GrQuadAAFlags::kBottom : GrQuadAAFlags::kNone;
419
420 quads.push_back(
421 {GrTest::TestRect(random),
422 SkPMColor4f::FromBytes_RGBA(SkColorToPremulGrColor(random->nextU())),
423 GrTest::TestMatrixInvertible(random), aaFlags});
424 }
425
426 return GrFillRectOp::MakeSet(context, std::move(paint), aaType, viewMatrix,
427 quads.begin(), quads.count(), stencil);
428 } else {
429 // Single local matrix
430 SkMatrix localMatrix = GrTest::TestMatrixInvertible(random);
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400431 return GrFillRectOp::Make(context, std::move(paint), aaType, aaFlags,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400432 GrQuad::MakeFromRect(rect, viewMatrix),
433 GrQuad::MakeFromRect(rect, localMatrix), stencil);
Michael Ludwig69858532018-11-28 15:34:34 -0500434 }
435 } else {
436 // Pass local rect directly
437 SkRect localRect = GrTest::TestRect(random);
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400438 return GrFillRectOp::Make(context, std::move(paint), aaType, aaFlags,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400439 GrQuad::MakeFromRect(rect, viewMatrix),
440 GrQuad(localRect), stencil);
Michael Ludwig69858532018-11-28 15:34:34 -0500441 }
442 } else {
443 // The simplest constructor
Michael Ludwig4a0cf502019-05-30 12:54:09 -0400444 return GrFillRectOp::Make(context, std::move(paint), aaType, aaFlags,
Michael Ludwigde4c58c2019-06-04 09:12:59 -0400445 GrQuad::MakeFromRect(rect, viewMatrix),
446 GrQuad(rect), stencil);
Michael Ludwig69858532018-11-28 15:34:34 -0500447 }
448}
449
450#endif