blob: 0d00080ccba1214e9921f4c8fbfd42ff6d17f6e4 [file] [log] [blame]
Brian Salomon34169692017-08-28 15:32:01 -04001/*
2 * Copyright 2017 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/GrTextureOp.h"
Brian Salomond7065e72018-10-12 11:42:02 -04009#include <new>
Mike Kleinc0bd9f92019-04-23 12:05:21 -050010#include "include/core/SkPoint.h"
11#include "include/core/SkPoint3.h"
12#include "include/gpu/GrTexture.h"
13#include "include/private/GrRecordingContext.h"
14#include "include/private/GrTextureProxy.h"
15#include "include/private/SkTo.h"
16#include "src/core/SkMathPriv.h"
17#include "src/core/SkMatrixPriv.h"
18#include "src/core/SkRectPriv.h"
19#include "src/gpu/GrAppliedClip.h"
20#include "src/gpu/GrCaps.h"
21#include "src/gpu/GrDrawOpTest.h"
22#include "src/gpu/GrGeometryProcessor.h"
23#include "src/gpu/GrGpu.h"
24#include "src/gpu/GrMemoryPool.h"
25#include "src/gpu/GrOpFlushState.h"
26#include "src/gpu/GrQuad.h"
27#include "src/gpu/GrRecordingContextPriv.h"
28#include "src/gpu/GrResourceProvider.h"
29#include "src/gpu/GrResourceProviderPriv.h"
30#include "src/gpu/GrShaderCaps.h"
31#include "src/gpu/GrTexturePriv.h"
32#include "src/gpu/SkGr.h"
33#include "src/gpu/glsl/GrGLSLVarying.h"
34#include "src/gpu/ops/GrMeshDrawOp.h"
35#include "src/gpu/ops/GrQuadPerEdgeAA.h"
Brian Salomon34169692017-08-28 15:32:01 -040036
37namespace {
38
Michael Ludwig460eb5e2018-10-29 11:09:29 -040039using Domain = GrQuadPerEdgeAA::Domain;
Michael Ludwigc182b942018-11-16 10:27:51 -050040using VertexSpec = GrQuadPerEdgeAA::VertexSpec;
Brian Osman3d139a42018-11-19 10:42:10 -050041using ColorType = GrQuadPerEdgeAA::ColorType;
Brian Salomonb80ffee2018-05-23 16:39:39 -040042
Brian Salomon246bc3d2018-12-06 15:33:02 -050043// if normalizing the domain then pass 1/width, 1/height, 1 for iw, ih, h. Otherwise pass
44// 1, 1, and height.
45static SkRect compute_domain(Domain domain, GrSamplerState::Filter filter, GrSurfaceOrigin origin,
46 const SkRect& srcRect, float iw, float ih, float h) {
47 static constexpr SkRect kLargeRect = {-100000, -100000, 1000000, 1000000};
Michael Ludwig460eb5e2018-10-29 11:09:29 -040048 if (domain == Domain::kNo) {
49 // Either the quad has no domain constraint and is batched with a domain constrained op
50 // (in which case we want a domain that doesn't restrict normalized tex coords), or the
51 // entire op doesn't use the domain, in which case the returned value is ignored.
52 return kLargeRect;
53 }
54
55 auto ltrb = Sk4f::Load(&srcRect);
56 if (filter == GrSamplerState::Filter::kBilerp) {
57 auto rblt = SkNx_shuffle<2, 3, 0, 1>(ltrb);
58 auto whwh = (rblt - ltrb).abs();
59 auto c = (rblt + ltrb) * 0.5f;
60 static const Sk4f kOffsets = {0.5f, 0.5f, -0.5f, -0.5f};
61 ltrb = (whwh < 1.f).thenElse(c, ltrb + kOffsets);
62 }
63 ltrb *= Sk4f(iw, ih, iw, ih);
64 if (origin == kBottomLeft_GrSurfaceOrigin) {
65 static const Sk4f kMul = {1.f, -1.f, 1.f, -1.f};
Brian Salomon246bc3d2018-12-06 15:33:02 -050066 const Sk4f kAdd = {0.f, h, 0.f, h};
Michael Ludwig460eb5e2018-10-29 11:09:29 -040067 ltrb = SkNx_shuffle<0, 3, 2, 1>(kMul * ltrb + kAdd);
68 }
69
70 SkRect domainRect;
71 ltrb.store(&domainRect);
72 return domainRect;
73}
74
Brian Salomon246bc3d2018-12-06 15:33:02 -050075// If normalizing the src quad then pass 1/width, 1/height, 1 for iw, ih, h. Otherwise pass
76// 1, 1, and height.
Michael Ludwig009b92e2019-02-15 16:03:53 -050077static GrPerspQuad compute_src_quad_from_rect(GrSurfaceOrigin origin, const SkRect& srcRect,
78 float iw, float ih, float h) {
Michael Ludwig460eb5e2018-10-29 11:09:29 -040079 // Convert the pixel-space src rectangle into normalized texture coordinates
80 SkRect texRect = {
81 iw * srcRect.fLeft,
82 ih * srcRect.fTop,
83 iw * srcRect.fRight,
84 ih * srcRect.fBottom
85 };
86 if (origin == kBottomLeft_GrSurfaceOrigin) {
Brian Salomon246bc3d2018-12-06 15:33:02 -050087 texRect.fTop = h - texRect.fTop;
88 texRect.fBottom = h - texRect.fBottom;
Michael Ludwig460eb5e2018-10-29 11:09:29 -040089 }
Michael Ludwige9c57d32019-02-13 13:39:39 -050090 return GrPerspQuad(texRect);
Michael Ludwig460eb5e2018-10-29 11:09:29 -040091}
Michael Ludwig009b92e2019-02-15 16:03:53 -050092// Normalizes logical src coords and corrects for origin
93static GrPerspQuad compute_src_quad(GrSurfaceOrigin origin, const GrPerspQuad& srcQuad,
94 float iw, float ih, float h) {
95 // The src quad should not have any perspective
96 SkASSERT(!srcQuad.hasPerspective());
Michael Ludwigb3461fa2019-04-30 11:50:55 -040097 skvx::Vec<4, float> xs = srcQuad.x4f() * iw;
98 skvx::Vec<4, float> ys = srcQuad.y4f() * ih;
Michael Ludwig009b92e2019-02-15 16:03:53 -050099 if (origin == kBottomLeft_GrSurfaceOrigin) {
100 ys = h - ys;
101 }
102 return GrPerspQuad(xs, ys);
103}
Michael Ludwig460eb5e2018-10-29 11:09:29 -0400104
Brian Salomon34169692017-08-28 15:32:01 -0400105/**
106 * Op that implements GrTextureOp::Make. It draws textured quads. Each quad can modulate against a
107 * the texture by color. The blend with the destination is always src-over. The edges are non-AA.
108 */
109class TextureOp final : public GrMeshDrawOp {
110public:
Robert Phillipsb97da532019-02-12 15:24:12 -0500111 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400112 sk_sp<GrTextureProxy> proxy,
113 GrSamplerState::Filter filter,
Brian Osman3d139a42018-11-19 10:42:10 -0500114 const SkPMColor4f& color,
Robert Phillips7c525e62018-06-12 10:11:12 -0400115 const SkRect& srcRect,
116 const SkRect& dstRect,
117 GrAAType aaType,
Brian Salomon2213ee92018-10-02 10:44:21 -0400118 GrQuadAAFlags aaFlags,
Robert Phillips7c525e62018-06-12 10:11:12 -0400119 SkCanvas::SrcRectConstraint constraint,
Brian Osman2b23c4b2018-06-01 12:25:08 -0400120 const SkMatrix& viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500121 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Michael Ludwig009b92e2019-02-15 16:03:53 -0500122 GrPerspQuad dstQuad = GrPerspQuad::MakeFromRect(dstRect, viewMatrix);
123 GrQuadType dstQuadType = GrQuadTypeForTransformedRect(viewMatrix);
Robert Phillipsc994a932018-06-19 13:09:54 -0400124
Michael Ludwig009b92e2019-02-15 16:03:53 -0500125 if (dstQuadType == GrQuadType::kRect) {
126 // Disable filtering if possible (note AA optimizations for rects are automatically
127 // handled above in GrResolveAATypeForQuad).
128 if (filter != GrSamplerState::Filter::kNearest &&
129 !GrTextureOp::GetFilterHasEffect(viewMatrix, srcRect, dstRect)) {
130 filter = GrSamplerState::Filter::kNearest;
131 }
132 }
133
134 GrOpMemoryPool* pool = context->priv().opMemoryPool();
135 // srcRect provides both local coords and domain (if needed), so use nullptr for srcQuad
Brian Salomon2213ee92018-10-02 10:44:21 -0400136 return pool->allocate<TextureOp>(
Michael Ludwig009b92e2019-02-15 16:03:53 -0500137 std::move(proxy), filter, color, dstQuad, dstQuadType, srcRect, constraint,
138 nullptr, GrQuadType::kRect, aaType, aaFlags, std::move(textureColorSpaceXform));
139 }
140 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
141 sk_sp<GrTextureProxy> proxy,
142 GrSamplerState::Filter filter,
143 const SkPMColor4f& color,
144 const SkPoint srcQuad[4],
145 const SkPoint dstQuad[4],
146 GrAAType aaType,
147 GrQuadAAFlags aaFlags,
148 const SkRect* domain,
149 const SkMatrix& viewMatrix,
150 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
151 GrPerspQuad grDstQuad = GrPerspQuad::MakeFromSkQuad(dstQuad, viewMatrix);
Michael Ludwig97b94422019-04-09 10:42:39 -0400152 GrQuadType dstQuadType = GrQuadTypeForPoints(dstQuad, viewMatrix);
Michael Ludwig009b92e2019-02-15 16:03:53 -0500153 GrPerspQuad grSrcQuad = GrPerspQuad::MakeFromSkQuad(srcQuad, SkMatrix::I());
Michael Ludwig97b94422019-04-09 10:42:39 -0400154 GrQuadType srcQuadType = GrQuadTypeForPoints(srcQuad, SkMatrix::I());
Michael Ludwig009b92e2019-02-15 16:03:53 -0500155
156 // If constraint remains fast, the value in srcRect will be ignored since srcQuads provides
157 // the local coordinates and a domain won't be used.
158 SkRect srcRect = SkRect::MakeEmpty();
159 SkCanvas::SrcRectConstraint constraint = SkCanvas::kFast_SrcRectConstraint;
160 if (domain) {
161 srcRect = *domain;
162 constraint = SkCanvas::kStrict_SrcRectConstraint;
163 }
164
165 GrOpMemoryPool* pool = context->priv().opMemoryPool();
166 // Pass domain as srcRect if provided, but send srcQuad as a GrPerspQuad for local coords
167 return pool->allocate<TextureOp>(
168 std::move(proxy), filter, color, grDstQuad, dstQuadType, srcRect, constraint,
Michael Ludwig97b94422019-04-09 10:42:39 -0400169 &grSrcQuad, srcQuadType, aaType, aaFlags,
Michael Ludwig009b92e2019-02-15 16:03:53 -0500170 std::move(textureColorSpaceXform));
Brian Salomon34169692017-08-28 15:32:01 -0400171 }
Robert Phillipsb97da532019-02-12 15:24:12 -0500172 static std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Brian Salomond7065e72018-10-12 11:42:02 -0400173 const GrRenderTargetContext::TextureSetEntry set[],
Brian Salomond003d222018-11-26 13:25:05 -0500174 int cnt, GrSamplerState::Filter filter, GrAAType aaType,
Michael Ludwig31ba7182019-04-03 10:38:06 -0400175 SkCanvas::SrcRectConstraint constraint,
Brian Salomond003d222018-11-26 13:25:05 -0500176 const SkMatrix& viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500177 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Brian Salomond7065e72018-10-12 11:42:02 -0400178 size_t size = sizeof(TextureOp) + sizeof(Proxy) * (cnt - 1);
Robert Phillips9da87e02019-02-04 13:26:26 -0500179 GrOpMemoryPool* pool = context->priv().opMemoryPool();
Brian Salomond7065e72018-10-12 11:42:02 -0400180 void* mem = pool->allocate(size);
Michael Ludwig31ba7182019-04-03 10:38:06 -0400181 return std::unique_ptr<GrDrawOp>(new (mem) TextureOp(
182 set, cnt, filter, aaType, constraint, viewMatrix,
183 std::move(textureColorSpaceXform)));
Brian Salomond7065e72018-10-12 11:42:02 -0400184 }
Brian Salomon34169692017-08-28 15:32:01 -0400185
Brian Salomon336ce7b2017-09-08 08:23:58 -0400186 ~TextureOp() override {
Brian Salomond7065e72018-10-12 11:42:02 -0400187 for (unsigned p = 0; p < fProxyCnt; ++p) {
188 if (fFinalized) {
189 fProxies[p].fProxy->completedRead();
190 } else {
191 fProxies[p].fProxy->unref();
192 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400193 }
194 }
Brian Salomon34169692017-08-28 15:32:01 -0400195
196 const char* name() const override { return "TextureOp"; }
197
Brian Salomon7d94bb52018-10-12 14:37:19 -0400198 void visitProxies(const VisitProxyFunc& func, VisitorType visitor) const override {
Brian Salomond7065e72018-10-12 11:42:02 -0400199 for (unsigned p = 0; p < fProxyCnt; ++p) {
200 func(fProxies[p].fProxy);
201 }
202 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400203
Brian Osman9a390ac2018-11-12 09:47:48 -0500204#ifdef SK_DEBUG
Brian Salomon34169692017-08-28 15:32:01 -0400205 SkString dumpInfo() const override {
206 SkString str;
Brian Salomond7065e72018-10-12 11:42:02 -0400207 str.appendf("# draws: %d\n", fQuads.count());
208 int q = 0;
209 for (unsigned p = 0; p < fProxyCnt; ++p) {
210 str.appendf("Proxy ID: %d, Filter: %d\n", fProxies[p].fProxy->uniqueID().asUInt(),
211 static_cast<int>(fFilter));
212 for (int i = 0; i < fProxies[p].fQuadCnt; ++i, ++q) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500213 GrPerspQuad quad = fQuads[q];
214 const ColorDomainAndAA& info = fQuads.metadata(i);
Brian Salomond7065e72018-10-12 11:42:02 -0400215 str.appendf(
216 "%d: Color: 0x%08x, TexRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f] "
217 "Quad [(%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f)]\n",
Michael Ludwigc96fc372019-01-08 15:46:15 -0500218 i, info.fColor.toBytes_RGBA(), info.fSrcRect.fLeft, info.fSrcRect.fTop,
219 info.fSrcRect.fRight, info.fSrcRect.fBottom, quad.point(0).fX,
220 quad.point(0).fY, quad.point(1).fX, quad.point(1).fY,
221 quad.point(2).fX, quad.point(2).fY, quad.point(3).fX,
222 quad.point(3).fY);
Brian Salomond7065e72018-10-12 11:42:02 -0400223 }
Brian Salomon34169692017-08-28 15:32:01 -0400224 }
225 str += INHERITED::dumpInfo();
226 return str;
227 }
Brian Osman9a390ac2018-11-12 09:47:48 -0500228#endif
Brian Salomon34169692017-08-28 15:32:01 -0400229
Brian Osman5ced0bf2019-03-15 10:15:29 -0400230 GrProcessorSet::Analysis finalize(
Brian Osman8fa7ab42019-03-18 10:22:42 -0400231 const GrCaps& caps, const GrAppliedClip*, GrFSAAType, GrClampType clampType) override {
Brian Salomon34169692017-08-28 15:32:01 -0400232 SkASSERT(!fFinalized);
233 fFinalized = true;
Brian Salomond7065e72018-10-12 11:42:02 -0400234 for (unsigned p = 0; p < fProxyCnt; ++p) {
235 fProxies[p].fProxy->addPendingRead();
236 fProxies[p].fProxy->unref();
237 }
Brian Osman8fa7ab42019-03-18 10:22:42 -0400238 fColorType = static_cast<unsigned>(ColorType::kNone);
239 for (int q = 0; q < fQuads.count(); ++q) {
240 const ColorDomainAndAA& info = fQuads.metadata(q);
241 auto colorType = GrQuadPerEdgeAA::MinColorType(info.fColor, clampType, caps);
242 fColorType = SkTMax(fColorType, static_cast<unsigned>(colorType));
243 }
Chris Dalton4b62aed2019-01-15 11:53:00 -0700244 return GrProcessorSet::EmptySetAnalysis();
Brian Salomon34169692017-08-28 15:32:01 -0400245 }
246
Brian Salomon485b8c62018-01-12 15:11:06 -0500247 FixedFunctionFlags fixedFunctionFlags() const override {
248 return this->aaType() == GrAAType::kMSAA ? FixedFunctionFlags::kUsesHWAA
249 : FixedFunctionFlags::kNone;
250 }
Brian Salomon34169692017-08-28 15:32:01 -0400251
252 DEFINE_OP_CLASS_ID
253
254private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400255 friend class ::GrOpMemoryPool;
Brian Salomon762d5e72017-12-01 10:25:08 -0500256
Michael Ludwig009b92e2019-02-15 16:03:53 -0500257 // dstQuad and dstQuadType should be the geometry transformed by the view matrix.
258 // srcRect represents original src rect and will be used as the domain when constraint is strict
259 // If srcQuad is provided, it will be used for the local coords instead of srcRect, although
260 // srcRect will still specify the domain constraint if needed.
Brian Osman3d139a42018-11-19 10:42:10 -0500261 TextureOp(sk_sp<GrTextureProxy> proxy, GrSamplerState::Filter filter, const SkPMColor4f& color,
Michael Ludwig009b92e2019-02-15 16:03:53 -0500262 const GrPerspQuad& dstQuad, GrQuadType dstQuadType,
263 const SkRect& srcRect, SkCanvas::SrcRectConstraint constraint,
264 const GrPerspQuad* srcQuad, GrQuadType srcQuadType, GrAAType aaType,
265 GrQuadAAFlags aaFlags, sk_sp<GrColorSpaceXform> textureColorSpaceXform)
Brian Salomon34169692017-08-28 15:32:01 -0400266 : INHERITED(ClassID())
Brian Osman3ebd3542018-07-30 14:36:53 -0400267 , fTextureColorSpaceXform(std::move(textureColorSpaceXform))
Brian Salomon0087c832018-10-15 14:48:20 -0400268 , fFilter(static_cast<unsigned>(filter))
Brian Osman2b23c4b2018-06-01 12:25:08 -0400269 , fFinalized(0) {
Michael Ludwig6bee7762018-10-19 09:50:36 -0400270 // Clean up disparities between the overall aa type and edge configuration and apply
271 // optimizations based on the rect and matrix when appropriate
Michael Ludwig009b92e2019-02-15 16:03:53 -0500272 GrResolveAATypeForQuad(aaType, aaFlags, dstQuad, dstQuadType, &aaType, &aaFlags);
Michael Ludwig6bee7762018-10-19 09:50:36 -0400273 fAAType = static_cast<unsigned>(aaType);
274
Brian Salomonf1709042018-10-03 11:57:00 -0400275 // We expect our caller to have already caught this optimization.
Brian Salomond7065e72018-10-12 11:42:02 -0400276 SkASSERT(!srcRect.contains(proxy->getWorstCaseBoundsRect()) ||
Brian Salomonf1709042018-10-03 11:57:00 -0400277 constraint == SkCanvas::kFast_SrcRectConstraint);
Michael Ludwig009b92e2019-02-15 16:03:53 -0500278
Brian Salomonf09abc52018-10-03 15:59:04 -0400279 // We may have had a strict constraint with nearest filter solely due to possible AA bloat.
280 // If we don't have (or determined we don't need) coverage AA then we can skip using a
281 // domain.
282 if (constraint == SkCanvas::kStrict_SrcRectConstraint &&
Brian Salomon0087c832018-10-15 14:48:20 -0400283 this->filter() == GrSamplerState::Filter::kNearest &&
Michael Ludwig6bee7762018-10-19 09:50:36 -0400284 aaType != GrAAType::kCoverage) {
Brian Salomonf09abc52018-10-03 15:59:04 -0400285 constraint = SkCanvas::kFast_SrcRectConstraint;
286 }
Michael Ludwigc96fc372019-01-08 15:46:15 -0500287
288 Domain domain = constraint == SkCanvas::kStrict_SrcRectConstraint ? Domain::kYes
289 : Domain::kNo;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500290 // Initially, if srcQuad is provided it will always be at index 0 of fSrcQuads
291 fQuads.push_back(dstQuad, dstQuadType, {color, srcRect, srcQuad ? 0 : -1, domain, aaFlags});
292 if (srcQuad) {
293 fSrcQuads.push_back(*srcQuad, srcQuadType);
294 }
Brian Salomond7065e72018-10-12 11:42:02 -0400295 fProxyCnt = 1;
296 fProxies[0] = {proxy.release(), 1};
Michael Ludwig009b92e2019-02-15 16:03:53 -0500297 auto bounds = dstQuad.bounds(dstQuadType);
Michael Ludwig6bee7762018-10-19 09:50:36 -0400298 this->setBounds(bounds, HasAABloat(aaType == GrAAType::kCoverage), IsZeroArea::kNo);
Michael Ludwigc96fc372019-01-08 15:46:15 -0500299 fDomain = static_cast<unsigned>(domain);
Brian Salomond7065e72018-10-12 11:42:02 -0400300 }
301 TextureOp(const GrRenderTargetContext::TextureSetEntry set[], int cnt,
Michael Ludwig31ba7182019-04-03 10:38:06 -0400302 GrSamplerState::Filter filter, GrAAType aaType,
303 SkCanvas::SrcRectConstraint constraint, const SkMatrix& viewMatrix,
Brian Salomond003d222018-11-26 13:25:05 -0500304 sk_sp<GrColorSpaceXform> textureColorSpaceXform)
Brian Salomond7065e72018-10-12 11:42:02 -0400305 : INHERITED(ClassID())
306 , fTextureColorSpaceXform(std::move(textureColorSpaceXform))
Brian Salomon0087c832018-10-15 14:48:20 -0400307 , fFilter(static_cast<unsigned>(filter))
Brian Salomond7065e72018-10-12 11:42:02 -0400308 , fFinalized(0) {
Brian Salomond7065e72018-10-12 11:42:02 -0400309 fProxyCnt = SkToUInt(cnt);
310 SkRect bounds = SkRectPriv::MakeLargestInverted();
Michael Ludwig6bee7762018-10-19 09:50:36 -0400311 GrAAType overallAAType = GrAAType::kNone; // aa type maximally compatible with all dst rects
Brian Salomon0087c832018-10-15 14:48:20 -0400312 bool mustFilter = false;
Michael Ludwig7ae2ab52019-03-05 16:00:20 -0500313 // Most dst rects are transformed by the same view matrix, so their quad types start
314 // identical, unless an entry provides a dstClip or additional transform that changes it.
315 // The quad list will automatically adapt to that.
316 fQuads.reserve(cnt, GrQuadTypeForTransformedRect(viewMatrix));
Brian Salomon1d835422019-03-13 16:11:44 -0400317 bool allOpaque = true;
Michael Ludwig31ba7182019-04-03 10:38:06 -0400318 Domain netDomain = Domain::kNo;
Brian Salomond7065e72018-10-12 11:42:02 -0400319 for (unsigned p = 0; p < fProxyCnt; ++p) {
320 fProxies[p].fProxy = SkRef(set[p].fProxy.get());
321 fProxies[p].fQuadCnt = 1;
322 SkASSERT(fProxies[p].fProxy->textureType() == fProxies[0].fProxy->textureType());
323 SkASSERT(fProxies[p].fProxy->config() == fProxies[0].fProxy->config());
Michael Ludwigce62dec2019-02-19 11:48:46 -0500324
Michael Ludwig7ae2ab52019-03-05 16:00:20 -0500325 SkMatrix ctm = viewMatrix;
326 if (set[p].fPreViewMatrix) {
327 ctm.preConcat(*set[p].fPreViewMatrix);
328 }
329
Michael Ludwigce62dec2019-02-19 11:48:46 -0500330 // Use dstRect unless dstClip is provided, which is assumed to be a quad
Michael Ludwig1433cfd2019-02-27 17:12:30 -0500331 auto quad = set[p].fDstClipQuad == nullptr ?
Michael Ludwig7ae2ab52019-03-05 16:00:20 -0500332 GrPerspQuad::MakeFromRect(set[p].fDstRect, ctm) :
333 GrPerspQuad::MakeFromSkQuad(set[p].fDstClipQuad, ctm);
Michael Ludwig97b94422019-04-09 10:42:39 -0400334 GrQuadType quadType =
335 set[p].fDstClipQuad ? GrQuadTypeForPoints(set[p].fDstClipQuad, ctm)
336 : GrQuadTypeForTransformedRect(ctm);
Michael Ludwigce62dec2019-02-19 11:48:46 -0500337
Michael Ludwigc96fc372019-01-08 15:46:15 -0500338 bounds.joinPossiblyEmptyRect(quad.bounds(quadType));
Michael Ludwig6bee7762018-10-19 09:50:36 -0400339 GrQuadAAFlags aaFlags;
340 // Don't update the overall aaType, might be inappropriate for some of the quads
341 GrAAType aaForQuad;
342 GrResolveAATypeForQuad(aaType, set[p].fAAFlags, quad, quadType, &aaForQuad, &aaFlags);
343 // Resolve sets aaForQuad to aaType or None, there is never a change between aa methods
344 SkASSERT(aaForQuad == GrAAType::kNone || aaForQuad == aaType);
345 if (overallAAType == GrAAType::kNone && aaForQuad != GrAAType::kNone) {
346 overallAAType = aaType;
Brian Salomond7065e72018-10-12 11:42:02 -0400347 }
Brian Salomon0087c832018-10-15 14:48:20 -0400348 if (!mustFilter && this->filter() != GrSamplerState::Filter::kNearest) {
Michael Ludwigc182b942018-11-16 10:27:51 -0500349 mustFilter = quadType != GrQuadType::kRect ||
Michael Ludwig7ae2ab52019-03-05 16:00:20 -0500350 GrTextureOp::GetFilterHasEffect(ctm, set[p].fSrcRect,
Michael Ludwiga3c45c72019-01-17 17:26:48 -0500351 set[p].fDstRect);
Brian Salomon0087c832018-10-15 14:48:20 -0400352 }
Michael Ludwig31ba7182019-04-03 10:38:06 -0400353 Domain domainForQuad = Domain::kNo;
354 if (constraint == SkCanvas::kStrict_SrcRectConstraint) {
355 // Check (briefly) if the strict constraint is needed for this set entry
356 if (!set[p].fSrcRect.contains(fProxies[p].fProxy->getWorstCaseBoundsRect()) &&
357 (mustFilter || aaForQuad == GrAAType::kCoverage)) {
358 // Can't rely on hardware clamping and the draw will access outer texels
359 // for AA and/or bilerp
360 netDomain = Domain::kYes;
361 domainForQuad = Domain::kYes;
362 }
363 }
Brian Salomond003d222018-11-26 13:25:05 -0500364 float alpha = SkTPin(set[p].fAlpha, 0.f, 1.f);
Brian Salomon1d835422019-03-13 16:11:44 -0400365 allOpaque &= (1.f == alpha);
Brian Salomond003d222018-11-26 13:25:05 -0500366 SkPMColor4f color{alpha, alpha, alpha, alpha};
Michael Ludwigce62dec2019-02-19 11:48:46 -0500367 int srcQuadIndex = -1;
Michael Ludwig1433cfd2019-02-27 17:12:30 -0500368 if (set[p].fDstClipQuad) {
Michael Ludwigce62dec2019-02-19 11:48:46 -0500369 // Derive new source coordinates that match dstClip's relative locations in dstRect,
370 // but with respect to srcRect
371 SkPoint srcQuad[4];
Michael Ludwig1433cfd2019-02-27 17:12:30 -0500372 GrMapRectPoints(set[p].fDstRect, set[p].fSrcRect, set[p].fDstClipQuad, srcQuad, 4);
Michael Ludwigce62dec2019-02-19 11:48:46 -0500373 fSrcQuads.push_back(GrPerspQuad::MakeFromSkQuad(srcQuad, SkMatrix::I()),
Michael Ludwig97b94422019-04-09 10:42:39 -0400374 GrQuadTypeForPoints(srcQuad, SkMatrix::I()));
Michael Ludwigce62dec2019-02-19 11:48:46 -0500375 srcQuadIndex = fSrcQuads.count() - 1;
376 }
377 fQuads.push_back(quad, quadType,
Michael Ludwig31ba7182019-04-03 10:38:06 -0400378 {color, set[p].fSrcRect, srcQuadIndex, domainForQuad, aaFlags});
Brian Salomond7065e72018-10-12 11:42:02 -0400379 }
Michael Ludwig6bee7762018-10-19 09:50:36 -0400380 fAAType = static_cast<unsigned>(overallAAType);
Brian Salomon0087c832018-10-15 14:48:20 -0400381 if (!mustFilter) {
382 fFilter = static_cast<unsigned>(GrSamplerState::Filter::kNearest);
383 }
Brian Salomond7065e72018-10-12 11:42:02 -0400384 this->setBounds(bounds, HasAABloat(this->aaType() == GrAAType::kCoverage), IsZeroArea::kNo);
Michael Ludwig31ba7182019-04-03 10:38:06 -0400385 fDomain = static_cast<unsigned>(netDomain);
Brian Salomon34169692017-08-28 15:32:01 -0400386 }
387
Brian Salomon574d6162018-11-19 16:57:25 -0500388 void tess(void* v, const VertexSpec& spec, const GrTextureProxy* proxy, int start,
389 int cnt) const {
Brian Salomond7065e72018-10-12 11:42:02 -0400390 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Salomond7065e72018-10-12 11:42:02 -0400391 auto origin = proxy->origin();
392 const auto* texture = proxy->peekTexture();
Brian Salomon246bc3d2018-12-06 15:33:02 -0500393 float iw, ih, h;
394 if (proxy->textureType() == GrTextureType::kRectangle) {
395 iw = ih = 1.f;
396 h = texture->height();
397 } else {
398 iw = 1.f / texture->width();
399 ih = 1.f / texture->height();
400 h = 1.f;
401 }
Brian Salomon7eae3e02018-08-07 14:02:38 +0000402
Brian Salomond7065e72018-10-12 11:42:02 -0400403 for (int i = start; i < start + cnt; ++i) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500404 const GrPerspQuad& device = fQuads[i];
405 const ColorDomainAndAA& info = fQuads.metadata(i);
406
Michael Ludwig009b92e2019-02-15 16:03:53 -0500407 GrPerspQuad srcQuad = info.fSrcQuadIndex >= 0 ?
408 compute_src_quad(origin, fSrcQuads[info.fSrcQuadIndex], iw, ih, h) :
409 compute_src_quad_from_rect(origin, info.fSrcRect, iw, ih, h);
Brian Salomon246bc3d2018-12-06 15:33:02 -0500410 SkRect domain =
Michael Ludwigc96fc372019-01-08 15:46:15 -0500411 compute_domain(info.domain(), this->filter(), origin, info.fSrcRect, iw, ih, h);
412 v = GrQuadPerEdgeAA::Tessellate(v, spec, device, info.fColor, srcQuad, domain,
413 info.aaFlags());
Brian Salomon17031a72018-05-22 14:14:07 -0400414 }
415 }
416
Brian Salomon34169692017-08-28 15:32:01 -0400417 void onPrepareDraws(Target* target) override {
Brian Salomond7065e72018-10-12 11:42:02 -0400418 TRACE_EVENT0("skia", TRACE_FUNC);
Michael Ludwigf995c052018-11-26 15:24:29 -0500419 GrQuadType quadType = GrQuadType::kRect;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500420 GrQuadType srcQuadType = GrQuadType::kRect;
Brian Salomonf7232642018-09-19 08:58:08 -0400421 Domain domain = Domain::kNo;
Brian Salomon1d835422019-03-13 16:11:44 -0400422 ColorType colorType = ColorType::kNone;
Brian Salomond7065e72018-10-12 11:42:02 -0400423 int numProxies = 0;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400424 int numTotalQuads = 0;
Brian Salomond7065e72018-10-12 11:42:02 -0400425 auto textureType = fProxies[0].fProxy->textureType();
426 auto config = fProxies[0].fProxy->config();
Brian Salomonae7d7702018-10-14 15:05:45 -0400427 GrAAType aaType = this->aaType();
Brian Salomonf7232642018-09-19 08:58:08 -0400428 for (const auto& op : ChainRange<TextureOp>(this)) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500429 if (op.fQuads.quadType() > quadType) {
430 quadType = op.fQuads.quadType();
Michael Ludwigf995c052018-11-26 15:24:29 -0500431 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500432 if (op.fSrcQuads.quadType() > srcQuadType) {
433 // Should only become more general if there are quads to use instead of fSrcRect
434 SkASSERT(op.fSrcQuads.count() > 0);
435 srcQuadType = op.fSrcQuads.quadType();
436 }
Brian Salomonf7232642018-09-19 08:58:08 -0400437 if (op.fDomain) {
438 domain = Domain::kYes;
439 }
Brian Salomon1d835422019-03-13 16:11:44 -0400440 colorType = SkTMax(colorType, static_cast<ColorType>(op.fColorType));
Brian Salomond7065e72018-10-12 11:42:02 -0400441 numProxies += op.fProxyCnt;
442 for (unsigned p = 0; p < op.fProxyCnt; ++p) {
Brian Salomon4b8178f2018-10-12 13:18:27 -0400443 numTotalQuads += op.fProxies[p].fQuadCnt;
Brian Salomond7065e72018-10-12 11:42:02 -0400444 auto* proxy = op.fProxies[p].fProxy;
Robert Phillips12c46292019-04-23 07:36:17 -0400445 if (!proxy->isInstantiated()) {
Brian Salomond7065e72018-10-12 11:42:02 -0400446 return;
447 }
448 SkASSERT(proxy->config() == config);
449 SkASSERT(proxy->textureType() == textureType);
Brian Salomonf7232642018-09-19 08:58:08 -0400450 }
Brian Salomonae7d7702018-10-14 15:05:45 -0400451 if (op.aaType() == GrAAType::kCoverage) {
452 SkASSERT(aaType == GrAAType::kCoverage || aaType == GrAAType::kNone);
453 aaType = GrAAType::kCoverage;
454 }
Brian Salomon34169692017-08-28 15:32:01 -0400455 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400456
Brian Salomon1d835422019-03-13 16:11:44 -0400457 VertexSpec vertexSpec(quadType, colorType, srcQuadType, /* hasLocal */ true, domain, aaType,
Michael Ludwig93aeba02018-12-21 09:50:31 -0500458 /* alpha as coverage */ true);
Michael Ludwigc182b942018-11-16 10:27:51 -0500459
Greg Daniel7a82edf2018-12-04 10:54:34 -0500460 GrSamplerState samplerState = GrSamplerState(GrSamplerState::WrapMode::kClamp,
461 this->filter());
462 GrGpu* gpu = target->resourceProvider()->priv().gpu();
463 uint32_t extraSamplerKey = gpu->getExtraSamplerKeyForProgram(
464 samplerState, fProxies[0].fProxy->backendFormat());
465
Michael Ludwig467994d2018-12-03 14:58:31 +0000466 sk_sp<GrGeometryProcessor> gp = GrQuadPerEdgeAA::MakeTexturedProcessor(
467 vertexSpec, *target->caps().shaderCaps(),
Greg Daniel7a82edf2018-12-04 10:54:34 -0500468 textureType, config, samplerState, extraSamplerKey,
469 std::move(fTextureColorSpaceXform));
470
Brian Salomonf7232642018-09-19 08:58:08 -0400471 // We'll use a dynamic state array for the GP textures when there are multiple ops.
472 // Otherwise, we use fixed dynamic state to specify the single op's proxy.
473 GrPipeline::DynamicStateArrays* dynamicStateArrays = nullptr;
474 GrPipeline::FixedDynamicState* fixedDynamicState;
Brian Salomond7065e72018-10-12 11:42:02 -0400475 if (numProxies > 1) {
476 dynamicStateArrays = target->allocDynamicStateArrays(numProxies, 1, false);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700477 fixedDynamicState = target->makeFixedDynamicState(0);
Brian Salomonf7232642018-09-19 08:58:08 -0400478 } else {
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700479 fixedDynamicState = target->makeFixedDynamicState(1);
Brian Salomond7065e72018-10-12 11:42:02 -0400480 fixedDynamicState->fPrimitiveProcessorTextures[0] = fProxies[0].fProxy;
Brian Salomonf7232642018-09-19 08:58:08 -0400481 }
Brian Salomon92be2f72018-06-19 14:33:47 -0400482
Michael Ludwigc182b942018-11-16 10:27:51 -0500483 size_t vertexSize = gp->vertexStride();
Brian Salomon92be2f72018-06-19 14:33:47 -0400484
Brian Salomond7065e72018-10-12 11:42:02 -0400485 GrMesh* meshes = target->allocMeshes(numProxies);
Brian Salomon12d22642019-01-29 14:38:50 -0500486 sk_sp<const GrBuffer> vbuffer;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400487 int vertexOffsetInBuffer = 0;
Michael Ludwig93aeba02018-12-21 09:50:31 -0500488 int numQuadVerticesLeft = numTotalQuads * vertexSpec.verticesPerQuad();
Brian Salomon4b8178f2018-10-12 13:18:27 -0400489 int numAllocatedVertices = 0;
490 void* vdata = nullptr;
491
Brian Salomond7065e72018-10-12 11:42:02 -0400492 int m = 0;
Brian Salomonf7232642018-09-19 08:58:08 -0400493 for (const auto& op : ChainRange<TextureOp>(this)) {
Brian Salomond7065e72018-10-12 11:42:02 -0400494 int q = 0;
495 for (unsigned p = 0; p < op.fProxyCnt; ++p) {
496 int quadCnt = op.fProxies[p].fQuadCnt;
497 auto* proxy = op.fProxies[p].fProxy;
Michael Ludwig93aeba02018-12-21 09:50:31 -0500498 int meshVertexCnt = quadCnt * vertexSpec.verticesPerQuad();
Brian Salomon4b8178f2018-10-12 13:18:27 -0400499 if (numAllocatedVertices < meshVertexCnt) {
500 vdata = target->makeVertexSpaceAtLeast(
501 vertexSize, meshVertexCnt, numQuadVerticesLeft, &vbuffer,
502 &vertexOffsetInBuffer, &numAllocatedVertices);
503 SkASSERT(numAllocatedVertices <= numQuadVerticesLeft);
504 if (!vdata) {
505 SkDebugf("Could not allocate vertices\n");
506 return;
507 }
Brian Salomonf7232642018-09-19 08:58:08 -0400508 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400509 SkASSERT(numAllocatedVertices >= meshVertexCnt);
Brian Salomond7065e72018-10-12 11:42:02 -0400510
Michael Ludwigc182b942018-11-16 10:27:51 -0500511 op.tess(vdata, vertexSpec, proxy, q, quadCnt);
Brian Salomond7065e72018-10-12 11:42:02 -0400512
Michael Ludwig93aeba02018-12-21 09:50:31 -0500513 if (!GrQuadPerEdgeAA::ConfigureMeshIndices(target, &(meshes[m]), vertexSpec,
514 quadCnt)) {
515 SkDebugf("Could not allocate indices");
516 return;
Brian Salomond7065e72018-10-12 11:42:02 -0400517 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400518 meshes[m].setVertexData(vbuffer, vertexOffsetInBuffer);
Brian Salomond7065e72018-10-12 11:42:02 -0400519 if (dynamicStateArrays) {
520 dynamicStateArrays->fPrimitiveProcessorTextures[m] = proxy;
521 }
522 ++m;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400523 numAllocatedVertices -= meshVertexCnt;
524 numQuadVerticesLeft -= meshVertexCnt;
525 vertexOffsetInBuffer += meshVertexCnt;
526 vdata = reinterpret_cast<char*>(vdata) + vertexSize * meshVertexCnt;
Brian Salomond7065e72018-10-12 11:42:02 -0400527 q += quadCnt;
Brian Salomonf7232642018-09-19 08:58:08 -0400528 }
Brian Salomon34169692017-08-28 15:32:01 -0400529 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400530 SkASSERT(!numQuadVerticesLeft);
531 SkASSERT(!numAllocatedVertices);
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700532 target->recordDraw(
533 std::move(gp), meshes, numProxies, fixedDynamicState, dynamicStateArrays);
534 }
535
536 void onExecute(GrOpFlushState* flushState, const SkRect& chainBounds) override {
537 auto pipelineFlags = (GrAAType::kMSAA == this->aaType())
Chris Daltonbaa1b352019-04-03 12:03:00 -0600538 ? GrPipeline::InputFlags::kHWAntialias
539 : GrPipeline::InputFlags::kNone;
Chris Dalton07cdcfc92019-02-26 11:13:22 -0700540 flushState->executeDrawsAndUploadsForMeshDrawOp(
541 this, chainBounds, GrProcessorSet::MakeEmptySet(), pipelineFlags);
Brian Salomon34169692017-08-28 15:32:01 -0400542 }
543
Brian Salomonf7232642018-09-19 08:58:08 -0400544 CombineResult onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomond7065e72018-10-12 11:42:02 -0400545 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Salomon34169692017-08-28 15:32:01 -0400546 const auto* that = t->cast<TextureOp>();
Michael Ludwig2929f512019-04-19 13:05:56 -0400547 if (fDomain != that->fDomain) {
548 // It is technically possible to combine operations across domain modes, but performance
549 // testing suggests it's better to make more draw calls where some take advantage of
550 // the more optimal shader path without coordinate clamping.
551 return CombineResult::kCannotCombine;
552 }
Brian Osman3ebd3542018-07-30 14:36:53 -0400553 if (!GrColorSpaceXform::Equals(fTextureColorSpaceXform.get(),
554 that->fTextureColorSpaceXform.get())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000555 return CombineResult::kCannotCombine;
Brian Osman3ebd3542018-07-30 14:36:53 -0400556 }
Brian Salomonae7d7702018-10-14 15:05:45 -0400557 bool upgradeToCoverageAAOnMerge = false;
Brian Salomon485b8c62018-01-12 15:11:06 -0500558 if (this->aaType() != that->aaType()) {
Brian Salomonae7d7702018-10-14 15:05:45 -0400559 if (!((this->aaType() == GrAAType::kCoverage && that->aaType() == GrAAType::kNone) ||
560 (that->aaType() == GrAAType::kCoverage && this->aaType() == GrAAType::kNone))) {
561 return CombineResult::kCannotCombine;
562 }
563 upgradeToCoverageAAOnMerge = true;
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500564 }
Brian Salomonf7232642018-09-19 08:58:08 -0400565 if (fFilter != that->fFilter) {
566 return CombineResult::kCannotCombine;
567 }
Brian Salomond7065e72018-10-12 11:42:02 -0400568 auto thisProxy = fProxies[0].fProxy;
569 auto thatProxy = that->fProxies[0].fProxy;
570 if (fProxyCnt > 1 || that->fProxyCnt > 1 ||
Brian Salomon588cec72018-11-14 13:56:37 -0500571 thisProxy->uniqueID() != thatProxy->uniqueID()) {
572 // We can't merge across different proxies. Check if 'this' can be chained with 'that'.
Greg Daniel45723ac2018-11-30 10:12:43 -0500573 if (GrTextureProxy::ProxiesAreCompatibleAsDynamicState(thisProxy, thatProxy) &&
Brian Salomonf7232642018-09-19 08:58:08 -0400574 caps.dynamicStateArrayGeometryProcessorTextureSupport()) {
575 return CombineResult::kMayChain;
576 }
Brian Salomon7eae3e02018-08-07 14:02:38 +0000577 return CombineResult::kCannotCombine;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400578 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500579
Brian Salomonb80ffee2018-05-23 16:39:39 -0400580 fDomain |= that->fDomain;
Brian Salomon1d835422019-03-13 16:11:44 -0400581 fColorType = SkTMax(fColorType, that->fColorType);
Brian Salomonae7d7702018-10-14 15:05:45 -0400582 if (upgradeToCoverageAAOnMerge) {
583 fAAType = static_cast<unsigned>(GrAAType::kCoverage);
584 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500585
586 // Concatenate quad lists together, updating the fSrcQuadIndex in the appended quads
587 // to account for the new starting index in fSrcQuads
588 int srcQuadOffset = fSrcQuads.count();
589 int oldQuadCount = fQuads.count();
590
591 fSrcQuads.concat(that->fSrcQuads);
592 fQuads.concat(that->fQuads);
593 fProxies[0].fQuadCnt += that->fQuads.count();
594
595 if (that->fSrcQuads.count() > 0) {
596 // Some of the concatenated quads pointed to fSrcQuads, so adjust the indices for the
597 // newly appended quads
598 for (int i = oldQuadCount; i < fQuads.count(); ++i) {
599 if (fQuads.metadata(i).fSrcQuadIndex >= 0) {
600 fQuads.metadata(i).fSrcQuadIndex += srcQuadOffset;
601 }
602 }
603 }
604
605 // Confirm all tracked state makes sense when in debug builds
606#ifdef SK_DEBUG
607 SkASSERT(fSrcQuads.count() <= fQuads.count());
608 for (int i = 0; i < fQuads.count(); ++i) {
609 int srcIndex = fQuads.metadata(i).fSrcQuadIndex;
610 if (srcIndex >= 0) {
611 // Make sure it points to a valid index, in the right region of the list
612 SkASSERT(srcIndex < fSrcQuads.count());
613 SkASSERT((i < oldQuadCount && srcIndex < srcQuadOffset) ||
614 (i >= oldQuadCount && srcIndex >= srcQuadOffset));
615 }
616 }
617#endif
Brian Salomon7eae3e02018-08-07 14:02:38 +0000618 return CombineResult::kMerged;
Brian Salomon34169692017-08-28 15:32:01 -0400619 }
620
Brian Salomon485b8c62018-01-12 15:11:06 -0500621 GrAAType aaType() const { return static_cast<GrAAType>(fAAType); }
Brian Salomon0087c832018-10-15 14:48:20 -0400622 GrSamplerState::Filter filter() const { return static_cast<GrSamplerState::Filter>(fFilter); }
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500623
Michael Ludwigc96fc372019-01-08 15:46:15 -0500624 struct ColorDomainAndAA {
625 // Special constructor to convert enums into the packed bits, which should not delete
626 // the implicit move constructor (but it does require us to declare an empty ctor for
627 // use with the GrTQuadList).
Michael Ludwig009b92e2019-02-15 16:03:53 -0500628 ColorDomainAndAA(const SkPMColor4f& color, const SkRect& srcRect, int srcQuadIndex,
Michael Ludwigc96fc372019-01-08 15:46:15 -0500629 Domain hasDomain, GrQuadAAFlags aaFlags)
630 : fColor(color)
631 , fSrcRect(srcRect)
Michael Ludwig009b92e2019-02-15 16:03:53 -0500632 , fSrcQuadIndex(srcQuadIndex)
Michael Ludwigc96fc372019-01-08 15:46:15 -0500633 , fHasDomain(static_cast<unsigned>(hasDomain))
Brian Salomon2213ee92018-10-02 10:44:21 -0400634 , fAAFlags(static_cast<unsigned>(aaFlags)) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500635 SkASSERT(fHasDomain == static_cast<unsigned>(hasDomain));
Brian Salomon2213ee92018-10-02 10:44:21 -0400636 SkASSERT(fAAFlags == static_cast<unsigned>(aaFlags));
637 }
Michael Ludwigc96fc372019-01-08 15:46:15 -0500638 ColorDomainAndAA() = default;
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000639
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000640 SkPMColor4f fColor;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500641 // Even if fSrcQuadIndex provides source coords, use fSrcRect for domain constraint
Michael Ludwigc96fc372019-01-08 15:46:15 -0500642 SkRect fSrcRect;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500643 // If >= 0, use to access fSrcQuads instead of fSrcRect for the source coordinates
644 int fSrcQuadIndex;
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000645 unsigned fHasDomain : 1;
646 unsigned fAAFlags : 4;
Michael Ludwigc96fc372019-01-08 15:46:15 -0500647
648 Domain domain() const { return Domain(fHasDomain); }
649 GrQuadAAFlags aaFlags() const { return static_cast<GrQuadAAFlags>(fAAFlags); }
Brian Salomon34169692017-08-28 15:32:01 -0400650 };
Brian Salomond7065e72018-10-12 11:42:02 -0400651 struct Proxy {
652 GrTextureProxy* fProxy;
653 int fQuadCnt;
654 };
Michael Ludwigc96fc372019-01-08 15:46:15 -0500655 GrTQuadList<ColorDomainAndAA> fQuads;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500656 // The majority of texture ops will not track a complete src quad so this is indexed separately
657 // and may be of different size to fQuads.
658 GrQuadList fSrcQuads;
Brian Osman3ebd3542018-07-30 14:36:53 -0400659 sk_sp<GrColorSpaceXform> fTextureColorSpaceXform;
Brian Salomon0087c832018-10-15 14:48:20 -0400660 unsigned fFilter : 2;
Brian Salomon485b8c62018-01-12 15:11:06 -0500661 unsigned fAAType : 2;
Brian Salomonb80ffee2018-05-23 16:39:39 -0400662 unsigned fDomain : 1;
Brian Salomon1d835422019-03-13 16:11:44 -0400663 unsigned fColorType : 2;
664 GR_STATIC_ASSERT(GrQuadPerEdgeAA::kColorTypeCount <= 4);
Brian Salomon34169692017-08-28 15:32:01 -0400665 // Used to track whether fProxy is ref'ed or has a pending IO after finalize() is called.
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500666 unsigned fFinalized : 1;
Robert Phillips5f78adf2019-04-22 12:41:39 -0400667 unsigned fProxyCnt : 32 - 8;
Brian Salomond7065e72018-10-12 11:42:02 -0400668 Proxy fProxies[1];
Brian Salomon336ce7b2017-09-08 08:23:58 -0400669
Michael Ludwigf995c052018-11-26 15:24:29 -0500670 static_assert(kGrQuadTypeCount <= 4, "GrQuadType does not fit in 2 bits");
671
Brian Salomon34169692017-08-28 15:32:01 -0400672 typedef GrMeshDrawOp INHERITED;
673};
674
675} // anonymous namespace
676
677namespace GrTextureOp {
678
Robert Phillipsb97da532019-02-12 15:24:12 -0500679std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400680 sk_sp<GrTextureProxy> proxy,
681 GrSamplerState::Filter filter,
Brian Osman3d139a42018-11-19 10:42:10 -0500682 const SkPMColor4f& color,
Robert Phillips7c525e62018-06-12 10:11:12 -0400683 const SkRect& srcRect,
684 const SkRect& dstRect,
685 GrAAType aaType,
Brian Salomon2213ee92018-10-02 10:44:21 -0400686 GrQuadAAFlags aaFlags,
Robert Phillips7c525e62018-06-12 10:11:12 -0400687 SkCanvas::SrcRectConstraint constraint,
688 const SkMatrix& viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500689 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400690 return TextureOp::Make(context, std::move(proxy), filter, color, srcRect, dstRect, aaType,
Brian Osman3d139a42018-11-19 10:42:10 -0500691 aaFlags, constraint, viewMatrix, std::move(textureColorSpaceXform));
Brian Salomon34169692017-08-28 15:32:01 -0400692}
693
Michael Ludwig009b92e2019-02-15 16:03:53 -0500694std::unique_ptr<GrDrawOp> MakeQuad(GrRecordingContext* context,
695 sk_sp<GrTextureProxy> proxy,
696 GrSamplerState::Filter filter,
697 const SkPMColor4f& color,
698 const SkPoint srcQuad[4],
699 const SkPoint dstQuad[4],
700 GrAAType aaType,
701 GrQuadAAFlags aaFlags,
702 const SkRect* domain,
703 const SkMatrix& viewMatrix,
704 sk_sp<GrColorSpaceXform> textureXform) {
705 return TextureOp::Make(context, std::move(proxy), filter, color, srcQuad, dstQuad, aaType,
706 aaFlags, domain, viewMatrix, std::move(textureXform));
707}
708
709std::unique_ptr<GrDrawOp> MakeSet(GrRecordingContext* context,
710 const GrRenderTargetContext::TextureSetEntry set[],
711 int cnt,
712 GrSamplerState::Filter filter,
713 GrAAType aaType,
Michael Ludwig31ba7182019-04-03 10:38:06 -0400714 SkCanvas::SrcRectConstraint constraint,
Michael Ludwig009b92e2019-02-15 16:03:53 -0500715 const SkMatrix& viewMatrix,
716 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Michael Ludwig31ba7182019-04-03 10:38:06 -0400717 return TextureOp::Make(context, set, cnt, filter, aaType, constraint, viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500718 std::move(textureColorSpaceXform));
Brian Salomond7065e72018-10-12 11:42:02 -0400719}
720
Michael Ludwiga3c45c72019-01-17 17:26:48 -0500721bool GetFilterHasEffect(const SkMatrix& viewMatrix, const SkRect& srcRect, const SkRect& dstRect) {
722 // Hypothetically we could disable bilerp filtering when flipping or rotating 90 degrees, but
723 // that makes the math harder and we don't want to increase the overhead of the checks
724 if (!viewMatrix.isScaleTranslate() ||
725 viewMatrix.getScaleX() < 0.0f || viewMatrix.getScaleY() < 0.0f) {
726 return true;
727 }
728
729 // Given the matrix conditions ensured above, this computes the device space coordinates for
730 // the top left corner of dstRect and its size.
731 SkScalar dw = viewMatrix.getScaleX() * dstRect.width();
732 SkScalar dh = viewMatrix.getScaleY() * dstRect.height();
733 SkScalar dl = viewMatrix.getScaleX() * dstRect.fLeft + viewMatrix.getTranslateX();
734 SkScalar dt = viewMatrix.getScaleY() * dstRect.fTop + viewMatrix.getTranslateY();
735
736 // Disable filtering when there is no scaling of the src rect and the src rect and dst rect
737 // align fractionally. If we allow inverted src rects this logic needs to consider that.
738 SkASSERT(srcRect.isSorted());
739 return dw != srcRect.width() || dh != srcRect.height() ||
740 SkScalarFraction(dl) != SkScalarFraction(srcRect.fLeft) ||
741 SkScalarFraction(dt) != SkScalarFraction(srcRect.fTop);
742}
743
Brian Salomon34169692017-08-28 15:32:01 -0400744} // namespace GrTextureOp
745
746#if GR_TEST_UTILS
Mike Kleinc0bd9f92019-04-23 12:05:21 -0500747#include "include/private/GrRecordingContext.h"
748#include "src/gpu/GrProxyProvider.h"
749#include "src/gpu/GrRecordingContextPriv.h"
Brian Salomon34169692017-08-28 15:32:01 -0400750
751GR_DRAW_OP_TEST_DEFINE(TextureOp) {
752 GrSurfaceDesc desc;
753 desc.fConfig = kRGBA_8888_GrPixelConfig;
754 desc.fHeight = random->nextULessThan(90) + 10;
755 desc.fWidth = random->nextULessThan(90) + 10;
Brian Salomon2a4f9832018-03-03 22:43:43 -0500756 auto origin = random->nextBool() ? kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
Greg Daniel09c94002018-06-08 22:11:51 +0000757 GrMipMapped mipMapped = random->nextBool() ? GrMipMapped::kYes : GrMipMapped::kNo;
758 SkBackingFit fit = SkBackingFit::kExact;
759 if (mipMapped == GrMipMapped::kNo) {
760 fit = random->nextBool() ? SkBackingFit::kApprox : SkBackingFit::kExact;
761 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500762
Greg Daniel4065d452018-11-16 15:43:41 -0500763 const GrBackendFormat format =
Robert Phillips9da87e02019-02-04 13:26:26 -0500764 context->priv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
Greg Daniel4065d452018-11-16 15:43:41 -0500765
Robert Phillips9da87e02019-02-04 13:26:26 -0500766 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Greg Daniel4065d452018-11-16 15:43:41 -0500767 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(format, desc, origin, mipMapped, fit,
Greg Daniel09c94002018-06-08 22:11:51 +0000768 SkBudgeted::kNo,
769 GrInternalSurfaceFlags::kNone);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500770
Brian Salomon34169692017-08-28 15:32:01 -0400771 SkRect rect = GrTest::TestRect(random);
772 SkRect srcRect;
773 srcRect.fLeft = random->nextRangeScalar(0.f, proxy->width() / 2.f);
774 srcRect.fRight = random->nextRangeScalar(0.f, proxy->width()) + proxy->width() / 2.f;
775 srcRect.fTop = random->nextRangeScalar(0.f, proxy->height() / 2.f);
776 srcRect.fBottom = random->nextRangeScalar(0.f, proxy->height()) + proxy->height() / 2.f;
777 SkMatrix viewMatrix = GrTest::TestMatrixPreservesRightAngles(random);
Brian Osman3d139a42018-11-19 10:42:10 -0500778 SkPMColor4f color = SkPMColor4f::FromBytes_RGBA(SkColorToPremulGrColor(random->nextU()));
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400779 GrSamplerState::Filter filter = (GrSamplerState::Filter)random->nextULessThan(
780 static_cast<uint32_t>(GrSamplerState::Filter::kMipMap) + 1);
Greg Daniel09c94002018-06-08 22:11:51 +0000781 while (mipMapped == GrMipMapped::kNo && filter == GrSamplerState::Filter::kMipMap) {
782 filter = (GrSamplerState::Filter)random->nextULessThan(
783 static_cast<uint32_t>(GrSamplerState::Filter::kMipMap) + 1);
784 }
Brian Osman3ebd3542018-07-30 14:36:53 -0400785 auto texXform = GrTest::TestColorXform(random);
Brian Salomon485b8c62018-01-12 15:11:06 -0500786 GrAAType aaType = GrAAType::kNone;
787 if (random->nextBool()) {
788 aaType = (fsaaType == GrFSAAType::kUnifiedMSAA) ? GrAAType::kMSAA : GrAAType::kCoverage;
789 }
Brian Salomon2213ee92018-10-02 10:44:21 -0400790 GrQuadAAFlags aaFlags = GrQuadAAFlags::kNone;
791 aaFlags |= random->nextBool() ? GrQuadAAFlags::kLeft : GrQuadAAFlags::kNone;
792 aaFlags |= random->nextBool() ? GrQuadAAFlags::kTop : GrQuadAAFlags::kNone;
793 aaFlags |= random->nextBool() ? GrQuadAAFlags::kRight : GrQuadAAFlags::kNone;
794 aaFlags |= random->nextBool() ? GrQuadAAFlags::kBottom : GrQuadAAFlags::kNone;
Brian Salomonb80ffee2018-05-23 16:39:39 -0400795 auto constraint = random->nextBool() ? SkCanvas::kStrict_SrcRectConstraint
796 : SkCanvas::kFast_SrcRectConstraint;
Robert Phillips7c525e62018-06-12 10:11:12 -0400797 return GrTextureOp::Make(context, std::move(proxy), filter, color, srcRect, rect, aaType,
Brian Osman3d139a42018-11-19 10:42:10 -0500798 aaFlags, constraint, viewMatrix, std::move(texXform));
Brian Salomon34169692017-08-28 15:32:01 -0400799}
800
801#endif