blob: a03b40e6088ea7de4fe05983fc06f8b89ecd4f62 [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"
9#include "GrAppliedClip.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040010#include "GrCaps.h"
Brian Salomon34169692017-08-28 15:32:01 -040011#include "GrDrawOpTest.h"
12#include "GrGeometryProcessor.h"
13#include "GrMeshDrawOp.h"
14#include "GrOpFlushState.h"
15#include "GrQuad.h"
16#include "GrResourceProvider.h"
17#include "GrShaderCaps.h"
18#include "GrTexture.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040019#include "GrTexturePriv.h"
Brian Salomon34169692017-08-28 15:32:01 -040020#include "GrTextureProxy.h"
21#include "SkGr.h"
Brian Salomon336ce7b2017-09-08 08:23:58 -040022#include "SkMathPriv.h"
Brian Salomon34169692017-08-28 15:32:01 -040023#include "glsl/GrGLSLColorSpaceXformHelper.h"
24#include "glsl/GrGLSLGeometryProcessor.h"
25#include "glsl/GrGLSLVarying.h"
26
27namespace {
28
29/**
30 * Geometry Processor that draws a texture modulated by a vertex color (though, this is meant to be
31 * the same value across all vertices of a quad and uses flat interpolation when available). This is
32 * used by TextureOp below.
33 */
34class TextureGeometryProcessor : public GrGeometryProcessor {
35public:
36 struct Vertex {
37 SkPoint fPosition;
38 SkPoint fTextureCoords;
39 GrColor fColor;
40 };
Brian Salomon336ce7b2017-09-08 08:23:58 -040041 struct MultiTextureVertex {
42 SkPoint fPosition;
43 int fTextureIdx;
44 SkPoint fTextureCoords;
45 GrColor fColor;
46 };
47
48 // Maximum number of textures supported by this op. Must also be checked against the caps
49 // limit. These numbers were based on some limited experiments on a HP Z840 and Pixel XL 2016
50 // and could probably use more tuning.
51#ifdef SK_BUILD_FOR_ANDROID
52 static constexpr int kMaxTextures = 4;
53#else
54 static constexpr int kMaxTextures = 8;
55#endif
56
Brian Salomon0b4d8aa2017-10-11 15:34:27 -040057 static int SupportsMultitexture(const GrShaderCaps& caps) {
58 return caps.integerSupport() && !caps.disableImageMultitexturingSupport();
59 }
Brian Salomon336ce7b2017-09-08 08:23:58 -040060
61 static sk_sp<GrGeometryProcessor> Make(sk_sp<GrTextureProxy> proxies[], int proxyCnt,
Brian Salomon34169692017-08-28 15:32:01 -040062 sk_sp<GrColorSpaceXform> csxf,
Brian Salomon336ce7b2017-09-08 08:23:58 -040063 const GrSamplerState::Filter filters[],
64 const GrShaderCaps& caps) {
65 // We use placement new to avoid always allocating space for kMaxTextures TextureSampler
66 // instances.
67 int samplerCnt = NumSamplersToUse(proxyCnt, caps);
68 size_t size = sizeof(TextureGeometryProcessor) + sizeof(TextureSampler) * (samplerCnt - 1);
69 void* mem = GrGeometryProcessor::operator new(size);
70 return sk_sp<TextureGeometryProcessor>(new (mem) TextureGeometryProcessor(
71 proxies, proxyCnt, samplerCnt, std::move(csxf), filters, caps));
72 }
73
74 ~TextureGeometryProcessor() override {
75 int cnt = this->numTextureSamplers();
76 for (int i = 1; i < cnt; ++i) {
77 fSamplers[i].~TextureSampler();
78 }
Brian Salomon34169692017-08-28 15:32:01 -040079 }
80
81 const char* name() const override { return "TextureGeometryProcessor"; }
82
83 void getGLSLProcessorKey(const GrShaderCaps&, GrProcessorKeyBuilder* b) const override {
84 b->add32(GrColorSpaceXform::XformKey(fColorSpaceXform.get()));
85 }
86
87 GrGLSLPrimitiveProcessor* createGLSLInstance(const GrShaderCaps& caps) const override {
88 class GLSLProcessor : public GrGLSLGeometryProcessor {
89 public:
90 void setData(const GrGLSLProgramDataManager& pdman, const GrPrimitiveProcessor& proc,
91 FPCoordTransformIter&& transformIter) override {
92 const auto& textureGP = proc.cast<TextureGeometryProcessor>();
93 this->setTransformDataHelper(SkMatrix::I(), pdman, &transformIter);
94 if (fColorSpaceXformHelper.isValid()) {
95 fColorSpaceXformHelper.setData(pdman, textureGP.fColorSpaceXform.get());
96 }
97 }
98
99 private:
100 void onEmitCode(EmitArgs& args, GrGPArgs* gpArgs) override {
101 const auto& textureGP = args.fGP.cast<TextureGeometryProcessor>();
102 fColorSpaceXformHelper.emitCode(
103 args.fUniformHandler, textureGP.fColorSpaceXform.get());
104 args.fVaryingHandler->setNoPerspective();
105 args.fVaryingHandler->emitAttributes(textureGP);
106 this->writeOutputPosition(args.fVertBuilder, gpArgs, textureGP.fPositions.fName);
107 this->emitTransforms(args.fVertBuilder,
108 args.fVaryingHandler,
109 args.fUniformHandler,
110 gpArgs->fPositionVar,
111 textureGP.fTextureCoords.fName,
112 args.fFPCoordTransformHandler);
Brian Salomon41274562017-09-15 09:40:03 -0700113 if (args.fShaderCaps->preferFlatInterpolation()) {
Brian Salomon34169692017-08-28 15:32:01 -0400114 args.fVaryingHandler->addFlatPassThroughAttribute(&textureGP.fColors,
115 args.fOutputColor);
116 } else {
117 args.fVaryingHandler->addPassThroughAttribute(&textureGP.fColors,
118 args.fOutputColor);
119 }
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400120 args.fFragBuilder->codeAppend("float2 texCoord;");
Chris Daltonfdde34e2017-10-16 14:15:26 -0600121 args.fVaryingHandler->addPassThroughAttribute(&textureGP.fTextureCoords,
122 "texCoord");
Brian Salomon336ce7b2017-09-08 08:23:58 -0400123 if (textureGP.numTextureSamplers() > 1) {
124 SkASSERT(args.fShaderCaps->integerSupport());
125 args.fFragBuilder->codeAppend("int texIdx;");
126 if (args.fShaderCaps->flatInterpolationSupport()) {
127 args.fVaryingHandler->addFlatPassThroughAttribute(&textureGP.fTextureIdx,
128 "texIdx");
129 } else {
130 args.fVaryingHandler->addPassThroughAttribute(&textureGP.fTextureIdx,
131 "texIdx");
132 }
133 args.fFragBuilder->codeAppend("switch (texIdx) {");
134 for (int i = 0; i < textureGP.numTextureSamplers(); ++i) {
135 args.fFragBuilder->codeAppendf("case %d: %s = ", i, args.fOutputColor);
136 args.fFragBuilder->appendTextureLookupAndModulate(args.fOutputColor,
137 args.fTexSamplers[i],
138 "texCoord",
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400139 kFloat2_GrSLType,
Brian Salomon336ce7b2017-09-08 08:23:58 -0400140 &fColorSpaceXformHelper);
141 args.fFragBuilder->codeAppend("; break;");
142 }
143 args.fFragBuilder->codeAppend("}");
144 } else {
145 args.fFragBuilder->codeAppendf("%s = ", args.fOutputColor);
146 args.fFragBuilder->appendTextureLookupAndModulate(args.fOutputColor,
147 args.fTexSamplers[0],
148 "texCoord",
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400149 kFloat2_GrSLType,
Brian Salomon336ce7b2017-09-08 08:23:58 -0400150 &fColorSpaceXformHelper);
151 }
Brian Salomon34169692017-08-28 15:32:01 -0400152 args.fFragBuilder->codeAppend(";");
Ethan Nicholas8aa45692017-09-20 11:24:15 -0400153 args.fFragBuilder->codeAppendf("%s = float4(1);", args.fOutputCoverage);
Brian Salomon34169692017-08-28 15:32:01 -0400154 }
155 GrGLSLColorSpaceXformHelper fColorSpaceXformHelper;
156 };
157 return new GLSLProcessor;
158 }
159
160private:
Brian Salomon336ce7b2017-09-08 08:23:58 -0400161 // This exists to reduce the number of shaders generated. It does some rounding of sampler
162 // counts.
163 static int NumSamplersToUse(int numRealProxies, const GrShaderCaps& caps) {
164 SkASSERT(numRealProxies > 0 && numRealProxies <= kMaxTextures &&
165 numRealProxies <= caps.maxFragmentSamplers());
166 if (1 == numRealProxies) {
167 return 1;
168 }
169 if (numRealProxies <= 4) {
170 return 4;
171 }
172 // Round to the next power of 2 and then clamp to kMaxTextures and the max allowed by caps.
173 return SkTMin(SkNextPow2(numRealProxies), SkTMin(kMaxTextures, caps.maxFragmentSamplers()));
174 }
175
176 TextureGeometryProcessor(sk_sp<GrTextureProxy> proxies[], int proxyCnt, int samplerCnt,
177 sk_sp<GrColorSpaceXform> csxf, const GrSamplerState::Filter filters[],
178 const GrShaderCaps& caps)
Ethan Nicholasabff9562017-10-09 10:54:08 -0400179 : INHERITED(kTextureGeometryProcessor_ClassID)
180 , fColorSpaceXform(std::move(csxf)) {
Brian Salomon336ce7b2017-09-08 08:23:58 -0400181 SkASSERT(proxyCnt > 0 && samplerCnt >= proxyCnt);
Ethan Nicholasfa7ee242017-09-25 09:52:04 -0400182 fPositions = this->addVertexAttrib("position", kFloat2_GrVertexAttribType);
Brian Salomon336ce7b2017-09-08 08:23:58 -0400183 fSamplers[0].reset(std::move(proxies[0]), filters[0]);
184 this->addTextureSampler(&fSamplers[0]);
185 for (int i = 1; i < proxyCnt; ++i) {
186 // This class has one sampler built in, the rest come from memory this processor was
187 // placement-newed into and so haven't been constructed.
188 new (&fSamplers[i]) TextureSampler(std::move(proxies[i]), filters[i]);
189 this->addTextureSampler(&fSamplers[i]);
190 }
191 if (samplerCnt > 1) {
192 // Here we initialize any extra samplers by repeating the last one samplerCnt - proxyCnt
193 // times.
194 GrTextureProxy* dupeProxy = fSamplers[proxyCnt - 1].proxy();
195 for (int i = proxyCnt; i < samplerCnt; ++i) {
196 new (&fSamplers[i]) TextureSampler(sk_ref_sp(dupeProxy), filters[proxyCnt - 1]);
197 this->addTextureSampler(&fSamplers[i]);
198 }
199 SkASSERT(caps.integerSupport());
200 fTextureIdx = this->addVertexAttrib("textureIdx", kInt_GrVertexAttribType);
201 }
202
Ethan Nicholasfa7ee242017-09-25 09:52:04 -0400203 fTextureCoords = this->addVertexAttrib("textureCoords", kFloat2_GrVertexAttribType);
204 fColors = this->addVertexAttrib("color", kUByte4_norm_GrVertexAttribType);
Brian Salomon34169692017-08-28 15:32:01 -0400205 }
206
207 Attribute fPositions;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400208 Attribute fTextureIdx;
Brian Salomon34169692017-08-28 15:32:01 -0400209 Attribute fTextureCoords;
210 Attribute fColors;
Brian Salomon34169692017-08-28 15:32:01 -0400211 sk_sp<GrColorSpaceXform> fColorSpaceXform;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400212 TextureSampler fSamplers[1];
Ethan Nicholasabff9562017-10-09 10:54:08 -0400213
214 typedef GrGeometryProcessor INHERITED;
Brian Salomon34169692017-08-28 15:32:01 -0400215};
216
217/**
218 * Op that implements GrTextureOp::Make. It draws textured quads. Each quad can modulate against a
219 * the texture by color. The blend with the destination is always src-over. The edges are non-AA.
220 */
221class TextureOp final : public GrMeshDrawOp {
222public:
223 static std::unique_ptr<GrDrawOp> Make(sk_sp<GrTextureProxy> proxy,
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400224 GrSamplerState::Filter filter, GrColor color,
Brian Salomon34169692017-08-28 15:32:01 -0400225 const SkRect srcRect, const SkRect dstRect,
226 const SkMatrix& viewMatrix, sk_sp<GrColorSpaceXform> csxf,
227 bool allowSRBInputs) {
228 return std::unique_ptr<GrDrawOp>(new TextureOp(std::move(proxy), filter, color, srcRect,
229 dstRect, viewMatrix, std::move(csxf),
230 allowSRBInputs));
231 }
232
Brian Salomon336ce7b2017-09-08 08:23:58 -0400233 ~TextureOp() override {
234 if (fFinalized) {
235 auto proxies = this->proxies();
236 for (int i = 0; i < fProxyCnt; ++i) {
237 proxies[i]->completedRead();
238 }
239 if (fProxyCnt > 1) {
240 delete[] reinterpret_cast<const char*>(proxies);
241 }
242 } else {
243 SkASSERT(1 == fProxyCnt);
244 fProxy0->unref();
245 }
246 }
Brian Salomon34169692017-08-28 15:32:01 -0400247
248 const char* name() const override { return "TextureOp"; }
249
Robert Phillipsf1748f52017-09-14 14:11:24 -0400250 void visitProxies(const VisitProxyFunc& func) const override {
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400251 auto proxies = this->proxies();
252 for (int i = 0; i < fProxyCnt; ++i) {
253 func(proxies[i]);
254 }
255 }
256
Brian Salomon34169692017-08-28 15:32:01 -0400257 SkString dumpInfo() const override {
258 SkString str;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400259 str.appendf("AllowSRGBInputs: %d\n", fAllowSRGBInputs);
Brian Salomon34169692017-08-28 15:32:01 -0400260 str.appendf("# draws: %d\n", fDraws.count());
Brian Salomon336ce7b2017-09-08 08:23:58 -0400261 auto proxies = this->proxies();
262 for (int i = 0; i < fProxyCnt; ++i) {
263 str.appendf("Proxy ID %d: %d, Filter: %d\n", i, proxies[i]->uniqueID().asUInt(),
264 static_cast<int>(this->filters()[i]));
265 }
Brian Salomon34169692017-08-28 15:32:01 -0400266 for (int i = 0; i < fDraws.count(); ++i) {
267 const Draw& draw = fDraws[i];
268 str.appendf(
Brian Salomon336ce7b2017-09-08 08:23:58 -0400269 "%d: Color: 0x%08x, ProxyIdx: %d, TexRect [L: %.2f, T: %.2f, R: %.2f, B: %.2f] "
270 "Quad [(%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f), (%.2f, %.2f)]\n",
271 i, draw.fColor, draw.fTextureIdx, draw.fSrcRect.fLeft, draw.fSrcRect.fTop,
272 draw.fSrcRect.fRight, draw.fSrcRect.fBottom, draw.fQuad.points()[0].fX,
273 draw.fQuad.points()[0].fY, draw.fQuad.points()[1].fX, draw.fQuad.points()[1].fY,
274 draw.fQuad.points()[2].fX, draw.fQuad.points()[2].fY, draw.fQuad.points()[3].fX,
Brian Salomon34169692017-08-28 15:32:01 -0400275 draw.fQuad.points()[3].fY);
276 }
277 str += INHERITED::dumpInfo();
278 return str;
279 }
280
Brian Osman9a725dd2017-09-20 09:53:22 -0400281 RequiresDstTexture finalize(const GrCaps& caps, const GrAppliedClip* clip,
282 GrPixelConfigIsClamped dstIsClamped) override {
Brian Salomon34169692017-08-28 15:32:01 -0400283 SkASSERT(!fFinalized);
Brian Salomon336ce7b2017-09-08 08:23:58 -0400284 SkASSERT(1 == fProxyCnt);
Brian Salomon34169692017-08-28 15:32:01 -0400285 fFinalized = true;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400286 fProxy0->addPendingRead();
287 fProxy0->unref();
Brian Salomon34169692017-08-28 15:32:01 -0400288 return RequiresDstTexture::kNo;
289 }
290
291 FixedFunctionFlags fixedFunctionFlags() const override { return FixedFunctionFlags::kNone; }
292
293 DEFINE_OP_CLASS_ID
294
295private:
Brian Salomon336ce7b2017-09-08 08:23:58 -0400296 static constexpr int kMaxTextures = TextureGeometryProcessor::kMaxTextures;
297
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400298 TextureOp(sk_sp<GrTextureProxy> proxy, GrSamplerState::Filter filter, GrColor color,
Brian Salomon34169692017-08-28 15:32:01 -0400299 const SkRect& srcRect, const SkRect& dstRect, const SkMatrix& viewMatrix,
300 sk_sp<GrColorSpaceXform> csxf, bool allowSRGBInputs)
301 : INHERITED(ClassID())
Brian Salomon34169692017-08-28 15:32:01 -0400302 , fColorSpaceXform(std::move(csxf))
Brian Salomon336ce7b2017-09-08 08:23:58 -0400303 , fProxy0(proxy.release())
304 , fFilter0(filter)
305 , fProxyCnt(1)
Brian Salomon34169692017-08-28 15:32:01 -0400306 , fFinalized(false)
307 , fAllowSRGBInputs(allowSRGBInputs) {
308 Draw& draw = fDraws.push_back();
309 draw.fSrcRect = srcRect;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400310 draw.fTextureIdx = 0;
Brian Salomon34169692017-08-28 15:32:01 -0400311 draw.fColor = color;
312 draw.fQuad.setFromMappedRect(dstRect, viewMatrix);
313 SkRect bounds;
314 bounds.setBounds(draw.fQuad.points(), 4);
315 this->setBounds(bounds, HasAABloat::kNo, IsZeroArea::kNo);
316 }
317
318 void onPrepareDraws(Target* target) override {
Brian Salomon336ce7b2017-09-08 08:23:58 -0400319 sk_sp<GrTextureProxy> proxiesSPs[kMaxTextures];
320 auto proxies = this->proxies();
321 auto filters = this->filters();
322 for (int i = 0; i < fProxyCnt; ++i) {
323 if (!proxies[i]->instantiate(target->resourceProvider())) {
324 return;
325 }
326 proxiesSPs[i] = sk_ref_sp(proxies[i]);
Brian Salomon34169692017-08-28 15:32:01 -0400327 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400328
329 sk_sp<GrGeometryProcessor> gp =
330 TextureGeometryProcessor::Make(proxiesSPs, fProxyCnt, std::move(fColorSpaceXform),
331 filters, *target->caps().shaderCaps());
Brian Salomon34169692017-08-28 15:32:01 -0400332 GrPipeline::InitArgs args;
333 args.fProxy = target->proxy();
334 args.fCaps = &target->caps();
335 args.fResourceProvider = target->resourceProvider();
336 args.fFlags = fAllowSRGBInputs ? GrPipeline::kAllowSRGBInputs_Flag : 0;
337 const GrPipeline* pipeline = target->allocPipeline(args, GrProcessorSet::MakeEmptySet(),
338 target->detachAppliedClip());
Brian Salomon34169692017-08-28 15:32:01 -0400339 int vstart;
340 const GrBuffer* vbuffer;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400341 void* vdata = target->makeVertexSpace(gp->getVertexStride(), 4 * fDraws.count(), &vbuffer,
342 &vstart);
343 if (!vdata) {
Brian Salomon34169692017-08-28 15:32:01 -0400344 SkDebugf("Could not allocate vertices\n");
345 return;
346 }
Brian Salomon57caa662017-10-18 12:21:05 +0000347 if (1 == fProxyCnt) {
348 SkASSERT(gp->getVertexStride() == sizeof(TextureGeometryProcessor::Vertex));
349 for (int i = 0; i < fDraws.count(); ++i) {
350 auto vertices = static_cast<TextureGeometryProcessor::Vertex*>(vdata);
351 GrTexture* texture = proxies[0]->priv().peekTexture();
352 float iw = 1.f / texture->width();
353 float ih = 1.f / texture->height();
354 float tl = iw * fDraws[i].fSrcRect.fLeft;
355 float tr = iw * fDraws[i].fSrcRect.fRight;
356 float tt = ih * fDraws[i].fSrcRect.fTop;
357 float tb = ih * fDraws[i].fSrcRect.fBottom;
358 if (proxies[0]->origin() == kBottomLeft_GrSurfaceOrigin) {
359 tt = 1.f - tt;
360 tb = 1.f - tb;
361 }
362 vertices[0 + 4 * i].fPosition = fDraws[i].fQuad.points()[0];
363 vertices[0 + 4 * i].fTextureCoords = {tl, tt};
364 vertices[0 + 4 * i].fColor = fDraws[i].fColor;
365 vertices[1 + 4 * i].fPosition = fDraws[i].fQuad.points()[1];
366 vertices[1 + 4 * i].fTextureCoords = {tl, tb};
367 vertices[1 + 4 * i].fColor = fDraws[i].fColor;
368 vertices[2 + 4 * i].fPosition = fDraws[i].fQuad.points()[2];
369 vertices[2 + 4 * i].fTextureCoords = {tr, tt};
370 vertices[2 + 4 * i].fColor = fDraws[i].fColor;
371 vertices[3 + 4 * i].fPosition = fDraws[i].fQuad.points()[3];
372 vertices[3 + 4 * i].fTextureCoords = {tr, tb};
373 vertices[3 + 4 * i].fColor = fDraws[i].fColor;
374 }
375 } else {
376 SkASSERT(gp->getVertexStride() == sizeof(TextureGeometryProcessor::MultiTextureVertex));
377 GrTexture* textures[kMaxTextures];
378 float iw[kMaxTextures];
379 float ih[kMaxTextures];
380 for (int t = 0; t < fProxyCnt; ++t) {
381 textures[t] = proxies[t]->priv().peekTexture();
382 iw[t] = 1.f / textures[t]->width();
383 ih[t] = 1.f / textures[t]->height();
384 }
385 for (int i = 0; i < fDraws.count(); ++i) {
386 int t = fDraws[i].fTextureIdx;
387 auto vertices = static_cast<TextureGeometryProcessor::MultiTextureVertex*>(vdata);
388 float tl = iw[t] * fDraws[i].fSrcRect.fLeft;
389 float tr = iw[t] * fDraws[i].fSrcRect.fRight;
390 float tt = ih[t] * fDraws[i].fSrcRect.fTop;
391 float tb = ih[t] * fDraws[i].fSrcRect.fBottom;
392 if (proxies[t]->origin() == kBottomLeft_GrSurfaceOrigin) {
393 tt = 1.f - tt;
394 tb = 1.f - tb;
395 }
396 vertices[0 + 4 * i].fPosition = fDraws[i].fQuad.points()[0];
397 vertices[0 + 4 * i].fTextureIdx = t;
398 vertices[0 + 4 * i].fTextureCoords = {tl, tt};
399 vertices[0 + 4 * i].fColor = fDraws[i].fColor;
400 vertices[1 + 4 * i].fPosition = fDraws[i].fQuad.points()[1];
401 vertices[1 + 4 * i].fTextureIdx = t;
402 vertices[1 + 4 * i].fTextureCoords = {tl, tb};
403 vertices[1 + 4 * i].fColor = fDraws[i].fColor;
404 vertices[2 + 4 * i].fPosition = fDraws[i].fQuad.points()[2];
405 vertices[2 + 4 * i].fTextureIdx = t;
406 vertices[2 + 4 * i].fTextureCoords = {tr, tt};
407 vertices[2 + 4 * i].fColor = fDraws[i].fColor;
408 vertices[3 + 4 * i].fPosition = fDraws[i].fQuad.points()[3];
409 vertices[3 + 4 * i].fTextureIdx = t;
410 vertices[3 + 4 * i].fTextureCoords = {tr, tb};
411 vertices[3 + 4 * i].fColor = fDraws[i].fColor;
412 }
413 }
414 GrPrimitiveType primitiveType =
415 fDraws.count() > 1 ? GrPrimitiveType::kTriangles : GrPrimitiveType::kTriangleStrip;
416 GrMesh mesh(primitiveType);
Brian Salomon34169692017-08-28 15:32:01 -0400417 if (fDraws.count() > 1) {
Brian Salomon57caa662017-10-18 12:21:05 +0000418 sk_sp<const GrBuffer> ibuffer = target->resourceProvider()->refQuadIndexBuffer();
Brian Salomon34169692017-08-28 15:32:01 -0400419 if (!ibuffer) {
420 SkDebugf("Could not allocate quad indices\n");
421 return;
422 }
Brian Salomon34169692017-08-28 15:32:01 -0400423 mesh.setIndexedPatterned(ibuffer.get(), 6, 4, fDraws.count(),
424 GrResourceProvider::QuadCountOfQuadBuffer());
Brian Salomon34169692017-08-28 15:32:01 -0400425 } else {
Brian Salomon34169692017-08-28 15:32:01 -0400426 mesh.setNonIndexedNonInstanced(4);
Brian Salomon34169692017-08-28 15:32:01 -0400427 }
Brian Salomon57caa662017-10-18 12:21:05 +0000428 mesh.setVertexData(vbuffer, vstart);
429 target->draw(gp.get(), pipeline, mesh);
Brian Salomon34169692017-08-28 15:32:01 -0400430 }
431
432 bool onCombineIfPossible(GrOp* t, const GrCaps& caps) override {
433 const auto* that = t->cast<TextureOp>();
Brian Salomon336ce7b2017-09-08 08:23:58 -0400434 if (!GrColorSpaceXform::Equals(fColorSpaceXform.get(), that->fColorSpaceXform.get())) {
Brian Salomon34169692017-08-28 15:32:01 -0400435 return false;
436 }
Brian Salomon336ce7b2017-09-08 08:23:58 -0400437 // Because of an issue where GrColorSpaceXform adds the same function every time it is used
438 // in a texture lookup, we only allow multiple textures when there is no transform.
439 if (TextureGeometryProcessor::SupportsMultitexture(*caps.shaderCaps()) &&
440 !fColorSpaceXform) {
441 int map[kMaxTextures];
442 int numNewProxies = this->mergeProxies(that, map, *caps.shaderCaps());
443 if (numNewProxies < 0) {
444 return false;
445 }
446 if (1 == fProxyCnt && numNewProxies) {
447 void* mem = new char[(sizeof(GrSamplerState::Filter) + sizeof(GrTextureProxy*)) *
448 kMaxTextures];
449 auto proxies = reinterpret_cast<GrTextureProxy**>(mem);
450 auto filters = reinterpret_cast<GrSamplerState::Filter*>(proxies + kMaxTextures);
451 proxies[0] = fProxy0;
452 filters[0] = fFilter0;
453 fProxyArray = proxies;
454 }
455 fProxyCnt += numNewProxies;
456 auto thisProxies = fProxyArray;
457 auto thatProxies = that->proxies();
458 auto thatFilters = that->filters();
459 auto thisFilters = reinterpret_cast<GrSamplerState::Filter*>(thisProxies +
460 kMaxTextures);
461 for (int i = 0; i < that->fProxyCnt; ++i) {
462 if (map[i] < 0) {
463 thatProxies[i]->addPendingRead();
Robert Phillipsb493eeb2017-09-13 13:10:52 -0400464
Brian Salomon336ce7b2017-09-08 08:23:58 -0400465 thisProxies[-map[i]] = thatProxies[i];
466 thisFilters[-map[i]] = thatFilters[i];
467 map[i] = -map[i];
468 }
469 }
470 int firstNewDraw = fDraws.count();
471 fDraws.push_back_n(that->fDraws.count(), that->fDraws.begin());
472 for (int i = firstNewDraw; i < fDraws.count(); ++i) {
473 fDraws[i].fTextureIdx = map[fDraws[i].fTextureIdx];
474 }
475 } else {
476 if (fProxy0->uniqueID() != that->fProxy0->uniqueID() || fFilter0 != that->fFilter0) {
477 return false;
478 }
479 fDraws.push_back_n(that->fDraws.count(), that->fDraws.begin());
480 }
Brian Salomon34169692017-08-28 15:32:01 -0400481 this->joinBounds(*that);
482 return true;
483 }
484
Brian Salomon336ce7b2017-09-08 08:23:58 -0400485 /**
486 * Determines a mapping of indices from that's proxy array to this's proxy array. A negative map
487 * value means that's proxy should be added to this's proxy array at the absolute value of
488 * the map entry. If it is determined that the ops shouldn't combine their proxies then a
489 * negative value is returned. Otherwise, return value indicates the number of proxies that have
490 * to be added to this op or, equivalently, the number of negative entries in map.
491 */
492 int mergeProxies(const TextureOp* that, int map[kMaxTextures], const GrShaderCaps& caps) const {
493 std::fill_n(map, kMaxTextures, -kMaxTextures);
494 int sharedProxyCnt = 0;
495 auto thisProxies = this->proxies();
496 auto thisFilters = this->filters();
497 auto thatProxies = that->proxies();
498 auto thatFilters = that->filters();
499 for (int i = 0; i < fProxyCnt; ++i) {
500 for (int j = 0; j < that->fProxyCnt; ++j) {
501 if (thisProxies[i]->uniqueID() == thatProxies[j]->uniqueID()) {
502 if (thisFilters[i] != thatFilters[j]) {
503 // In GL we don't currently support using the same texture with different
504 // samplers. If we added support for sampler objects and a cap bit to know
505 // it's ok to use different filter modes then we could support this.
506 // Otherwise, we could also only allow a single filter mode for each op
507 // instance.
508 return -1;
509 }
510 map[j] = i;
511 ++sharedProxyCnt;
512 break;
513 }
514 }
515 }
516 int actualMaxTextures = SkTMin(caps.maxFragmentImageStorages(), kMaxTextures);
517 int newProxyCnt = that->fProxyCnt - sharedProxyCnt;
518 if (newProxyCnt + fProxyCnt > actualMaxTextures) {
519 return -1;
520 }
521 GrPixelConfig config = thisProxies[0]->config();
522 int nextSlot = fProxyCnt;
523 for (int j = 0; j < that->fProxyCnt; ++j) {
524 // We want to avoid making many shaders because of different permutations of shader
525 // based swizzle and sampler types. The approach taken here is to require the configs to
526 // be the same and to only allow already instantiated proxies that have the most
527 // common sampler type. Otherwise we don't merge.
528 if (thatProxies[j]->config() != config) {
529 return -1;
530 }
531 if (GrTexture* tex = thatProxies[j]->priv().peekTexture()) {
532 if (tex->texturePriv().samplerType() != kTexture2DSampler_GrSLType) {
533 return -1;
534 }
535 }
536 if (map[j] < 0) {
537 map[j] = -(nextSlot++);
538 }
539 }
540 return newProxyCnt;
541 }
542
543 GrTextureProxy* const* proxies() const { return fProxyCnt > 1 ? fProxyArray : &fProxy0; }
544
545 const GrSamplerState::Filter* filters() const {
546 if (fProxyCnt > 1) {
547 return reinterpret_cast<const GrSamplerState::Filter*>(fProxyArray + kMaxTextures);
548 }
549 return &fFilter0;
550 }
551
Brian Salomon34169692017-08-28 15:32:01 -0400552 struct Draw {
553 SkRect fSrcRect;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400554 int fTextureIdx;
Brian Salomon34169692017-08-28 15:32:01 -0400555 GrQuad fQuad;
556 GrColor fColor;
557 };
558 SkSTArray<1, Draw, true> fDraws;
Brian Salomon34169692017-08-28 15:32:01 -0400559 sk_sp<GrColorSpaceXform> fColorSpaceXform;
Brian Salomon336ce7b2017-09-08 08:23:58 -0400560 // Initially we store a single proxy ptr and a single filter. If we grow to have more than
561 // one proxy we instead store pointers to dynamically allocated arrays of size kMaxTextures
562 // followed by kMaxTextures filters.
563 union {
564 GrTextureProxy* fProxy0;
565 GrTextureProxy** fProxyArray;
566 };
567 // The next four members should pack.
568 GrSamplerState::Filter fFilter0;
569 uint8_t fProxyCnt;
Brian Salomon34169692017-08-28 15:32:01 -0400570 // Used to track whether fProxy is ref'ed or has a pending IO after finalize() is called.
Brian Salomon336ce7b2017-09-08 08:23:58 -0400571 uint8_t fFinalized;
572 uint8_t fAllowSRGBInputs;
573
Brian Salomon34169692017-08-28 15:32:01 -0400574 typedef GrMeshDrawOp INHERITED;
575};
576
Brian Salomon336ce7b2017-09-08 08:23:58 -0400577constexpr int TextureGeometryProcessor::kMaxTextures;
578constexpr int TextureOp::kMaxTextures;
579
Brian Salomon34169692017-08-28 15:32:01 -0400580} // anonymous namespace
581
582namespace GrTextureOp {
583
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400584std::unique_ptr<GrDrawOp> Make(sk_sp<GrTextureProxy> proxy, GrSamplerState::Filter filter,
Brian Salomon34169692017-08-28 15:32:01 -0400585 GrColor color, const SkRect& srcRect, const SkRect& dstRect,
586 const SkMatrix& viewMatrix, sk_sp<GrColorSpaceXform> csxf,
587 bool allowSRGBInputs) {
588 SkASSERT(!viewMatrix.hasPerspective());
589 return TextureOp::Make(std::move(proxy), filter, color, srcRect, dstRect, viewMatrix,
590 std::move(csxf), allowSRGBInputs);
591}
592
593} // namespace GrTextureOp
594
595#if GR_TEST_UTILS
596#include "GrContext.h"
597
598GR_DRAW_OP_TEST_DEFINE(TextureOp) {
599 GrSurfaceDesc desc;
600 desc.fConfig = kRGBA_8888_GrPixelConfig;
601 desc.fHeight = random->nextULessThan(90) + 10;
602 desc.fWidth = random->nextULessThan(90) + 10;
603 desc.fOrigin = random->nextBool() ? kTopLeft_GrSurfaceOrigin : kBottomLeft_GrSurfaceOrigin;
604 SkBackingFit fit = random->nextBool() ? SkBackingFit::kApprox : SkBackingFit::kExact;
605 auto proxy =
606 GrSurfaceProxy::MakeDeferred(context->resourceProvider(), desc, fit, SkBudgeted::kNo);
607 SkRect rect = GrTest::TestRect(random);
608 SkRect srcRect;
609 srcRect.fLeft = random->nextRangeScalar(0.f, proxy->width() / 2.f);
610 srcRect.fRight = random->nextRangeScalar(0.f, proxy->width()) + proxy->width() / 2.f;
611 srcRect.fTop = random->nextRangeScalar(0.f, proxy->height() / 2.f);
612 srcRect.fBottom = random->nextRangeScalar(0.f, proxy->height()) + proxy->height() / 2.f;
613 SkMatrix viewMatrix = GrTest::TestMatrixPreservesRightAngles(random);
614 GrColor color = SkColorToPremulGrColor(random->nextU());
Brian Salomon2bbdcc42017-09-07 12:36:34 -0400615 GrSamplerState::Filter filter = (GrSamplerState::Filter)random->nextULessThan(
616 static_cast<uint32_t>(GrSamplerState::Filter::kMipMap) + 1);
Brian Salomon34169692017-08-28 15:32:01 -0400617 auto csxf = GrTest::TestColorXform(random);
618 bool allowSRGBInputs = random->nextBool();
619 return GrTextureOp::Make(std::move(proxy), filter, color, srcRect, rect, viewMatrix,
620 std::move(csxf), allowSRGBInputs);
621}
622
623#endif