blob: 0dbb7772eb125676e6be6b86b5b7a441eaba0adc [file] [log] [blame]
reed@google.comac10a2d2010-12-22 21:39:39 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2010 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.
reed@google.comac10a2d2010-12-22 21:39:39 +00006 */
7
Robert Phillipsf2361d22016-10-25 14:20:06 -04008#include "GrRenderTargetOpList.h"
joshualitt4d8da812015-01-28 12:53:54 -08009
csmartdalton28341fa2016-08-17 10:00:21 -070010#include "GrAppliedClip.h"
joshualitt086cee12016-01-12 06:45:24 -080011#include "GrAuditTrail.h"
bsalomoneb1cb5c2015-05-22 08:01:09 -070012#include "GrCaps.h"
robertphillips976f5f02016-06-03 10:59:20 -070013#include "GrDrawContext.h"
bsalomon4061b122015-05-29 10:26:19 -070014#include "GrGpu.h"
egdaniel9cb63402016-06-23 08:37:05 -070015#include "GrGpuCommandBuffer.h"
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000016#include "GrPath.h"
egdaniele36914c2015-02-13 09:00:33 -080017#include "GrPipeline.h"
joshualittb7133be2015-04-08 09:08:31 -070018#include "GrMemoryPool.h"
robertphillips5fa7f302016-07-21 09:21:04 -070019#include "GrPipelineBuilder.h"
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000020#include "GrRenderTarget.h"
bsalomon4061b122015-05-29 10:26:19 -070021#include "GrResourceProvider.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080022#include "GrRenderTargetPriv.h"
cdalton93a379b2016-05-11 13:58:08 -070023#include "GrStencilAttachment.h"
bsalomonafbf2d62014-09-30 12:18:44 -070024#include "GrSurfacePriv.h"
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000025#include "GrTexture.h"
ethannicholas22793252016-01-30 09:59:10 -080026#include "gl/GrGLRenderTarget.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000027
joshualitt086cee12016-01-12 06:45:24 -080028#include "SkStrokeRec.h"
29
bsalomon9f129de2016-08-10 16:31:05 -070030#include "batches/GrClearBatch.h"
robertphillips9199a9f2016-07-13 07:48:43 -070031#include "batches/GrClearStencilClipBatch.h"
bsalomon872062c2015-08-18 12:12:35 -070032#include "batches/GrCopySurfaceBatch.h"
bsalomon53469832015-08-18 09:20:09 -070033#include "batches/GrDiscardBatch.h"
bsalomon16b99132015-08-13 14:55:50 -070034#include "batches/GrDrawBatch.h"
bsalomonadd79ef2015-08-19 13:26:49 -070035#include "batches/GrDrawPathBatch.h"
joshualittecd1a692015-08-10 10:08:26 -070036#include "batches/GrRectBatchFactory.h"
bsalomona44919e2015-08-18 13:28:19 -070037#include "batches/GrStencilPathBatch.h"
joshualitt74417822015-08-07 11:42:16 -070038
csmartdaltona7f29642016-07-07 08:49:11 -070039#include "instanced/InstancedRendering.h"
40
Robert Phillipsf2361d22016-10-25 14:20:06 -040041using gr_instanced::InstancedRendering;
42
reed@google.comac10a2d2010-12-22 21:39:39 +000043////////////////////////////////////////////////////////////////////////////////
44
bsalomon489147c2015-12-14 12:13:09 -080045// Experimentally we have found that most batching occurs within the first 10 comparisons.
bsalomonaecc0182016-03-07 11:50:44 -080046static const int kDefaultMaxBatchLookback = 10;
47static const int kDefaultMaxBatchLookahead = 10;
bsalomon489147c2015-12-14 12:13:09 -080048
Robert Phillipsf2361d22016-10-25 14:20:06 -040049GrRenderTargetOpList::GrRenderTargetOpList(GrRenderTarget* rt, GrGpu* gpu,
50 GrResourceProvider* resourceProvider,
51 GrAuditTrail* auditTrail, const Options& options)
52 : INHERITED(rt)
53 , fLastFullClearBatch(nullptr)
bsalomonfd8d0132016-08-11 11:25:33 -070054 , fGpu(SkRef(gpu))
bsalomon4061b122015-05-29 10:26:19 -070055 , fResourceProvider(resourceProvider)
Robert Phillipsf2361d22016-10-25 14:20:06 -040056 , fAuditTrail(auditTrail) {
csmartdaltonc6f411e2016-08-05 22:32:12 -070057 // TODO: Stop extracting the context (currently needed by GrClip)
bsalomonb3b9aec2015-09-10 11:16:35 -070058 fContext = fGpu->getContext();
robertphillips4beb5c12015-10-20 07:50:00 -070059
cdalton862cff32016-05-12 15:09:48 -070060 fClipBatchToBounds = options.fClipBatchToBounds;
bsalomon6dea83f2015-12-03 12:58:06 -080061 fDrawBatchBounds = options.fDrawBatchBounds;
bsalomon489147c2015-12-14 12:13:09 -080062 fMaxBatchLookback = (options.fMaxBatchLookback < 0) ? kDefaultMaxBatchLookback :
63 options.fMaxBatchLookback;
bsalomonaecc0182016-03-07 11:50:44 -080064 fMaxBatchLookahead = (options.fMaxBatchLookahead < 0) ? kDefaultMaxBatchLookahead :
65 options.fMaxBatchLookahead;
bsalomon6dea83f2015-12-03 12:58:06 -080066
csmartdaltone0d36292016-07-29 08:14:20 -070067 if (GrCaps::InstancedSupport::kNone != this->caps()->instancedSupport()) {
68 fInstancedRendering.reset(fGpu->createInstancedRendering());
69 }
bsalomon4061b122015-05-29 10:26:19 -070070}
71
Robert Phillipsf2361d22016-10-25 14:20:06 -040072GrRenderTargetOpList::~GrRenderTargetOpList() {
bsalomon4061b122015-05-29 10:26:19 -070073 fGpu->unref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000074}
75
76////////////////////////////////////////////////////////////////////////////////
77
robertphillips4beb5c12015-10-20 07:50:00 -070078#ifdef SK_DEBUG
Robert Phillipsf2361d22016-10-25 14:20:06 -040079void GrRenderTargetOpList::dump() const {
80 INHERITED::dump();
81
bsalomon6cc90062016-07-08 11:31:22 -070082 SkDebugf("batches (%d):\n", fRecordedBatches.count());
83 for (int i = 0; i < fRecordedBatches.count(); ++i) {
robertphillips4beb5c12015-10-20 07:50:00 -070084 SkDebugf("*******************************\n");
bsalomon6cc90062016-07-08 11:31:22 -070085 if (!fRecordedBatches[i].fBatch) {
bsalomonaecc0182016-03-07 11:50:44 -080086 SkDebugf("%d: <combined forward>\n", i);
87 } else {
bsalomon6cc90062016-07-08 11:31:22 -070088 SkDebugf("%d: %s\n", i, fRecordedBatches[i].fBatch->name());
89 SkString str = fRecordedBatches[i].fBatch->dumpInfo();
bsalomonaecc0182016-03-07 11:50:44 -080090 SkDebugf("%s\n", str.c_str());
bsalomon6cc90062016-07-08 11:31:22 -070091 const SkRect& clippedBounds = fRecordedBatches[i].fClippedBounds;
92 SkDebugf("ClippedBounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
93 clippedBounds.fLeft, clippedBounds.fTop, clippedBounds.fRight,
94 clippedBounds.fBottom);
bsalomonaecc0182016-03-07 11:50:44 -080095 }
robertphillips4beb5c12015-10-20 07:50:00 -070096 }
97}
98#endif
99
Robert Phillipsf2361d22016-10-25 14:20:06 -0400100bool GrRenderTargetOpList::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
101 GrRenderTarget* rt,
102 const GrClip& clip,
103 const GrPipelineOptimizations& optimizations,
104 GrXferProcessor::DstTexture* dstTexture,
105 const SkRect& batchBounds) {
bsalomonad792c12015-09-10 11:10:50 -0700106 SkRect bounds = batchBounds;
107 bounds.outset(0.5f, 0.5f);
108
ethannicholasde4166a2015-11-30 08:57:38 -0800109 if (!pipelineBuilder.willXPNeedDstTexture(*this->caps(), optimizations)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000110 return true;
111 }
cdalton9954bc32015-04-29 14:17:00 -0700112
cdalton9954bc32015-04-29 14:17:00 -0700113 if (this->caps()->textureBarrierSupport()) {
114 if (GrTexture* rtTex = rt->asTexture()) {
bsalomondc47ff72015-05-26 12:16:59 -0700115 // The render target is a texture, so we can read from it directly in the shader. The XP
cdalton9954bc32015-04-29 14:17:00 -0700116 // will be responsible to detect this situation and request a texture barrier.
bsalomon6a44c6a2015-05-26 09:49:05 -0700117 dstTexture->setTexture(rtTex);
118 dstTexture->setOffset(0, 0);
cdalton9954bc32015-04-29 14:17:00 -0700119 return true;
120 }
121 }
122
123 SkIRect copyRect;
cdalton862cff32016-05-12 15:09:48 -0700124 clip.getConservativeBounds(rt->width(), rt->height(), &copyRect);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000125
bsalomonad792c12015-09-10 11:10:50 -0700126 SkIRect drawIBounds;
127 bounds.roundOut(&drawIBounds);
128 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000129#ifdef SK_DEBUG
bsalomonb3b9aec2015-09-10 11:16:35 -0700130 GrCapsDebugf(this->caps(), "Missed an early reject. "
131 "Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000132#endif
bsalomonad792c12015-09-10 11:10:50 -0700133 return false;
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000134 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000135
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000136 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
137 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700138 GrSurfaceDesc desc;
egdaniel4bcd62e2016-08-31 07:37:31 -0700139 if (!fGpu->initDescForDstCopy(rt, &desc)) {
bsalomona73239a2015-04-28 13:35:17 -0700140 desc.fOrigin = kDefault_GrSurfaceOrigin;
141 desc.fFlags = kRenderTarget_GrSurfaceFlag;
142 desc.fConfig = rt->config();
143 }
144
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000145 desc.fWidth = copyRect.width();
146 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000147
bsalomoneae62002015-07-31 13:59:30 -0700148 static const uint32_t kFlags = 0;
149 SkAutoTUnref<GrTexture> copy(fResourceProvider->createApproxTexture(desc, kFlags));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000150
bsalomone3059732014-10-14 11:47:22 -0700151 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700152 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000153 return false;
154 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000155 SkIPoint dstPoint = {0, 0};
bsalomon6df86402015-06-01 10:41:49 -0700156 this->copySurface(copy, rt, copyRect, dstPoint);
157 dstTexture->setTexture(copy);
158 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
159 return true;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000160}
161
Robert Phillipsf2361d22016-10-25 14:20:06 -0400162void GrRenderTargetOpList::prepareBatches(GrBatchFlushState* flushState) {
163 // Semi-usually the GrOpLists are already closed at this point, but sometimes Ganesh
164 // needs to flush mid-draw. In that case, the SkGpuDevice's GrOpLists won't be closed
165 // but need to be flushed anyway. Closing such GrOpLists here will mean new
166 // GrOpLists will be created to replace them if the SkGpuDevice(s) write to them again.
robertphillipsa106c622015-10-16 09:07:06 -0700167 this->makeClosed();
168
robertphillips498d7ac2015-10-30 10:11:30 -0700169 // Loop over the batches that haven't yet generated their geometry
bsalomon6cc90062016-07-08 11:31:22 -0700170 for (int i = 0; i < fRecordedBatches.count(); ++i) {
171 if (fRecordedBatches[i].fBatch) {
172 fRecordedBatches[i].fBatch->prepare(flushState);
bsalomonaecc0182016-03-07 11:50:44 -0800173 }
bsalomon512be532015-09-10 10:42:55 -0700174 }
csmartdaltona7f29642016-07-07 08:49:11 -0700175
176 if (fInstancedRendering) {
177 fInstancedRendering->beginFlush(flushState->resourceProvider());
178 }
robertphillipsa13e2022015-11-11 12:01:09 -0800179}
bsalomon512be532015-09-10 10:42:55 -0700180
Robert Phillipsf2361d22016-10-25 14:20:06 -0400181bool GrRenderTargetOpList::drawBatches(GrBatchFlushState* flushState) {
egdanielb4021cf2016-07-28 08:53:07 -0700182 if (0 == fRecordedBatches.count()) {
bsalomondc438982016-08-31 11:53:49 -0700183 return false;
egdanielb4021cf2016-07-28 08:53:07 -0700184 }
bsalomon512be532015-09-10 10:42:55 -0700185 // Draw all the generated geometry.
bsalomon6dea83f2015-12-03 12:58:06 -0800186 SkRandom random;
egdaniel9cb63402016-06-23 08:37:05 -0700187 GrRenderTarget* currentRT = nullptr;
188 SkAutoTDelete<GrGpuCommandBuffer> commandBuffer;
bsalomon6cc90062016-07-08 11:31:22 -0700189 for (int i = 0; i < fRecordedBatches.count(); ++i) {
190 if (!fRecordedBatches[i].fBatch) {
bsalomonaecc0182016-03-07 11:50:44 -0800191 continue;
192 }
bsalomon6cc90062016-07-08 11:31:22 -0700193 if (fRecordedBatches[i].fBatch->renderTarget() != currentRT) {
egdaniel9cb63402016-06-23 08:37:05 -0700194 if (commandBuffer) {
195 commandBuffer->end();
Greg Daniel36a77ee2016-10-18 10:33:25 -0400196 commandBuffer->submit();
egdaniel9cb63402016-06-23 08:37:05 -0700197 commandBuffer.reset();
198 }
bsalomon6cc90062016-07-08 11:31:22 -0700199 currentRT = fRecordedBatches[i].fBatch->renderTarget();
egdaniel9cb63402016-06-23 08:37:05 -0700200 if (currentRT) {
201 static const GrGpuCommandBuffer::LoadAndStoreInfo kBasicLoadStoreInfo
202 { GrGpuCommandBuffer::LoadOp::kLoad,GrGpuCommandBuffer::StoreOp::kStore,
203 GrColor_ILLEGAL };
204 commandBuffer.reset(fGpu->createCommandBuffer(currentRT,
205 kBasicLoadStoreInfo, // Color
206 kBasicLoadStoreInfo)); // Stencil
207 }
208 flushState->setCommandBuffer(commandBuffer);
209 }
bsalomon6dea83f2015-12-03 12:58:06 -0800210 if (fDrawBatchBounds) {
bsalomon6cc90062016-07-08 11:31:22 -0700211 const SkRect& bounds = fRecordedBatches[i].fClippedBounds;
212 SkIRect ibounds;
213 bounds.roundOut(&ibounds);
bsalomon6dea83f2015-12-03 12:58:06 -0800214 // In multi-draw buffer all the batches use the same render target and we won't need to
215 // get the batchs bounds.
bsalomon6cc90062016-07-08 11:31:22 -0700216 if (GrRenderTarget* rt = fRecordedBatches[i].fBatch->renderTarget()) {
217 fGpu->drawDebugWireRect(rt, ibounds, 0xFF000000 | random.nextU());
bsalomon6dea83f2015-12-03 12:58:06 -0800218 }
219 }
Greg Daniel36a77ee2016-10-18 10:33:25 -0400220 fRecordedBatches[i].fBatch->draw(flushState, fRecordedBatches[i].fClippedBounds);
bsalomon512be532015-09-10 10:42:55 -0700221 }
egdaniel9cb63402016-06-23 08:37:05 -0700222 if (commandBuffer) {
223 commandBuffer->end();
Greg Daniel36a77ee2016-10-18 10:33:25 -0400224 commandBuffer->submit();
egdaniel9cb63402016-06-23 08:37:05 -0700225 flushState->setCommandBuffer(nullptr);
226 }
ethannicholas22793252016-01-30 09:59:10 -0800227
Robert Phillipsf2361d22016-10-25 14:20:06 -0400228 fGpu->finishOpList();
bsalomondc438982016-08-31 11:53:49 -0700229 return true;
bsalomona73239a2015-04-28 13:35:17 -0700230}
231
Robert Phillipsf2361d22016-10-25 14:20:06 -0400232void GrRenderTargetOpList::reset() {
bsalomonfd8d0132016-08-11 11:25:33 -0700233 fLastFullClearBatch = nullptr;
bsalomon6cc90062016-07-08 11:31:22 -0700234 fRecordedBatches.reset();
csmartdaltona7f29642016-07-07 08:49:11 -0700235 if (fInstancedRendering) {
236 fInstancedRendering->endFlush();
237 }
bsalomon512be532015-09-10 10:42:55 -0700238}
239
Robert Phillipsf2361d22016-10-25 14:20:06 -0400240void GrRenderTargetOpList::abandonGpuResources() {
241 if (GrCaps::InstancedSupport::kNone != fContext->caps()->instancedSupport()) {
242 InstancedRendering* ir = this->instancedRendering();
243 ir->resetGpuResources(InstancedRendering::ResetType::kAbandon);
244 }
245}
246
247void GrRenderTargetOpList::freeGpuResources() {
248 if (GrCaps::InstancedSupport::kNone != fContext->caps()->instancedSupport()) {
249 InstancedRendering* ir = this->instancedRendering();
250 ir->resetGpuResources(InstancedRendering::ResetType::kDestroy);
251 }
252}
253
bsalomon88cf17d2016-07-08 06:40:56 -0700254static void batch_bounds(SkRect* bounds, const GrBatch* batch) {
255 *bounds = batch->bounds();
256 if (batch->hasZeroArea()) {
257 if (batch->hasAABloat()) {
258 bounds->outset(0.5f, 0.5f);
259 } else {
260 // We don't know which way the particular GPU will snap lines or points at integer
261 // coords. So we ensure that the bounds is large enough for either snap.
262 SkRect before = *bounds;
263 bounds->roundOut(bounds);
264 if (bounds->fLeft == before.fLeft) {
265 bounds->fLeft -= 1;
266 }
267 if (bounds->fTop == before.fTop) {
268 bounds->fTop -= 1;
269 }
270 if (bounds->fRight == before.fRight) {
271 bounds->fRight += 1;
272 }
273 if (bounds->fBottom == before.fBottom) {
274 bounds->fBottom += 1;
275 }
276 }
277 }
278}
279
Robert Phillipsf2361d22016-10-25 14:20:06 -0400280void GrRenderTargetOpList::drawBatch(const GrPipelineBuilder& pipelineBuilder,
281 GrDrawContext* drawContext,
282 const GrClip& clip,
283 GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800284 // Setup clip
bsalomon88cf17d2016-07-08 06:40:56 -0700285 SkRect bounds;
286 batch_bounds(&bounds, batch);
csmartdaltond211e782016-08-15 11:17:19 -0700287 GrAppliedClip appliedClip(bounds);
288 if (!clip.apply(fContext, drawContext, pipelineBuilder.isHWAntialias(),
289 pipelineBuilder.hasUserStencilSettings(), &appliedClip)) {
cdalton862cff32016-05-12 15:09:48 -0700290 return;
joshualitt4d8da812015-01-28 12:53:54 -0800291 }
robertphillips391395d2016-03-02 09:26:36 -0800292
robertphillips55fdccc2016-06-06 06:16:20 -0700293 // TODO: this is the only remaining usage of the AutoRestoreFragmentProcessorState - remove it
cdaltond4727922015-11-10 12:49:06 -0800294 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
csmartdaltond211e782016-08-15 11:17:19 -0700295 if (appliedClip.clipCoverageFragmentProcessor()) {
cdaltond4727922015-11-10 12:49:06 -0800296 arfps.set(&pipelineBuilder);
csmartdaltond211e782016-08-15 11:17:19 -0700297 arfps.addCoverageFragmentProcessor(sk_ref_sp(appliedClip.clipCoverageFragmentProcessor()));
cdaltond4727922015-11-10 12:49:06 -0800298 }
joshualitt4d8da812015-01-28 12:53:54 -0800299
cdalton862cff32016-05-12 15:09:48 -0700300 if (pipelineBuilder.hasUserStencilSettings() || appliedClip.hasStencilClip()) {
robertphillips55fdccc2016-06-06 06:16:20 -0700301 if (!fResourceProvider->attachStencilAttachment(drawContext->accessRenderTarget())) {
cdalton17bf8202016-05-13 11:27:15 -0700302 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
303 return;
304 }
cdalton193d9cf2016-05-12 11:52:02 -0700305 }
csmartdaltond211e782016-08-15 11:17:19 -0700306
307 GrPipeline::CreateArgs args;
308 args.fPipelineBuilder = &pipelineBuilder;
309 args.fDrawContext = drawContext;
310 args.fCaps = this->caps();
cdalton193d9cf2016-05-12 11:52:02 -0700311 batch->getPipelineOptimizations(&args.fOpts);
cdalton862cff32016-05-12 15:09:48 -0700312 if (args.fOpts.fOverrides.fUsePLSDstRead || fClipBatchToBounds) {
cdalton193d9cf2016-05-12 11:52:02 -0700313 GrGLIRect viewport;
314 viewport.fLeft = 0;
315 viewport.fBottom = 0;
robertphillips55fdccc2016-06-06 06:16:20 -0700316 viewport.fWidth = drawContext->width();
317 viewport.fHeight = drawContext->height();
cdalton193d9cf2016-05-12 11:52:02 -0700318 SkIRect ibounds;
319 ibounds.fLeft = SkTPin(SkScalarFloorToInt(batch->bounds().fLeft), viewport.fLeft,
320 viewport.fWidth);
321 ibounds.fTop = SkTPin(SkScalarFloorToInt(batch->bounds().fTop), viewport.fBottom,
322 viewport.fHeight);
323 ibounds.fRight = SkTPin(SkScalarCeilToInt(batch->bounds().fRight), viewport.fLeft,
324 viewport.fWidth);
325 ibounds.fBottom = SkTPin(SkScalarCeilToInt(batch->bounds().fBottom), viewport.fBottom,
326 viewport.fHeight);
csmartdaltond211e782016-08-15 11:17:19 -0700327 if (!appliedClip.addScissor(ibounds)) {
328 return;
cdalton193d9cf2016-05-12 11:52:02 -0700329 }
cdalton193d9cf2016-05-12 11:52:02 -0700330 }
bungeman06ca8ec2016-06-09 08:01:03 -0700331 args.fOpts.fColorPOI.completeCalculations(
332 sk_sp_address_as_pointer_address(pipelineBuilder.fColorFragmentProcessors.begin()),
333 pipelineBuilder.numColorFragmentProcessors());
cdalton193d9cf2016-05-12 11:52:02 -0700334 args.fOpts.fCoveragePOI.completeCalculations(
bungeman06ca8ec2016-06-09 08:01:03 -0700335 sk_sp_address_as_pointer_address(pipelineBuilder.fCoverageFragmentProcessors.begin()),
336 pipelineBuilder.numCoverageFragmentProcessors());
csmartdaltond211e782016-08-15 11:17:19 -0700337 args.fScissor = &appliedClip.scissorState();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700338 args.fWindowRectsState = &appliedClip.windowRectsState();
csmartdaltond211e782016-08-15 11:17:19 -0700339 args.fHasStencilClip = appliedClip.hasStencilClip();
robertphillips55fdccc2016-06-06 06:16:20 -0700340 if (!this->setupDstReadIfNecessary(pipelineBuilder, drawContext->accessRenderTarget(),
341 clip, args.fOpts,
342 &args.fDstTexture, batch->bounds())) {
cdalton193d9cf2016-05-12 11:52:02 -0700343 return;
344 }
345
346 if (!batch->installPipeline(args)) {
egdaniele36914c2015-02-13 09:00:33 -0800347 return;
348 }
bsalomonad792c12015-09-10 11:10:50 -0700349
robertphillips498d7ac2015-10-30 10:11:30 -0700350#ifdef ENABLE_MDB
Robert Phillipsf2361d22016-10-25 14:20:06 -0400351 SkASSERT(fSurface);
352 batch->pipeline()->addDependenciesTo(fSurface);
robertphillips498d7ac2015-10-30 10:11:30 -0700353#endif
csmartdaltond211e782016-08-15 11:17:19 -0700354 this->recordBatch(batch, appliedClip.clippedDrawBounds());
joshualitt4d8da812015-01-28 12:53:54 -0800355}
356
Robert Phillipsf2361d22016-10-25 14:20:06 -0400357void GrRenderTargetOpList::stencilPath(GrDrawContext* drawContext,
358 const GrClip& clip,
359 bool useHWAA,
360 const SkMatrix& viewMatrix,
361 const GrPath* path) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000362 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700363 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700364 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800365
csmartdaltond211e782016-08-15 11:17:19 -0700366 // FIXME: Use path bounds instead of this WAR once
367 // https://bugs.chromium.org/p/skia/issues/detail?id=5640 is resolved.
368 SkRect bounds = SkRect::MakeIWH(drawContext->width(), drawContext->height());
369
joshualitt2c93efe2014-11-06 12:57:13 -0800370 // Setup clip
csmartdaltond211e782016-08-15 11:17:19 -0700371 GrAppliedClip appliedClip(bounds);
372 if (!clip.apply(fContext, drawContext, useHWAA, true, &appliedClip)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800373 return;
374 }
cdalton862cff32016-05-12 15:09:48 -0700375 // TODO: respect fClipBatchToBounds if we ever start computing bounds here.
joshualitt2c93efe2014-11-06 12:57:13 -0800376
cdalton846c0512016-05-13 10:25:00 -0700377 // Coverage AA does not make sense when rendering to the stencil buffer. The caller should never
378 // attempt this in a situation that would require coverage AA.
csmartdaltond211e782016-08-15 11:17:19 -0700379 SkASSERT(!appliedClip.clipCoverageFragmentProcessor());
bsalomon0ba8c242015-10-07 09:20:28 -0700380
robertphillips55fdccc2016-06-06 06:16:20 -0700381 GrStencilAttachment* stencilAttachment = fResourceProvider->attachStencilAttachment(
382 drawContext->accessRenderTarget());
cdalton17bf8202016-05-13 11:27:15 -0700383 if (!stencilAttachment) {
384 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
385 return;
386 }
joshualitt2c93efe2014-11-06 12:57:13 -0800387
joshualittf2384692015-09-10 11:00:51 -0700388 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
robertphillips59cf61a2016-07-13 09:18:21 -0700389 useHWAA,
390 path->getFillType(),
cdalton862cff32016-05-12 15:09:48 -0700391 appliedClip.hasStencilClip(),
cdalton93a379b2016-05-11 13:58:08 -0700392 stencilAttachment->bits(),
cdalton862cff32016-05-12 15:09:48 -0700393 appliedClip.scissorState(),
robertphillips55fdccc2016-06-06 06:16:20 -0700394 drawContext->accessRenderTarget(),
bsalomona44919e2015-08-18 13:28:19 -0700395 path);
csmartdaltond211e782016-08-15 11:17:19 -0700396 this->recordBatch(batch, appliedClip.clippedDrawBounds());
bsalomona44919e2015-08-18 13:28:19 -0700397 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000398}
399
Robert Phillipsf2361d22016-10-25 14:20:06 -0400400void GrRenderTargetOpList::addBatch(sk_sp<GrBatch> batch) {
robertphillips9199a9f2016-07-13 07:48:43 -0700401 this->recordBatch(batch.get(), batch->bounds());
bsalomon53469832015-08-18 09:20:09 -0700402}
403
Robert Phillipsf2361d22016-10-25 14:20:06 -0400404void GrRenderTargetOpList::fullClear(GrRenderTarget* renderTarget, GrColor color) {
bsalomonfd8d0132016-08-11 11:25:33 -0700405 // Currently this just inserts or updates the last clear batch. However, once in MDB this can
406 // remove all the previously recorded batches and change the load op to clear with supplied
407 // color.
408 if (fLastFullClearBatch &&
robertphillips8abb3702016-08-31 14:04:06 -0700409 fLastFullClearBatch->renderTargetUniqueID() == renderTarget->uniqueID()) {
bsalomonfd8d0132016-08-11 11:25:33 -0700410 // As currently implemented, fLastFullClearBatch should be the last batch because we would
411 // have cleared it when another batch was recorded.
412 SkASSERT(fRecordedBatches.back().fBatch.get() == fLastFullClearBatch);
413 fLastFullClearBatch->setColor(color);
414 return;
415 }
csmartdalton29df7602016-08-31 11:55:52 -0700416 sk_sp<GrClearBatch> batch(GrClearBatch::Make(GrFixedClip::Disabled(), color, renderTarget));
bsalomonfd8d0132016-08-11 11:25:33 -0700417 if (batch.get() == this->recordBatch(batch.get(), batch->bounds())) {
418 fLastFullClearBatch = batch.get();
419 }
bsalomon9f129de2016-08-10 16:31:05 -0700420}
421
Robert Phillipsf2361d22016-10-25 14:20:06 -0400422void GrRenderTargetOpList::discard(GrRenderTarget* renderTarget) {
bsalomon9f129de2016-08-10 16:31:05 -0700423 // Currently this just inserts a discard batch. However, once in MDB this can remove all the
424 // previously recorded batches and change the load op to discard.
bsalomon53469832015-08-18 09:20:09 -0700425 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700426 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon6cc90062016-07-08 11:31:22 -0700427 this->recordBatch(batch, batch->bounds());
bsalomon53469832015-08-18 09:20:09 -0700428 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800429 }
430}
431
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000432////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000433
Robert Phillipsf2361d22016-10-25 14:20:06 -0400434bool GrRenderTargetOpList::copySurface(GrSurface* dst,
435 GrSurface* src,
436 const SkIRect& srcRect,
437 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700438 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
bsalomonb8fea972016-02-16 07:34:17 -0800439 if (!batch) {
440 return false;
441 }
robertphillips498d7ac2015-10-30 10:11:30 -0700442#ifdef ENABLE_MDB
bsalomonb8fea972016-02-16 07:34:17 -0800443 this->addDependency(src);
robertphillips498d7ac2015-10-30 10:11:30 -0700444#endif
445
bsalomon6cc90062016-07-08 11:31:22 -0700446 this->recordBatch(batch, batch->bounds());
bsalomonb8fea972016-02-16 07:34:17 -0800447 batch->unref();
448 return true;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000449}
450
bsalomon6cc90062016-07-08 11:31:22 -0700451static inline bool can_reorder(const SkRect& a, const SkRect& b) {
bsalomon88cf17d2016-07-08 06:40:56 -0700452 return a.fRight <= b.fLeft || a.fBottom <= b.fTop ||
453 b.fRight <= a.fLeft || b.fBottom <= a.fTop;
454}
455
bsalomon6cc90062016-07-08 11:31:22 -0700456static void join(SkRect* out, const SkRect& a, const SkRect& b) {
457 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom);
458 SkASSERT(b.fLeft <= b.fRight && b.fTop <= b.fBottom);
459 out->fLeft = SkTMin(a.fLeft, b.fLeft);
460 out->fTop = SkTMin(a.fTop, b.fTop);
461 out->fRight = SkTMax(a.fRight, b.fRight);
462 out->fBottom = SkTMax(a.fBottom, b.fBottom);
bsalomon512be532015-09-10 10:42:55 -0700463}
464
Robert Phillipsf2361d22016-10-25 14:20:06 -0400465GrBatch* GrRenderTargetOpList::recordBatch(GrBatch* batch, const SkRect& clippedBounds) {
466 // A closed GrOpList should never receive new/more batches
robertphillips6a186652015-10-20 07:37:58 -0700467 SkASSERT(!this->isClosed());
robertphillipsa106c622015-10-16 09:07:06 -0700468
bsalomon512be532015-09-10 10:42:55 -0700469 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
470 // 1) check every draw
471 // 2) intersect with something
472 // 3) find a 'blocker'
joshualittb0666ad2016-03-08 10:43:41 -0800473 GR_AUDIT_TRAIL_ADDBATCH(fAuditTrail, batch);
bsalomon512be532015-09-10 10:42:55 -0700474 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
joshualitte2bcec32015-09-30 06:22:22 -0700475 "\tBounds LRTB (%f, %f, %f, %f)\n",
bsalomon512be532015-09-10 10:42:55 -0700476 batch->name(),
477 batch->uniqueID(),
478 batch->bounds().fLeft, batch->bounds().fRight,
479 batch->bounds().fTop, batch->bounds().fBottom);
480 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
bsalomon6cc90062016-07-08 11:31:22 -0700481 GrBATCH_INFO("\tClipped Bounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
482 clippedBounds.fLeft, clippedBounds.fTop, clippedBounds.fRight,
483 clippedBounds.fBottom);
halcanary9d524f22016-03-29 09:03:52 -0700484 GrBATCH_INFO("\tOutcome:\n");
bsalomon6cc90062016-07-08 11:31:22 -0700485 int maxCandidates = SkTMin(fMaxBatchLookback, fRecordedBatches.count());
bsalomon512be532015-09-10 10:42:55 -0700486 if (maxCandidates) {
487 int i = 0;
488 while (true) {
bsalomon6cc90062016-07-08 11:31:22 -0700489 GrBatch* candidate = fRecordedBatches.fromBack(i).fBatch.get();
bsalomon512be532015-09-10 10:42:55 -0700490 // We cannot continue to search backwards if the render target changes
491 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
492 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
493 candidate->name(), candidate->uniqueID());
494 break;
495 }
496 if (candidate->combineIfPossible(batch, *this->caps())) {
497 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
498 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800499 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, candidate, batch);
bsalomon6cc90062016-07-08 11:31:22 -0700500 join(&fRecordedBatches.fromBack(i).fClippedBounds,
501 fRecordedBatches.fromBack(i).fClippedBounds, clippedBounds);
bsalomonfd8d0132016-08-11 11:25:33 -0700502 return candidate;
bsalomon512be532015-09-10 10:42:55 -0700503 }
504 // Stop going backwards if we would cause a painter's order violation.
bsalomon6cc90062016-07-08 11:31:22 -0700505 const SkRect& candidateBounds = fRecordedBatches.fromBack(i).fClippedBounds;
506 if (!can_reorder(candidateBounds, clippedBounds)) {
bsalomon512be532015-09-10 10:42:55 -0700507 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
508 candidate->uniqueID());
509 break;
510 }
511 ++i;
512 if (i == maxCandidates) {
513 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
514 break;
515 }
516 }
517 } else {
518 GrBATCH_INFO("\t\tFirstBatch\n");
519 }
joshualitt18d6b752016-02-26 08:07:50 -0800520 GR_AUDIT_TRAIL_BATCHING_RESULT_NEW(fAuditTrail, batch);
bsalomon6cc90062016-07-08 11:31:22 -0700521 fRecordedBatches.emplace_back(RecordedBatch{sk_ref_sp(batch), clippedBounds});
bsalomonfd8d0132016-08-11 11:25:33 -0700522 fLastFullClearBatch = nullptr;
523 return batch;
bsalomon512be532015-09-10 10:42:55 -0700524}
525
Robert Phillipsf2361d22016-10-25 14:20:06 -0400526void GrRenderTargetOpList::forwardCombine() {
bsalomondb27fc52016-08-29 12:43:27 -0700527 if (fMaxBatchLookahead <= 0) {
528 return;
529 }
bsalomon6cc90062016-07-08 11:31:22 -0700530 for (int i = 0; i < fRecordedBatches.count() - 2; ++i) {
531 GrBatch* batch = fRecordedBatches[i].fBatch.get();
532 const SkRect& batchBounds = fRecordedBatches[i].fClippedBounds;
533 int maxCandidateIdx = SkTMin(i + fMaxBatchLookahead, fRecordedBatches.count() - 1);
bsalomonaecc0182016-03-07 11:50:44 -0800534 int j = i + 1;
535 while (true) {
bsalomon6cc90062016-07-08 11:31:22 -0700536 GrBatch* candidate = fRecordedBatches[j].fBatch.get();
bsalomonaecc0182016-03-07 11:50:44 -0800537 // We cannot continue to search if the render target changes
538 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
539 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
540 candidate->name(), candidate->uniqueID());
541 break;
542 }
543 if (j == i +1) {
544 // We assume batch would have combined with candidate when the candidate was added
545 // via backwards combining in recordBatch.
546 SkASSERT(!batch->combineIfPossible(candidate, *this->caps()));
547 } else if (batch->combineIfPossible(candidate, *this->caps())) {
548 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
549 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800550 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, batch, candidate);
bsalomon6cc90062016-07-08 11:31:22 -0700551 fRecordedBatches[j].fBatch = std::move(fRecordedBatches[i].fBatch);
552 join(&fRecordedBatches[j].fClippedBounds, fRecordedBatches[j].fClippedBounds,
553 batchBounds);
bsalomonaecc0182016-03-07 11:50:44 -0800554 break;
555 }
556 // Stop going traversing if we would cause a painter's order violation.
bsalomon6cc90062016-07-08 11:31:22 -0700557 const SkRect& candidateBounds = fRecordedBatches[j].fClippedBounds;
558 if (!can_reorder(candidateBounds, batchBounds)) {
bsalomonaecc0182016-03-07 11:50:44 -0800559 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
560 candidate->uniqueID());
561 break;
562 }
563 ++j;
564 if (j > maxCandidateIdx) {
565 GrBATCH_INFO("\t\tReached max lookahead or end of batch array %d\n", i);
566 break;
567 }
568 }
569 }
570}
571
egdaniele36914c2015-02-13 09:00:33 -0800572///////////////////////////////////////////////////////////////////////////////
573
Robert Phillipsf2361d22016-10-25 14:20:06 -0400574void GrRenderTargetOpList::clearStencilClip(const GrFixedClip& clip,
575 bool insideStencilMask,
576 GrRenderTarget* rt) {
csmartdalton29df7602016-08-31 11:55:52 -0700577 GrBatch* batch = new GrClearStencilClipBatch(clip, insideStencilMask, rt);
bsalomon6cc90062016-07-08 11:31:22 -0700578 this->recordBatch(batch, batch->bounds());
bsalomon5ea03632015-08-18 10:33:30 -0700579 batch->unref();
580}