blob: cb97b9b9d8a380a35446967600fdef328e06d64b [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
8#include "GrTextureOp.h"
Brian Salomond7065e72018-10-12 11:42:02 -04009#include <new>
Brian Salomon34169692017-08-28 15:32:01 -040010#include "GrAppliedClip.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040011#include "GrCaps.h"
Brian Salomon34169692017-08-28 15:32:01 -040012#include "GrDrawOpTest.h"
13#include "GrGeometryProcessor.h"
Greg Daniel7a82edf2018-12-04 10:54:34 -050014#include "GrGpu.h"
Robert Phillips7c525e62018-06-12 10:11:12 -040015#include "GrMemoryPool.h"
Brian Salomon34169692017-08-28 15:32:01 -040016#include "GrMeshDrawOp.h"
17#include "GrOpFlushState.h"
18#include "GrQuad.h"
Michael Ludwig460eb5e2018-10-29 11:09:29 -040019#include "GrQuadPerEdgeAA.h"
Robert Phillipsb97da532019-02-12 15:24:12 -050020#include "GrRecordingContext.h"
21#include "GrRecordingContextPriv.h"
Brian Salomon34169692017-08-28 15:32:01 -040022#include "GrResourceProvider.h"
Greg Daniel7a82edf2018-12-04 10:54:34 -050023#include "GrResourceProviderPriv.h"
Brian Salomon34169692017-08-28 15:32:01 -040024#include "GrShaderCaps.h"
25#include "GrTexture.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040026#include "GrTexturePriv.h"
Brian Salomon34169692017-08-28 15:32:01 -040027#include "GrTextureProxy.h"
28#include "SkGr.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040029#include "SkMathPriv.h"
Brian Salomona33b67c2018-05-17 10:42:14 -040030#include "SkMatrixPriv.h"
Brian Salomonb5ef1f92018-01-11 11:46:21 -050031#include "SkPoint.h"
32#include "SkPoint3.h"
Brian Salomond7065e72018-10-12 11:42:02 -040033#include "SkRectPriv.h"
Hal Canaryc640d0d2018-06-13 09:59:02 -040034#include "SkTo.h"
Brian Salomon34169692017-08-28 15:32:01 -040035#include "glsl/GrGLSLVarying.h"
36
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());
97 Sk4f xs = srcQuad.x4f() * iw;
98 Sk4f ys = srcQuad.y4f() * ih;
99 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);
152 GrQuadType dstQuadType = viewMatrix.hasPerspective() ? GrQuadType::kPerspective
153 : GrQuadType::kStandard;
154 GrPerspQuad grSrcQuad = GrPerspQuad::MakeFromSkQuad(srcQuad, SkMatrix::I());
155
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,
169 &grSrcQuad, GrQuadType::kStandard, aaType, aaFlags,
170 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,
175 const SkMatrix& viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500176 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Brian Salomond7065e72018-10-12 11:42:02 -0400177 size_t size = sizeof(TextureOp) + sizeof(Proxy) * (cnt - 1);
Robert Phillips9da87e02019-02-04 13:26:26 -0500178 GrOpMemoryPool* pool = context->priv().opMemoryPool();
Brian Salomond7065e72018-10-12 11:42:02 -0400179 void* mem = pool->allocate(size);
Brian Salomond003d222018-11-26 13:25:05 -0500180 return std::unique_ptr<GrDrawOp>(new (mem) TextureOp(set, cnt, filter, aaType, viewMatrix,
181 std::move(textureColorSpaceXform)));
Brian Salomond7065e72018-10-12 11:42:02 -0400182 }
Brian Salomon34169692017-08-28 15:32:01 -0400183
Brian Salomon336ce7b2017-09-08 08:23:58 -0400184 ~TextureOp() override {
Brian Salomond7065e72018-10-12 11:42:02 -0400185 for (unsigned p = 0; p < fProxyCnt; ++p) {
186 if (fFinalized) {
187 fProxies[p].fProxy->completedRead();
188 } else {
189 fProxies[p].fProxy->unref();
190 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400191 }
192 }
Brian Salomon34169692017-08-28 15:32:01 -0400193
194 const char* name() const override { return "TextureOp"; }
195
Brian Salomon7d94bb52018-10-12 14:37:19 -0400196 void visitProxies(const VisitProxyFunc& func, VisitorType visitor) const override {
197 if (visitor == VisitorType::kAllocatorGather && fCanSkipAllocatorGather) {
198 return;
199 }
Brian Salomond7065e72018-10-12 11:42:02 -0400200 for (unsigned p = 0; p < fProxyCnt; ++p) {
201 func(fProxies[p].fProxy);
202 }
203 }
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400204
Brian Osman9a390ac2018-11-12 09:47:48 -0500205#ifdef SK_DEBUG
Brian Salomon34169692017-08-28 15:32:01 -0400206 SkString dumpInfo() const override {
207 SkString str;
Brian Salomond7065e72018-10-12 11:42:02 -0400208 str.appendf("# draws: %d\n", fQuads.count());
209 int q = 0;
210 for (unsigned p = 0; p < fProxyCnt; ++p) {
211 str.appendf("Proxy ID: %d, Filter: %d\n", fProxies[p].fProxy->uniqueID().asUInt(),
212 static_cast<int>(fFilter));
213 for (int i = 0; i < fProxies[p].fQuadCnt; ++i, ++q) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500214 GrPerspQuad quad = fQuads[q];
215 const ColorDomainAndAA& info = fQuads.metadata(i);
Brian Salomond7065e72018-10-12 11:42:02 -0400216 str.appendf(
217 "%d: Color: 0x%08x, TexRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f] "
218 "Quad [(%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f)]\n",
Michael Ludwigc96fc372019-01-08 15:46:15 -0500219 i, info.fColor.toBytes_RGBA(), info.fSrcRect.fLeft, info.fSrcRect.fTop,
220 info.fSrcRect.fRight, info.fSrcRect.fBottom, quad.point(0).fX,
221 quad.point(0).fY, quad.point(1).fX, quad.point(1).fY,
222 quad.point(2).fX, quad.point(2).fY, quad.point(3).fX,
223 quad.point(3).fY);
Brian Salomond7065e72018-10-12 11:42:02 -0400224 }
Brian Salomon34169692017-08-28 15:32:01 -0400225 }
226 str += INHERITED::dumpInfo();
227 return str;
228 }
Brian Osman9a390ac2018-11-12 09:47:48 -0500229#endif
Brian Salomon34169692017-08-28 15:32:01 -0400230
Chris Dalton4b62aed2019-01-15 11:53:00 -0700231 GrProcessorSet::Analysis finalize(const GrCaps& caps, const GrAppliedClip* clip) 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 }
Chris Dalton4b62aed2019-01-15 11:53:00 -0700238 return GrProcessorSet::EmptySetAnalysis();
Brian Salomon34169692017-08-28 15:32:01 -0400239 }
240
Brian Salomon485b8c62018-01-12 15:11:06 -0500241 FixedFunctionFlags fixedFunctionFlags() const override {
242 return this->aaType() == GrAAType::kMSAA ? FixedFunctionFlags::kUsesHWAA
243 : FixedFunctionFlags::kNone;
244 }
Brian Salomon34169692017-08-28 15:32:01 -0400245
246 DEFINE_OP_CLASS_ID
247
248private:
Robert Phillips7c525e62018-06-12 10:11:12 -0400249 friend class ::GrOpMemoryPool;
Brian Salomon762d5e72017-12-01 10:25:08 -0500250
Michael Ludwig009b92e2019-02-15 16:03:53 -0500251 // dstQuad and dstQuadType should be the geometry transformed by the view matrix.
252 // srcRect represents original src rect and will be used as the domain when constraint is strict
253 // If srcQuad is provided, it will be used for the local coords instead of srcRect, although
254 // srcRect will still specify the domain constraint if needed.
Brian Osman3d139a42018-11-19 10:42:10 -0500255 TextureOp(sk_sp<GrTextureProxy> proxy, GrSamplerState::Filter filter, const SkPMColor4f& color,
Michael Ludwig009b92e2019-02-15 16:03:53 -0500256 const GrPerspQuad& dstQuad, GrQuadType dstQuadType,
257 const SkRect& srcRect, SkCanvas::SrcRectConstraint constraint,
258 const GrPerspQuad* srcQuad, GrQuadType srcQuadType, GrAAType aaType,
259 GrQuadAAFlags aaFlags, sk_sp<GrColorSpaceXform> textureColorSpaceXform)
Brian Salomon34169692017-08-28 15:32:01 -0400260 : INHERITED(ClassID())
Brian Osman3ebd3542018-07-30 14:36:53 -0400261 , fTextureColorSpaceXform(std::move(textureColorSpaceXform))
Brian Salomon0087c832018-10-15 14:48:20 -0400262 , fFilter(static_cast<unsigned>(filter))
Brian Osman2b23c4b2018-06-01 12:25:08 -0400263 , fFinalized(0) {
Michael Ludwig6bee7762018-10-19 09:50:36 -0400264 // Clean up disparities between the overall aa type and edge configuration and apply
265 // optimizations based on the rect and matrix when appropriate
Michael Ludwig009b92e2019-02-15 16:03:53 -0500266 GrResolveAATypeForQuad(aaType, aaFlags, dstQuad, dstQuadType, &aaType, &aaFlags);
Michael Ludwig6bee7762018-10-19 09:50:36 -0400267 fAAType = static_cast<unsigned>(aaType);
268
Brian Salomonf1709042018-10-03 11:57:00 -0400269 // We expect our caller to have already caught this optimization.
Brian Salomond7065e72018-10-12 11:42:02 -0400270 SkASSERT(!srcRect.contains(proxy->getWorstCaseBoundsRect()) ||
Brian Salomonf1709042018-10-03 11:57:00 -0400271 constraint == SkCanvas::kFast_SrcRectConstraint);
Michael Ludwig009b92e2019-02-15 16:03:53 -0500272
Brian Salomonf09abc52018-10-03 15:59:04 -0400273 // We may have had a strict constraint with nearest filter solely due to possible AA bloat.
274 // If we don't have (or determined we don't need) coverage AA then we can skip using a
275 // domain.
276 if (constraint == SkCanvas::kStrict_SrcRectConstraint &&
Brian Salomon0087c832018-10-15 14:48:20 -0400277 this->filter() == GrSamplerState::Filter::kNearest &&
Michael Ludwig6bee7762018-10-19 09:50:36 -0400278 aaType != GrAAType::kCoverage) {
Brian Salomonf09abc52018-10-03 15:59:04 -0400279 constraint = SkCanvas::kFast_SrcRectConstraint;
280 }
Michael Ludwigc96fc372019-01-08 15:46:15 -0500281
282 Domain domain = constraint == SkCanvas::kStrict_SrcRectConstraint ? Domain::kYes
283 : Domain::kNo;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500284 // Initially, if srcQuad is provided it will always be at index 0 of fSrcQuads
285 fQuads.push_back(dstQuad, dstQuadType, {color, srcRect, srcQuad ? 0 : -1, domain, aaFlags});
286 if (srcQuad) {
287 fSrcQuads.push_back(*srcQuad, srcQuadType);
288 }
Brian Salomond7065e72018-10-12 11:42:02 -0400289 fProxyCnt = 1;
290 fProxies[0] = {proxy.release(), 1};
Michael Ludwig009b92e2019-02-15 16:03:53 -0500291 auto bounds = dstQuad.bounds(dstQuadType);
Michael Ludwig6bee7762018-10-19 09:50:36 -0400292 this->setBounds(bounds, HasAABloat(aaType == GrAAType::kCoverage), IsZeroArea::kNo);
Michael Ludwigc96fc372019-01-08 15:46:15 -0500293 fDomain = static_cast<unsigned>(domain);
Brian Osman3d139a42018-11-19 10:42:10 -0500294 fWideColor = !SkPMColor4fFitsInBytes(color);
Brian Salomon7d94bb52018-10-12 14:37:19 -0400295 fCanSkipAllocatorGather =
296 static_cast<unsigned>(fProxies[0].fProxy->canSkipResourceAllocator());
Brian Salomond7065e72018-10-12 11:42:02 -0400297 }
298 TextureOp(const GrRenderTargetContext::TextureSetEntry set[], int cnt,
Brian Salomond003d222018-11-26 13:25:05 -0500299 GrSamplerState::Filter filter, GrAAType aaType, const SkMatrix& viewMatrix,
300 sk_sp<GrColorSpaceXform> textureColorSpaceXform)
Brian Salomond7065e72018-10-12 11:42:02 -0400301 : INHERITED(ClassID())
302 , fTextureColorSpaceXform(std::move(textureColorSpaceXform))
Brian Salomon0087c832018-10-15 14:48:20 -0400303 , fFilter(static_cast<unsigned>(filter))
Brian Salomond7065e72018-10-12 11:42:02 -0400304 , fFinalized(0) {
Brian Salomond7065e72018-10-12 11:42:02 -0400305 fProxyCnt = SkToUInt(cnt);
306 SkRect bounds = SkRectPriv::MakeLargestInverted();
Michael Ludwig6bee7762018-10-19 09:50:36 -0400307 GrAAType overallAAType = GrAAType::kNone; // aa type maximally compatible with all dst rects
Brian Salomon0087c832018-10-15 14:48:20 -0400308 bool mustFilter = false;
Brian Salomon7d94bb52018-10-12 14:37:19 -0400309 fCanSkipAllocatorGather = static_cast<unsigned>(true);
Michael Ludwig6bee7762018-10-19 09:50:36 -0400310 // All dst rects are transformed by the same view matrix, so their quad types are identical
311 GrQuadType quadType = GrQuadTypeForTransformedRect(viewMatrix);
Michael Ludwigc96fc372019-01-08 15:46:15 -0500312 fQuads.reserve(cnt, quadType);
313
Brian Salomond7065e72018-10-12 11:42:02 -0400314 for (unsigned p = 0; p < fProxyCnt; ++p) {
315 fProxies[p].fProxy = SkRef(set[p].fProxy.get());
316 fProxies[p].fQuadCnt = 1;
317 SkASSERT(fProxies[p].fProxy->textureType() == fProxies[0].fProxy->textureType());
318 SkASSERT(fProxies[p].fProxy->config() == fProxies[0].fProxy->config());
Brian Salomon7d94bb52018-10-12 14:37:19 -0400319 if (!fProxies[p].fProxy->canSkipResourceAllocator()) {
320 fCanSkipAllocatorGather = static_cast<unsigned>(false);
321 }
Michael Ludwige9c57d32019-02-13 13:39:39 -0500322 auto quad = GrPerspQuad::MakeFromRect(set[p].fDstRect, viewMatrix);
Michael Ludwigc96fc372019-01-08 15:46:15 -0500323 bounds.joinPossiblyEmptyRect(quad.bounds(quadType));
Michael Ludwig6bee7762018-10-19 09:50:36 -0400324 GrQuadAAFlags aaFlags;
325 // Don't update the overall aaType, might be inappropriate for some of the quads
326 GrAAType aaForQuad;
327 GrResolveAATypeForQuad(aaType, set[p].fAAFlags, quad, quadType, &aaForQuad, &aaFlags);
328 // Resolve sets aaForQuad to aaType or None, there is never a change between aa methods
329 SkASSERT(aaForQuad == GrAAType::kNone || aaForQuad == aaType);
330 if (overallAAType == GrAAType::kNone && aaForQuad != GrAAType::kNone) {
331 overallAAType = aaType;
Brian Salomond7065e72018-10-12 11:42:02 -0400332 }
Brian Salomon0087c832018-10-15 14:48:20 -0400333 if (!mustFilter && this->filter() != GrSamplerState::Filter::kNearest) {
Michael Ludwigc182b942018-11-16 10:27:51 -0500334 mustFilter = quadType != GrQuadType::kRect ||
Michael Ludwiga3c45c72019-01-17 17:26:48 -0500335 GrTextureOp::GetFilterHasEffect(viewMatrix, set[p].fSrcRect,
336 set[p].fDstRect);
Brian Salomon0087c832018-10-15 14:48:20 -0400337 }
Brian Salomond003d222018-11-26 13:25:05 -0500338 float alpha = SkTPin(set[p].fAlpha, 0.f, 1.f);
339 SkPMColor4f color{alpha, alpha, alpha, alpha};
Michael Ludwig009b92e2019-02-15 16:03:53 -0500340 // TODO(michaelludwig) - Once TextureSetEntry is updated to include a dstClip, fSrcQuads
341 // will need to be used similarly to the single-image ctor.
342 fQuads.push_back(quad, quadType, {color, set[p].fSrcRect, -1, Domain::kNo, aaFlags});
Brian Salomond7065e72018-10-12 11:42:02 -0400343 }
Michael Ludwig6bee7762018-10-19 09:50:36 -0400344 fAAType = static_cast<unsigned>(overallAAType);
Brian Salomon0087c832018-10-15 14:48:20 -0400345 if (!mustFilter) {
346 fFilter = static_cast<unsigned>(GrSamplerState::Filter::kNearest);
347 }
Brian Salomond7065e72018-10-12 11:42:02 -0400348 this->setBounds(bounds, HasAABloat(this->aaType() == GrAAType::kCoverage), IsZeroArea::kNo);
Brian Salomond7065e72018-10-12 11:42:02 -0400349 fDomain = static_cast<unsigned>(false);
Brian Salomon574d6162018-11-19 16:57:25 -0500350 fWideColor = static_cast<unsigned>(false);
Brian Salomon34169692017-08-28 15:32:01 -0400351 }
352
Brian Salomon574d6162018-11-19 16:57:25 -0500353 void tess(void* v, const VertexSpec& spec, const GrTextureProxy* proxy, int start,
354 int cnt) const {
Brian Salomond7065e72018-10-12 11:42:02 -0400355 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Salomond7065e72018-10-12 11:42:02 -0400356 auto origin = proxy->origin();
357 const auto* texture = proxy->peekTexture();
Brian Salomon246bc3d2018-12-06 15:33:02 -0500358 float iw, ih, h;
359 if (proxy->textureType() == GrTextureType::kRectangle) {
360 iw = ih = 1.f;
361 h = texture->height();
362 } else {
363 iw = 1.f / texture->width();
364 ih = 1.f / texture->height();
365 h = 1.f;
366 }
Brian Salomon7eae3e02018-08-07 14:02:38 +0000367
Brian Salomond7065e72018-10-12 11:42:02 -0400368 for (int i = start; i < start + cnt; ++i) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500369 const GrPerspQuad& device = fQuads[i];
370 const ColorDomainAndAA& info = fQuads.metadata(i);
371
Michael Ludwig009b92e2019-02-15 16:03:53 -0500372 GrPerspQuad srcQuad = info.fSrcQuadIndex >= 0 ?
373 compute_src_quad(origin, fSrcQuads[info.fSrcQuadIndex], iw, ih, h) :
374 compute_src_quad_from_rect(origin, info.fSrcRect, iw, ih, h);
Brian Salomon246bc3d2018-12-06 15:33:02 -0500375 SkRect domain =
Michael Ludwigc96fc372019-01-08 15:46:15 -0500376 compute_domain(info.domain(), this->filter(), origin, info.fSrcRect, iw, ih, h);
377 v = GrQuadPerEdgeAA::Tessellate(v, spec, device, info.fColor, srcQuad, domain,
378 info.aaFlags());
Brian Salomon17031a72018-05-22 14:14:07 -0400379 }
380 }
381
Brian Salomon34169692017-08-28 15:32:01 -0400382 void onPrepareDraws(Target* target) override {
Brian Salomond7065e72018-10-12 11:42:02 -0400383 TRACE_EVENT0("skia", TRACE_FUNC);
Michael Ludwigf995c052018-11-26 15:24:29 -0500384 GrQuadType quadType = GrQuadType::kRect;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500385 GrQuadType srcQuadType = GrQuadType::kRect;
Brian Salomonf7232642018-09-19 08:58:08 -0400386 Domain domain = Domain::kNo;
Brian Osman3d139a42018-11-19 10:42:10 -0500387 bool wideColor = false;
Brian Salomond7065e72018-10-12 11:42:02 -0400388 int numProxies = 0;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400389 int numTotalQuads = 0;
Brian Salomond7065e72018-10-12 11:42:02 -0400390 auto textureType = fProxies[0].fProxy->textureType();
391 auto config = fProxies[0].fProxy->config();
Brian Salomonae7d7702018-10-14 15:05:45 -0400392 GrAAType aaType = this->aaType();
Brian Salomonf7232642018-09-19 08:58:08 -0400393 for (const auto& op : ChainRange<TextureOp>(this)) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500394 if (op.fQuads.quadType() > quadType) {
395 quadType = op.fQuads.quadType();
Michael Ludwigf995c052018-11-26 15:24:29 -0500396 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500397 if (op.fSrcQuads.quadType() > srcQuadType) {
398 // Should only become more general if there are quads to use instead of fSrcRect
399 SkASSERT(op.fSrcQuads.count() > 0);
400 srcQuadType = op.fSrcQuads.quadType();
401 }
Brian Salomonf7232642018-09-19 08:58:08 -0400402 if (op.fDomain) {
403 domain = Domain::kYes;
404 }
Brian Osman3d139a42018-11-19 10:42:10 -0500405 wideColor |= op.fWideColor;
Brian Salomond7065e72018-10-12 11:42:02 -0400406 numProxies += op.fProxyCnt;
407 for (unsigned p = 0; p < op.fProxyCnt; ++p) {
Brian Salomon4b8178f2018-10-12 13:18:27 -0400408 numTotalQuads += op.fProxies[p].fQuadCnt;
Brian Salomond7065e72018-10-12 11:42:02 -0400409 auto* proxy = op.fProxies[p].fProxy;
410 if (!proxy->instantiate(target->resourceProvider())) {
411 return;
412 }
413 SkASSERT(proxy->config() == config);
414 SkASSERT(proxy->textureType() == textureType);
Brian Salomonf7232642018-09-19 08:58:08 -0400415 }
Brian Salomonae7d7702018-10-14 15:05:45 -0400416 if (op.aaType() == GrAAType::kCoverage) {
417 SkASSERT(aaType == GrAAType::kCoverage || aaType == GrAAType::kNone);
418 aaType = GrAAType::kCoverage;
419 }
Brian Salomon34169692017-08-28 15:32:01 -0400420 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400421
Michael Ludwigf995c052018-11-26 15:24:29 -0500422 VertexSpec vertexSpec(quadType, wideColor ? ColorType::kHalf : ColorType::kByte,
Michael Ludwig009b92e2019-02-15 16:03:53 -0500423 srcQuadType, /* hasLocal */ true, domain, aaType,
Michael Ludwig93aeba02018-12-21 09:50:31 -0500424 /* alpha as coverage */ true);
Michael Ludwigc182b942018-11-16 10:27:51 -0500425
Greg Daniel7a82edf2018-12-04 10:54:34 -0500426 GrSamplerState samplerState = GrSamplerState(GrSamplerState::WrapMode::kClamp,
427 this->filter());
428 GrGpu* gpu = target->resourceProvider()->priv().gpu();
429 uint32_t extraSamplerKey = gpu->getExtraSamplerKeyForProgram(
430 samplerState, fProxies[0].fProxy->backendFormat());
431
Michael Ludwig467994d2018-12-03 14:58:31 +0000432 sk_sp<GrGeometryProcessor> gp = GrQuadPerEdgeAA::MakeTexturedProcessor(
433 vertexSpec, *target->caps().shaderCaps(),
Greg Daniel7a82edf2018-12-04 10:54:34 -0500434 textureType, config, samplerState, extraSamplerKey,
435 std::move(fTextureColorSpaceXform));
436
Brian Salomon34169692017-08-28 15:32:01 -0400437 GrPipeline::InitArgs args;
Brian Salomon34169692017-08-28 15:32:01 -0400438 args.fCaps = &target->caps();
439 args.fResourceProvider = target->resourceProvider();
Brian Salomon485b8c62018-01-12 15:11:06 -0500440 args.fFlags = 0;
Brian Salomonae7d7702018-10-14 15:05:45 -0400441 if (aaType == GrAAType::kMSAA) {
Brian Salomon485b8c62018-01-12 15:11:06 -0500442 args.fFlags |= GrPipeline::kHWAntialias_Flag;
443 }
444
Brian Salomon49348902018-06-26 09:12:38 -0400445 auto clip = target->detachAppliedClip();
Brian Salomonf7232642018-09-19 08:58:08 -0400446 // We'll use a dynamic state array for the GP textures when there are multiple ops.
447 // Otherwise, we use fixed dynamic state to specify the single op's proxy.
448 GrPipeline::DynamicStateArrays* dynamicStateArrays = nullptr;
449 GrPipeline::FixedDynamicState* fixedDynamicState;
Brian Salomond7065e72018-10-12 11:42:02 -0400450 if (numProxies > 1) {
451 dynamicStateArrays = target->allocDynamicStateArrays(numProxies, 1, false);
Brian Salomonf7232642018-09-19 08:58:08 -0400452 fixedDynamicState = target->allocFixedDynamicState(clip.scissorState().rect(), 0);
453 } else {
454 fixedDynamicState = target->allocFixedDynamicState(clip.scissorState().rect(), 1);
Brian Salomond7065e72018-10-12 11:42:02 -0400455 fixedDynamicState->fPrimitiveProcessorTextures[0] = fProxies[0].fProxy;
Brian Salomonf7232642018-09-19 08:58:08 -0400456 }
Brian Salomon49348902018-06-26 09:12:38 -0400457 const auto* pipeline =
458 target->allocPipeline(args, GrProcessorSet::MakeEmptySet(), std::move(clip));
Brian Salomon92be2f72018-06-19 14:33:47 -0400459
Michael Ludwigc182b942018-11-16 10:27:51 -0500460 size_t vertexSize = gp->vertexStride();
Brian Salomon92be2f72018-06-19 14:33:47 -0400461
Brian Salomond7065e72018-10-12 11:42:02 -0400462 GrMesh* meshes = target->allocMeshes(numProxies);
Brian Salomon12d22642019-01-29 14:38:50 -0500463 sk_sp<const GrBuffer> vbuffer;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400464 int vertexOffsetInBuffer = 0;
Michael Ludwig93aeba02018-12-21 09:50:31 -0500465 int numQuadVerticesLeft = numTotalQuads * vertexSpec.verticesPerQuad();
Brian Salomon4b8178f2018-10-12 13:18:27 -0400466 int numAllocatedVertices = 0;
467 void* vdata = nullptr;
468
Brian Salomond7065e72018-10-12 11:42:02 -0400469 int m = 0;
Brian Salomonf7232642018-09-19 08:58:08 -0400470 for (const auto& op : ChainRange<TextureOp>(this)) {
Brian Salomond7065e72018-10-12 11:42:02 -0400471 int q = 0;
472 for (unsigned p = 0; p < op.fProxyCnt; ++p) {
473 int quadCnt = op.fProxies[p].fQuadCnt;
474 auto* proxy = op.fProxies[p].fProxy;
Michael Ludwig93aeba02018-12-21 09:50:31 -0500475 int meshVertexCnt = quadCnt * vertexSpec.verticesPerQuad();
Brian Salomon4b8178f2018-10-12 13:18:27 -0400476 if (numAllocatedVertices < meshVertexCnt) {
477 vdata = target->makeVertexSpaceAtLeast(
478 vertexSize, meshVertexCnt, numQuadVerticesLeft, &vbuffer,
479 &vertexOffsetInBuffer, &numAllocatedVertices);
480 SkASSERT(numAllocatedVertices <= numQuadVerticesLeft);
481 if (!vdata) {
482 SkDebugf("Could not allocate vertices\n");
483 return;
484 }
Brian Salomonf7232642018-09-19 08:58:08 -0400485 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400486 SkASSERT(numAllocatedVertices >= meshVertexCnt);
Brian Salomond7065e72018-10-12 11:42:02 -0400487
Michael Ludwigc182b942018-11-16 10:27:51 -0500488 op.tess(vdata, vertexSpec, proxy, q, quadCnt);
Brian Salomond7065e72018-10-12 11:42:02 -0400489
Michael Ludwig93aeba02018-12-21 09:50:31 -0500490 if (!GrQuadPerEdgeAA::ConfigureMeshIndices(target, &(meshes[m]), vertexSpec,
491 quadCnt)) {
492 SkDebugf("Could not allocate indices");
493 return;
Brian Salomond7065e72018-10-12 11:42:02 -0400494 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400495 meshes[m].setVertexData(vbuffer, vertexOffsetInBuffer);
Brian Salomond7065e72018-10-12 11:42:02 -0400496 if (dynamicStateArrays) {
497 dynamicStateArrays->fPrimitiveProcessorTextures[m] = proxy;
498 }
499 ++m;
Brian Salomon4b8178f2018-10-12 13:18:27 -0400500 numAllocatedVertices -= meshVertexCnt;
501 numQuadVerticesLeft -= meshVertexCnt;
502 vertexOffsetInBuffer += meshVertexCnt;
503 vdata = reinterpret_cast<char*>(vdata) + vertexSize * meshVertexCnt;
Brian Salomond7065e72018-10-12 11:42:02 -0400504 q += quadCnt;
Brian Salomonf7232642018-09-19 08:58:08 -0400505 }
Brian Salomon34169692017-08-28 15:32:01 -0400506 }
Brian Salomon4b8178f2018-10-12 13:18:27 -0400507 SkASSERT(!numQuadVerticesLeft);
508 SkASSERT(!numAllocatedVertices);
Brian Salomonf7232642018-09-19 08:58:08 -0400509 target->draw(std::move(gp), pipeline, fixedDynamicState, dynamicStateArrays, meshes,
Brian Salomond7065e72018-10-12 11:42:02 -0400510 numProxies);
Brian Salomon34169692017-08-28 15:32:01 -0400511 }
512
Brian Salomonf7232642018-09-19 08:58:08 -0400513 CombineResult onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
Brian Salomond7065e72018-10-12 11:42:02 -0400514 TRACE_EVENT0("skia", TRACE_FUNC);
Brian Salomon34169692017-08-28 15:32:01 -0400515 const auto* that = t->cast<TextureOp>();
Brian Osman3ebd3542018-07-30 14:36:53 -0400516 if (!GrColorSpaceXform::Equals(fTextureColorSpaceXform.get(),
517 that->fTextureColorSpaceXform.get())) {
Brian Salomon7eae3e02018-08-07 14:02:38 +0000518 return CombineResult::kCannotCombine;
Brian Osman3ebd3542018-07-30 14:36:53 -0400519 }
Brian Salomonae7d7702018-10-14 15:05:45 -0400520 bool upgradeToCoverageAAOnMerge = false;
Brian Salomon485b8c62018-01-12 15:11:06 -0500521 if (this->aaType() != that->aaType()) {
Brian Salomonae7d7702018-10-14 15:05:45 -0400522 if (!((this->aaType() == GrAAType::kCoverage && that->aaType() == GrAAType::kNone) ||
523 (that->aaType() == GrAAType::kCoverage && this->aaType() == GrAAType::kNone))) {
524 return CombineResult::kCannotCombine;
525 }
526 upgradeToCoverageAAOnMerge = true;
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500527 }
Brian Salomonf7232642018-09-19 08:58:08 -0400528 if (fFilter != that->fFilter) {
529 return CombineResult::kCannotCombine;
530 }
Brian Salomond7065e72018-10-12 11:42:02 -0400531 auto thisProxy = fProxies[0].fProxy;
532 auto thatProxy = that->fProxies[0].fProxy;
533 if (fProxyCnt > 1 || that->fProxyCnt > 1 ||
Brian Salomon588cec72018-11-14 13:56:37 -0500534 thisProxy->uniqueID() != thatProxy->uniqueID()) {
535 // We can't merge across different proxies. Check if 'this' can be chained with 'that'.
Greg Daniel45723ac2018-11-30 10:12:43 -0500536 if (GrTextureProxy::ProxiesAreCompatibleAsDynamicState(thisProxy, thatProxy) &&
Brian Salomonf7232642018-09-19 08:58:08 -0400537 caps.dynamicStateArrayGeometryProcessorTextureSupport()) {
538 return CombineResult::kMayChain;
539 }
Brian Salomon7eae3e02018-08-07 14:02:38 +0000540 return CombineResult::kCannotCombine;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400541 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500542
Brian Salomonb80ffee2018-05-23 16:39:39 -0400543 fDomain |= that->fDomain;
Brian Osman3d139a42018-11-19 10:42:10 -0500544 fWideColor |= that->fWideColor;
Brian Salomonae7d7702018-10-14 15:05:45 -0400545 if (upgradeToCoverageAAOnMerge) {
546 fAAType = static_cast<unsigned>(GrAAType::kCoverage);
547 }
Michael Ludwig009b92e2019-02-15 16:03:53 -0500548
549 // Concatenate quad lists together, updating the fSrcQuadIndex in the appended quads
550 // to account for the new starting index in fSrcQuads
551 int srcQuadOffset = fSrcQuads.count();
552 int oldQuadCount = fQuads.count();
553
554 fSrcQuads.concat(that->fSrcQuads);
555 fQuads.concat(that->fQuads);
556 fProxies[0].fQuadCnt += that->fQuads.count();
557
558 if (that->fSrcQuads.count() > 0) {
559 // Some of the concatenated quads pointed to fSrcQuads, so adjust the indices for the
560 // newly appended quads
561 for (int i = oldQuadCount; i < fQuads.count(); ++i) {
562 if (fQuads.metadata(i).fSrcQuadIndex >= 0) {
563 fQuads.metadata(i).fSrcQuadIndex += srcQuadOffset;
564 }
565 }
566 }
567
568 // Confirm all tracked state makes sense when in debug builds
569#ifdef SK_DEBUG
570 SkASSERT(fSrcQuads.count() <= fQuads.count());
571 for (int i = 0; i < fQuads.count(); ++i) {
572 int srcIndex = fQuads.metadata(i).fSrcQuadIndex;
573 if (srcIndex >= 0) {
574 // Make sure it points to a valid index, in the right region of the list
575 SkASSERT(srcIndex < fSrcQuads.count());
576 SkASSERT((i < oldQuadCount && srcIndex < srcQuadOffset) ||
577 (i >= oldQuadCount && srcIndex >= srcQuadOffset));
578 }
579 }
580#endif
Brian Salomon7eae3e02018-08-07 14:02:38 +0000581 return CombineResult::kMerged;
Brian Salomon34169692017-08-28 15:32:01 -0400582 }
583
Brian Salomon485b8c62018-01-12 15:11:06 -0500584 GrAAType aaType() const { return static_cast<GrAAType>(fAAType); }
Brian Salomon0087c832018-10-15 14:48:20 -0400585 GrSamplerState::Filter filter() const { return static_cast<GrSamplerState::Filter>(fFilter); }
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500586
Michael Ludwigc96fc372019-01-08 15:46:15 -0500587 struct ColorDomainAndAA {
588 // Special constructor to convert enums into the packed bits, which should not delete
589 // the implicit move constructor (but it does require us to declare an empty ctor for
590 // use with the GrTQuadList).
Michael Ludwig009b92e2019-02-15 16:03:53 -0500591 ColorDomainAndAA(const SkPMColor4f& color, const SkRect& srcRect, int srcQuadIndex,
Michael Ludwigc96fc372019-01-08 15:46:15 -0500592 Domain hasDomain, GrQuadAAFlags aaFlags)
593 : fColor(color)
594 , fSrcRect(srcRect)
Michael Ludwig009b92e2019-02-15 16:03:53 -0500595 , fSrcQuadIndex(srcQuadIndex)
Michael Ludwigc96fc372019-01-08 15:46:15 -0500596 , fHasDomain(static_cast<unsigned>(hasDomain))
Brian Salomon2213ee92018-10-02 10:44:21 -0400597 , fAAFlags(static_cast<unsigned>(aaFlags)) {
Michael Ludwigc96fc372019-01-08 15:46:15 -0500598 SkASSERT(fHasDomain == static_cast<unsigned>(hasDomain));
Brian Salomon2213ee92018-10-02 10:44:21 -0400599 SkASSERT(fAAFlags == static_cast<unsigned>(aaFlags));
600 }
Michael Ludwigc96fc372019-01-08 15:46:15 -0500601 ColorDomainAndAA() = default;
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000602
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000603 SkPMColor4f fColor;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500604 // Even if fSrcQuadIndex provides source coords, use fSrcRect for domain constraint
Michael Ludwigc96fc372019-01-08 15:46:15 -0500605 SkRect fSrcRect;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500606 // If >= 0, use to access fSrcQuads instead of fSrcRect for the source coordinates
607 int fSrcQuadIndex;
Michael Ludwig23d8943e2019-01-04 14:51:40 +0000608 unsigned fHasDomain : 1;
609 unsigned fAAFlags : 4;
Michael Ludwigc96fc372019-01-08 15:46:15 -0500610
611 Domain domain() const { return Domain(fHasDomain); }
612 GrQuadAAFlags aaFlags() const { return static_cast<GrQuadAAFlags>(fAAFlags); }
Brian Salomon34169692017-08-28 15:32:01 -0400613 };
Brian Salomond7065e72018-10-12 11:42:02 -0400614 struct Proxy {
615 GrTextureProxy* fProxy;
616 int fQuadCnt;
617 };
Michael Ludwigc96fc372019-01-08 15:46:15 -0500618 GrTQuadList<ColorDomainAndAA> fQuads;
Michael Ludwig009b92e2019-02-15 16:03:53 -0500619 // The majority of texture ops will not track a complete src quad so this is indexed separately
620 // and may be of different size to fQuads.
621 GrQuadList fSrcQuads;
Brian Osman3ebd3542018-07-30 14:36:53 -0400622 sk_sp<GrColorSpaceXform> fTextureColorSpaceXform;
Brian Salomon0087c832018-10-15 14:48:20 -0400623 unsigned fFilter : 2;
Brian Salomon485b8c62018-01-12 15:11:06 -0500624 unsigned fAAType : 2;
Brian Salomonb80ffee2018-05-23 16:39:39 -0400625 unsigned fDomain : 1;
Brian Osman3d139a42018-11-19 10:42:10 -0500626 unsigned fWideColor : 1;
Brian Salomon34169692017-08-28 15:32:01 -0400627 // Used to track whether fProxy is ref'ed or has a pending IO after finalize() is called.
Brian Salomonb5ef1f92018-01-11 11:46:21 -0500628 unsigned fFinalized : 1;
Brian Salomon7d94bb52018-10-12 14:37:19 -0400629 unsigned fCanSkipAllocatorGather : 1;
Michael Ludwigc96fc372019-01-08 15:46:15 -0500630 unsigned fProxyCnt : 32 - 8;
Brian Salomond7065e72018-10-12 11:42:02 -0400631 Proxy fProxies[1];
Brian Salomon336ce7b2017-09-08 08:23:58 -0400632
Michael Ludwigf995c052018-11-26 15:24:29 -0500633 static_assert(kGrQuadTypeCount <= 4, "GrQuadType does not fit in 2 bits");
634
Brian Salomon34169692017-08-28 15:32:01 -0400635 typedef GrMeshDrawOp INHERITED;
636};
637
638} // anonymous namespace
639
640namespace GrTextureOp {
641
Robert Phillipsb97da532019-02-12 15:24:12 -0500642std::unique_ptr<GrDrawOp> Make(GrRecordingContext* context,
Robert Phillips7c525e62018-06-12 10:11:12 -0400643 sk_sp<GrTextureProxy> proxy,
644 GrSamplerState::Filter filter,
Brian Osman3d139a42018-11-19 10:42:10 -0500645 const SkPMColor4f& color,
Robert Phillips7c525e62018-06-12 10:11:12 -0400646 const SkRect& srcRect,
647 const SkRect& dstRect,
648 GrAAType aaType,
Brian Salomon2213ee92018-10-02 10:44:21 -0400649 GrQuadAAFlags aaFlags,
Robert Phillips7c525e62018-06-12 10:11:12 -0400650 SkCanvas::SrcRectConstraint constraint,
651 const SkMatrix& viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500652 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Robert Phillips7c525e62018-06-12 10:11:12 -0400653 return TextureOp::Make(context, std::move(proxy), filter, color, srcRect, dstRect, aaType,
Brian Osman3d139a42018-11-19 10:42:10 -0500654 aaFlags, constraint, viewMatrix, std::move(textureColorSpaceXform));
Brian Salomon34169692017-08-28 15:32:01 -0400655}
656
Michael Ludwig009b92e2019-02-15 16:03:53 -0500657std::unique_ptr<GrDrawOp> MakeQuad(GrRecordingContext* context,
658 sk_sp<GrTextureProxy> proxy,
659 GrSamplerState::Filter filter,
660 const SkPMColor4f& color,
661 const SkPoint srcQuad[4],
662 const SkPoint dstQuad[4],
663 GrAAType aaType,
664 GrQuadAAFlags aaFlags,
665 const SkRect* domain,
666 const SkMatrix& viewMatrix,
667 sk_sp<GrColorSpaceXform> textureXform) {
668 return TextureOp::Make(context, std::move(proxy), filter, color, srcQuad, dstQuad, aaType,
669 aaFlags, domain, viewMatrix, std::move(textureXform));
670}
671
672std::unique_ptr<GrDrawOp> MakeSet(GrRecordingContext* context,
673 const GrRenderTargetContext::TextureSetEntry set[],
674 int cnt,
675 GrSamplerState::Filter filter,
676 GrAAType aaType,
677 const SkMatrix& viewMatrix,
678 sk_sp<GrColorSpaceXform> textureColorSpaceXform) {
Brian Salomond003d222018-11-26 13:25:05 -0500679 return TextureOp::Make(context, set, cnt, filter, aaType, viewMatrix,
Brian Osman3d139a42018-11-19 10:42:10 -0500680 std::move(textureColorSpaceXform));
Brian Salomond7065e72018-10-12 11:42:02 -0400681}
682
Michael Ludwiga3c45c72019-01-17 17:26:48 -0500683bool GetFilterHasEffect(const SkMatrix& viewMatrix, const SkRect& srcRect, const SkRect& dstRect) {
684 // Hypothetically we could disable bilerp filtering when flipping or rotating 90 degrees, but
685 // that makes the math harder and we don't want to increase the overhead of the checks
686 if (!viewMatrix.isScaleTranslate() ||
687 viewMatrix.getScaleX() < 0.0f || viewMatrix.getScaleY() < 0.0f) {
688 return true;
689 }
690
691 // Given the matrix conditions ensured above, this computes the device space coordinates for
692 // the top left corner of dstRect and its size.
693 SkScalar dw = viewMatrix.getScaleX() * dstRect.width();
694 SkScalar dh = viewMatrix.getScaleY() * dstRect.height();
695 SkScalar dl = viewMatrix.getScaleX() * dstRect.fLeft + viewMatrix.getTranslateX();
696 SkScalar dt = viewMatrix.getScaleY() * dstRect.fTop + viewMatrix.getTranslateY();
697
698 // Disable filtering when there is no scaling of the src rect and the src rect and dst rect
699 // align fractionally. If we allow inverted src rects this logic needs to consider that.
700 SkASSERT(srcRect.isSorted());
701 return dw != srcRect.width() || dh != srcRect.height() ||
702 SkScalarFraction(dl) != SkScalarFraction(srcRect.fLeft) ||
703 SkScalarFraction(dt) != SkScalarFraction(srcRect.fTop);
704}
705
Brian Salomon34169692017-08-28 15:32:01 -0400706} // namespace GrTextureOp
707
708#if GR_TEST_UTILS
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500709#include "GrProxyProvider.h"
Robert Phillipsb97da532019-02-12 15:24:12 -0500710#include "GrRecordingContext.h"
711#include "GrRecordingContextPriv.h"
Brian Salomon34169692017-08-28 15:32:01 -0400712
713GR_DRAW_OP_TEST_DEFINE(TextureOp) {
714 GrSurfaceDesc desc;
715 desc.fConfig = kRGBA_8888_GrPixelConfig;
716 desc.fHeight = random->nextULessThan(90) + 10;
717 desc.fWidth = random->nextULessThan(90) + 10;
Brian Salomon2a4f9832018-03-03 22:43:43 -0500718 auto origin = random->nextBool() ? kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
Greg Daniel09c94002018-06-08 22:11:51 +0000719 GrMipMapped mipMapped = random->nextBool() ? GrMipMapped::kYes : GrMipMapped::kNo;
720 SkBackingFit fit = SkBackingFit::kExact;
721 if (mipMapped == GrMipMapped::kNo) {
722 fit = random->nextBool() ? SkBackingFit::kApprox : SkBackingFit::kExact;
723 }
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500724
Greg Daniel4065d452018-11-16 15:43:41 -0500725 const GrBackendFormat format =
Robert Phillips9da87e02019-02-04 13:26:26 -0500726 context->priv().caps()->getBackendFormatFromColorType(kRGBA_8888_SkColorType);
Greg Daniel4065d452018-11-16 15:43:41 -0500727
Robert Phillips9da87e02019-02-04 13:26:26 -0500728 GrProxyProvider* proxyProvider = context->priv().proxyProvider();
Greg Daniel4065d452018-11-16 15:43:41 -0500729 sk_sp<GrTextureProxy> proxy = proxyProvider->createProxy(format, desc, origin, mipMapped, fit,
Greg Daniel09c94002018-06-08 22:11:51 +0000730 SkBudgeted::kNo,
731 GrInternalSurfaceFlags::kNone);
Robert Phillips0bd24dc2018-01-16 08:06:32 -0500732
Brian Salomon34169692017-08-28 15:32:01 -0400733 SkRect rect = GrTest::TestRect(random);
734 SkRect srcRect;
735 srcRect.fLeft = random->nextRangeScalar(0.f, proxy->width() / 2.f);
736 srcRect.fRight = random->nextRangeScalar(0.f, proxy->width()) + proxy->width() / 2.f;
737 srcRect.fTop = random->nextRangeScalar(0.f, proxy->height() / 2.f);
738 srcRect.fBottom = random->nextRangeScalar(0.f, proxy->height()) + proxy->height() / 2.f;
739 SkMatrix viewMatrix = GrTest::TestMatrixPreservesRightAngles(random);
Brian Osman3d139a42018-11-19 10:42:10 -0500740 SkPMColor4f color = SkPMColor4f::FromBytes_RGBA(SkColorToPremulGrColor(random->nextU()));
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400741 GrSamplerState::Filter filter = (GrSamplerState::Filter)random->nextULessThan(
742 static_cast<uint32_t>(GrSamplerState::Filter::kMipMap) + 1);
Greg Daniel09c94002018-06-08 22:11:51 +0000743 while (mipMapped == GrMipMapped::kNo && filter == GrSamplerState::Filter::kMipMap) {
744 filter = (GrSamplerState::Filter)random->nextULessThan(
745 static_cast<uint32_t>(GrSamplerState::Filter::kMipMap) + 1);
746 }
Brian Osman3ebd3542018-07-30 14:36:53 -0400747 auto texXform = GrTest::TestColorXform(random);
Brian Salomon485b8c62018-01-12 15:11:06 -0500748 GrAAType aaType = GrAAType::kNone;
749 if (random->nextBool()) {
750 aaType = (fsaaType == GrFSAAType::kUnifiedMSAA) ? GrAAType::kMSAA : GrAAType::kCoverage;
751 }
Brian Salomon2213ee92018-10-02 10:44:21 -0400752 GrQuadAAFlags aaFlags = GrQuadAAFlags::kNone;
753 aaFlags |= random->nextBool() ? GrQuadAAFlags::kLeft : GrQuadAAFlags::kNone;
754 aaFlags |= random->nextBool() ? GrQuadAAFlags::kTop : GrQuadAAFlags::kNone;
755 aaFlags |= random->nextBool() ? GrQuadAAFlags::kRight : GrQuadAAFlags::kNone;
756 aaFlags |= random->nextBool() ? GrQuadAAFlags::kBottom : GrQuadAAFlags::kNone;
Brian Salomonb80ffee2018-05-23 16:39:39 -0400757 auto constraint = random->nextBool() ? SkCanvas::kStrict_SrcRectConstraint
758 : SkCanvas::kFast_SrcRectConstraint;
Robert Phillips7c525e62018-06-12 10:11:12 -0400759 return GrTextureOp::Make(context, std::move(proxy), filter, color, srcRect, rect, aaType,
Brian Osman3d139a42018-11-19 10:42:10 -0500760 aaFlags, constraint, viewMatrix, std::move(texXform));
Brian Salomon34169692017-08-28 15:32:01 -0400761}
762
763#endif