blob: 72a29ab8cd1fc880653dffb99840096183c2480b [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"
Brian Osman11052242016-10-27 14:47:55 -040013#include "GrRenderTargetContext.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 Phillipsc7635fa2016-10-28 13:25:24 -040049GrRenderTargetOpList::GrRenderTargetOpList(GrRenderTargetProxy* rtp, GrGpu* gpu,
Robert Phillipsf2361d22016-10-25 14:20:06 -040050 GrResourceProvider* resourceProvider,
51 GrAuditTrail* auditTrail, const Options& options)
Robert Phillipsc7635fa2016-10-28 13:25:24 -040052 : INHERITED(rtp, auditTrail)
Robert Phillipsf2361d22016-10-25 14:20:06 -040053 , fLastFullClearBatch(nullptr)
bsalomonfd8d0132016-08-11 11:25:33 -070054 , fGpu(SkRef(gpu))
csmartdalton7cdda992016-11-01 07:03:03 -070055 , fResourceProvider(resourceProvider)
56 , fLastClipStackGenID(SK_InvalidUniqueID) {
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.
bungeman6bd52842016-10-27 09:30:08 -0700117 dstTexture->setTexture(sk_ref_sp(rtTex));
bsalomon6a44c6a2015-05-26 09:49:05 -0700118 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;
bungeman6bd52842016-10-27 09:30:08 -0700149 sk_sp<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};
bungeman6bd52842016-10-27 09:30:08 -0700156 this->copySurface(copy.get(), rt, copyRect, dstPoint);
157 dstTexture->setTexture(std::move(copy));
bsalomon6df86402015-06-01 10:41:49 -0700158 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 Phillips294870f2016-11-11 12:38:40 -0500181// TODO: this is where GrBatch::renderTarget is used (which is fine since it
182// is at flush time). However, we need to store the RenderTargetProxy in the
183// Batches and instantiate them here.
Robert Phillipsf2361d22016-10-25 14:20:06 -0400184bool GrRenderTargetOpList::drawBatches(GrBatchFlushState* flushState) {
egdanielb4021cf2016-07-28 08:53:07 -0700185 if (0 == fRecordedBatches.count()) {
bsalomondc438982016-08-31 11:53:49 -0700186 return false;
egdanielb4021cf2016-07-28 08:53:07 -0700187 }
bsalomon512be532015-09-10 10:42:55 -0700188 // Draw all the generated geometry.
bsalomon6dea83f2015-12-03 12:58:06 -0800189 SkRandom random;
egdaniel9cb63402016-06-23 08:37:05 -0700190 GrRenderTarget* currentRT = nullptr;
Ben Wagner145dbcd2016-11-03 14:40:50 -0400191 std::unique_ptr<GrGpuCommandBuffer> commandBuffer;
bsalomon6cc90062016-07-08 11:31:22 -0700192 for (int i = 0; i < fRecordedBatches.count(); ++i) {
193 if (!fRecordedBatches[i].fBatch) {
bsalomonaecc0182016-03-07 11:50:44 -0800194 continue;
195 }
bsalomon6cc90062016-07-08 11:31:22 -0700196 if (fRecordedBatches[i].fBatch->renderTarget() != currentRT) {
egdaniel9cb63402016-06-23 08:37:05 -0700197 if (commandBuffer) {
198 commandBuffer->end();
Greg Daniel36a77ee2016-10-18 10:33:25 -0400199 commandBuffer->submit();
egdaniel9cb63402016-06-23 08:37:05 -0700200 commandBuffer.reset();
201 }
bsalomon6cc90062016-07-08 11:31:22 -0700202 currentRT = fRecordedBatches[i].fBatch->renderTarget();
egdaniel9cb63402016-06-23 08:37:05 -0700203 if (currentRT) {
204 static const GrGpuCommandBuffer::LoadAndStoreInfo kBasicLoadStoreInfo
205 { GrGpuCommandBuffer::LoadOp::kLoad,GrGpuCommandBuffer::StoreOp::kStore,
206 GrColor_ILLEGAL };
207 commandBuffer.reset(fGpu->createCommandBuffer(currentRT,
208 kBasicLoadStoreInfo, // Color
209 kBasicLoadStoreInfo)); // Stencil
210 }
Ben Wagner145dbcd2016-11-03 14:40:50 -0400211 flushState->setCommandBuffer(commandBuffer.get());
egdaniel9cb63402016-06-23 08:37:05 -0700212 }
bsalomon6dea83f2015-12-03 12:58:06 -0800213 if (fDrawBatchBounds) {
bsalomon6cc90062016-07-08 11:31:22 -0700214 const SkRect& bounds = fRecordedBatches[i].fClippedBounds;
215 SkIRect ibounds;
216 bounds.roundOut(&ibounds);
bsalomon6dea83f2015-12-03 12:58:06 -0800217 // In multi-draw buffer all the batches use the same render target and we won't need to
218 // get the batchs bounds.
bsalomon6cc90062016-07-08 11:31:22 -0700219 if (GrRenderTarget* rt = fRecordedBatches[i].fBatch->renderTarget()) {
220 fGpu->drawDebugWireRect(rt, ibounds, 0xFF000000 | random.nextU());
bsalomon6dea83f2015-12-03 12:58:06 -0800221 }
222 }
Greg Daniel36a77ee2016-10-18 10:33:25 -0400223 fRecordedBatches[i].fBatch->draw(flushState, fRecordedBatches[i].fClippedBounds);
bsalomon512be532015-09-10 10:42:55 -0700224 }
egdaniel9cb63402016-06-23 08:37:05 -0700225 if (commandBuffer) {
226 commandBuffer->end();
Greg Daniel36a77ee2016-10-18 10:33:25 -0400227 commandBuffer->submit();
egdaniel9cb63402016-06-23 08:37:05 -0700228 flushState->setCommandBuffer(nullptr);
229 }
ethannicholas22793252016-01-30 09:59:10 -0800230
Robert Phillipsf2361d22016-10-25 14:20:06 -0400231 fGpu->finishOpList();
bsalomondc438982016-08-31 11:53:49 -0700232 return true;
bsalomona73239a2015-04-28 13:35:17 -0700233}
234
Robert Phillipsf2361d22016-10-25 14:20:06 -0400235void GrRenderTargetOpList::reset() {
bsalomonfd8d0132016-08-11 11:25:33 -0700236 fLastFullClearBatch = nullptr;
bsalomon6cc90062016-07-08 11:31:22 -0700237 fRecordedBatches.reset();
csmartdaltona7f29642016-07-07 08:49:11 -0700238 if (fInstancedRendering) {
239 fInstancedRendering->endFlush();
240 }
bsalomon512be532015-09-10 10:42:55 -0700241}
242
Robert Phillipsf2361d22016-10-25 14:20:06 -0400243void GrRenderTargetOpList::abandonGpuResources() {
244 if (GrCaps::InstancedSupport::kNone != fContext->caps()->instancedSupport()) {
245 InstancedRendering* ir = this->instancedRendering();
246 ir->resetGpuResources(InstancedRendering::ResetType::kAbandon);
247 }
248}
249
250void GrRenderTargetOpList::freeGpuResources() {
251 if (GrCaps::InstancedSupport::kNone != fContext->caps()->instancedSupport()) {
252 InstancedRendering* ir = this->instancedRendering();
253 ir->resetGpuResources(InstancedRendering::ResetType::kDestroy);
254 }
255}
256
bsalomon88cf17d2016-07-08 06:40:56 -0700257static void batch_bounds(SkRect* bounds, const GrBatch* batch) {
258 *bounds = batch->bounds();
259 if (batch->hasZeroArea()) {
260 if (batch->hasAABloat()) {
261 bounds->outset(0.5f, 0.5f);
262 } else {
263 // We don't know which way the particular GPU will snap lines or points at integer
264 // coords. So we ensure that the bounds is large enough for either snap.
265 SkRect before = *bounds;
266 bounds->roundOut(bounds);
267 if (bounds->fLeft == before.fLeft) {
268 bounds->fLeft -= 1;
269 }
270 if (bounds->fTop == before.fTop) {
271 bounds->fTop -= 1;
272 }
273 if (bounds->fRight == before.fRight) {
274 bounds->fRight += 1;
275 }
276 if (bounds->fBottom == before.fBottom) {
277 bounds->fBottom += 1;
278 }
279 }
280 }
281}
282
Robert Phillipsf2361d22016-10-25 14:20:06 -0400283void GrRenderTargetOpList::drawBatch(const GrPipelineBuilder& pipelineBuilder,
Brian Osman11052242016-10-27 14:47:55 -0400284 GrRenderTargetContext* renderTargetContext,
Robert Phillipsf2361d22016-10-25 14:20:06 -0400285 const GrClip& clip,
286 GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800287 // Setup clip
bsalomon88cf17d2016-07-08 06:40:56 -0700288 SkRect bounds;
289 batch_bounds(&bounds, batch);
csmartdaltond211e782016-08-15 11:17:19 -0700290 GrAppliedClip appliedClip(bounds);
Brian Osman11052242016-10-27 14:47:55 -0400291 if (!clip.apply(fContext, renderTargetContext, pipelineBuilder.isHWAntialias(),
csmartdaltond211e782016-08-15 11:17:19 -0700292 pipelineBuilder.hasUserStencilSettings(), &appliedClip)) {
cdalton862cff32016-05-12 15:09:48 -0700293 return;
joshualitt4d8da812015-01-28 12:53:54 -0800294 }
robertphillips391395d2016-03-02 09:26:36 -0800295
robertphillips55fdccc2016-06-06 06:16:20 -0700296 // TODO: this is the only remaining usage of the AutoRestoreFragmentProcessorState - remove it
cdaltond4727922015-11-10 12:49:06 -0800297 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
csmartdaltond211e782016-08-15 11:17:19 -0700298 if (appliedClip.clipCoverageFragmentProcessor()) {
cdaltond4727922015-11-10 12:49:06 -0800299 arfps.set(&pipelineBuilder);
csmartdaltond211e782016-08-15 11:17:19 -0700300 arfps.addCoverageFragmentProcessor(sk_ref_sp(appliedClip.clipCoverageFragmentProcessor()));
cdaltond4727922015-11-10 12:49:06 -0800301 }
joshualitt4d8da812015-01-28 12:53:54 -0800302
cdalton862cff32016-05-12 15:09:48 -0700303 if (pipelineBuilder.hasUserStencilSettings() || appliedClip.hasStencilClip()) {
Brian Osman11052242016-10-27 14:47:55 -0400304 if (!fResourceProvider->attachStencilAttachment(
305 renderTargetContext->accessRenderTarget())) {
cdalton17bf8202016-05-13 11:27:15 -0700306 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
307 return;
308 }
cdalton193d9cf2016-05-12 11:52:02 -0700309 }
csmartdaltond211e782016-08-15 11:17:19 -0700310
311 GrPipeline::CreateArgs args;
312 args.fPipelineBuilder = &pipelineBuilder;
Brian Osman11052242016-10-27 14:47:55 -0400313 args.fRenderTargetContext = renderTargetContext;
csmartdaltond211e782016-08-15 11:17:19 -0700314 args.fCaps = this->caps();
cdalton193d9cf2016-05-12 11:52:02 -0700315 batch->getPipelineOptimizations(&args.fOpts);
cdalton862cff32016-05-12 15:09:48 -0700316 if (args.fOpts.fOverrides.fUsePLSDstRead || fClipBatchToBounds) {
cdalton193d9cf2016-05-12 11:52:02 -0700317 GrGLIRect viewport;
318 viewport.fLeft = 0;
319 viewport.fBottom = 0;
Brian Osman11052242016-10-27 14:47:55 -0400320 viewport.fWidth = renderTargetContext->width();
321 viewport.fHeight = renderTargetContext->height();
cdalton193d9cf2016-05-12 11:52:02 -0700322 SkIRect ibounds;
323 ibounds.fLeft = SkTPin(SkScalarFloorToInt(batch->bounds().fLeft), viewport.fLeft,
324 viewport.fWidth);
325 ibounds.fTop = SkTPin(SkScalarFloorToInt(batch->bounds().fTop), viewport.fBottom,
326 viewport.fHeight);
327 ibounds.fRight = SkTPin(SkScalarCeilToInt(batch->bounds().fRight), viewport.fLeft,
328 viewport.fWidth);
329 ibounds.fBottom = SkTPin(SkScalarCeilToInt(batch->bounds().fBottom), viewport.fBottom,
330 viewport.fHeight);
csmartdaltond211e782016-08-15 11:17:19 -0700331 if (!appliedClip.addScissor(ibounds)) {
332 return;
cdalton193d9cf2016-05-12 11:52:02 -0700333 }
cdalton193d9cf2016-05-12 11:52:02 -0700334 }
bungeman06ca8ec2016-06-09 08:01:03 -0700335 args.fOpts.fColorPOI.completeCalculations(
336 sk_sp_address_as_pointer_address(pipelineBuilder.fColorFragmentProcessors.begin()),
337 pipelineBuilder.numColorFragmentProcessors());
cdalton193d9cf2016-05-12 11:52:02 -0700338 args.fOpts.fCoveragePOI.completeCalculations(
bungeman06ca8ec2016-06-09 08:01:03 -0700339 sk_sp_address_as_pointer_address(pipelineBuilder.fCoverageFragmentProcessors.begin()),
340 pipelineBuilder.numCoverageFragmentProcessors());
csmartdaltond211e782016-08-15 11:17:19 -0700341 args.fScissor = &appliedClip.scissorState();
csmartdaltonbf4a8f92016-09-06 10:01:06 -0700342 args.fWindowRectsState = &appliedClip.windowRectsState();
csmartdaltond211e782016-08-15 11:17:19 -0700343 args.fHasStencilClip = appliedClip.hasStencilClip();
Brian Osman11052242016-10-27 14:47:55 -0400344 if (!this->setupDstReadIfNecessary(pipelineBuilder, renderTargetContext->accessRenderTarget(),
robertphillips55fdccc2016-06-06 06:16:20 -0700345 clip, args.fOpts,
346 &args.fDstTexture, batch->bounds())) {
cdalton193d9cf2016-05-12 11:52:02 -0700347 return;
348 }
349
350 if (!batch->installPipeline(args)) {
egdaniele36914c2015-02-13 09:00:33 -0800351 return;
352 }
bsalomonad792c12015-09-10 11:10:50 -0700353
robertphillips498d7ac2015-10-30 10:11:30 -0700354#ifdef ENABLE_MDB
Robert Phillipsf2361d22016-10-25 14:20:06 -0400355 SkASSERT(fSurface);
356 batch->pipeline()->addDependenciesTo(fSurface);
robertphillips498d7ac2015-10-30 10:11:30 -0700357#endif
csmartdaltond211e782016-08-15 11:17:19 -0700358 this->recordBatch(batch, appliedClip.clippedDrawBounds());
joshualitt4d8da812015-01-28 12:53:54 -0800359}
360
Brian Osman11052242016-10-27 14:47:55 -0400361void GrRenderTargetOpList::stencilPath(GrRenderTargetContext* renderTargetContext,
Robert Phillipsf2361d22016-10-25 14:20:06 -0400362 const GrClip& clip,
363 bool useHWAA,
364 const SkMatrix& viewMatrix,
365 const GrPath* path) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000366 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700367 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700368 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800369
csmartdaltond211e782016-08-15 11:17:19 -0700370 // FIXME: Use path bounds instead of this WAR once
371 // https://bugs.chromium.org/p/skia/issues/detail?id=5640 is resolved.
Brian Osman11052242016-10-27 14:47:55 -0400372 SkRect bounds = SkRect::MakeIWH(renderTargetContext->width(), renderTargetContext->height());
csmartdaltond211e782016-08-15 11:17:19 -0700373
joshualitt2c93efe2014-11-06 12:57:13 -0800374 // Setup clip
csmartdaltond211e782016-08-15 11:17:19 -0700375 GrAppliedClip appliedClip(bounds);
Brian Osman11052242016-10-27 14:47:55 -0400376 if (!clip.apply(fContext, renderTargetContext, useHWAA, true, &appliedClip)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800377 return;
378 }
cdalton862cff32016-05-12 15:09:48 -0700379 // TODO: respect fClipBatchToBounds if we ever start computing bounds here.
joshualitt2c93efe2014-11-06 12:57:13 -0800380
cdalton846c0512016-05-13 10:25:00 -0700381 // Coverage AA does not make sense when rendering to the stencil buffer. The caller should never
382 // attempt this in a situation that would require coverage AA.
csmartdaltond211e782016-08-15 11:17:19 -0700383 SkASSERT(!appliedClip.clipCoverageFragmentProcessor());
bsalomon0ba8c242015-10-07 09:20:28 -0700384
robertphillips55fdccc2016-06-06 06:16:20 -0700385 GrStencilAttachment* stencilAttachment = fResourceProvider->attachStencilAttachment(
Brian Osman11052242016-10-27 14:47:55 -0400386 renderTargetContext->accessRenderTarget());
cdalton17bf8202016-05-13 11:27:15 -0700387 if (!stencilAttachment) {
388 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
389 return;
390 }
joshualitt2c93efe2014-11-06 12:57:13 -0800391
joshualittf2384692015-09-10 11:00:51 -0700392 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
robertphillips59cf61a2016-07-13 09:18:21 -0700393 useHWAA,
394 path->getFillType(),
cdalton862cff32016-05-12 15:09:48 -0700395 appliedClip.hasStencilClip(),
cdalton93a379b2016-05-11 13:58:08 -0700396 stencilAttachment->bits(),
cdalton862cff32016-05-12 15:09:48 -0700397 appliedClip.scissorState(),
Brian Osman11052242016-10-27 14:47:55 -0400398 renderTargetContext->accessRenderTarget(),
bsalomona44919e2015-08-18 13:28:19 -0700399 path);
csmartdaltond211e782016-08-15 11:17:19 -0700400 this->recordBatch(batch, appliedClip.clippedDrawBounds());
bsalomona44919e2015-08-18 13:28:19 -0700401 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000402}
403
Robert Phillipsf2361d22016-10-25 14:20:06 -0400404void GrRenderTargetOpList::addBatch(sk_sp<GrBatch> batch) {
robertphillips9199a9f2016-07-13 07:48:43 -0700405 this->recordBatch(batch.get(), batch->bounds());
bsalomon53469832015-08-18 09:20:09 -0700406}
407
Robert Phillipsf2361d22016-10-25 14:20:06 -0400408void GrRenderTargetOpList::fullClear(GrRenderTarget* renderTarget, GrColor color) {
bsalomonfd8d0132016-08-11 11:25:33 -0700409 // Currently this just inserts or updates the last clear batch. However, once in MDB this can
410 // remove all the previously recorded batches and change the load op to clear with supplied
411 // color.
Robert Phillips294870f2016-11-11 12:38:40 -0500412 // TODO: this needs to be updated to use GrSurfaceProxy::UniqueID
bsalomonfd8d0132016-08-11 11:25:33 -0700413 if (fLastFullClearBatch &&
robertphillips8abb3702016-08-31 14:04:06 -0700414 fLastFullClearBatch->renderTargetUniqueID() == renderTarget->uniqueID()) {
bsalomonfd8d0132016-08-11 11:25:33 -0700415 // As currently implemented, fLastFullClearBatch should be the last batch because we would
416 // have cleared it when another batch was recorded.
417 SkASSERT(fRecordedBatches.back().fBatch.get() == fLastFullClearBatch);
418 fLastFullClearBatch->setColor(color);
419 return;
420 }
csmartdalton29df7602016-08-31 11:55:52 -0700421 sk_sp<GrClearBatch> batch(GrClearBatch::Make(GrFixedClip::Disabled(), color, renderTarget));
bsalomonfd8d0132016-08-11 11:25:33 -0700422 if (batch.get() == this->recordBatch(batch.get(), batch->bounds())) {
423 fLastFullClearBatch = batch.get();
424 }
bsalomon9f129de2016-08-10 16:31:05 -0700425}
426
Robert Phillipsf2361d22016-10-25 14:20:06 -0400427void GrRenderTargetOpList::discard(GrRenderTarget* renderTarget) {
bsalomon9f129de2016-08-10 16:31:05 -0700428 // Currently this just inserts a discard batch. However, once in MDB this can remove all the
429 // previously recorded batches and change the load op to discard.
bsalomon53469832015-08-18 09:20:09 -0700430 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700431 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon6cc90062016-07-08 11:31:22 -0700432 this->recordBatch(batch, batch->bounds());
bsalomon53469832015-08-18 09:20:09 -0700433 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800434 }
435}
436
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000437////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000438
Robert Phillipsf2361d22016-10-25 14:20:06 -0400439bool GrRenderTargetOpList::copySurface(GrSurface* dst,
440 GrSurface* src,
441 const SkIRect& srcRect,
442 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700443 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
bsalomonb8fea972016-02-16 07:34:17 -0800444 if (!batch) {
445 return false;
446 }
robertphillips498d7ac2015-10-30 10:11:30 -0700447#ifdef ENABLE_MDB
bsalomonb8fea972016-02-16 07:34:17 -0800448 this->addDependency(src);
robertphillips498d7ac2015-10-30 10:11:30 -0700449#endif
450
bsalomon6cc90062016-07-08 11:31:22 -0700451 this->recordBatch(batch, batch->bounds());
bsalomonb8fea972016-02-16 07:34:17 -0800452 batch->unref();
453 return true;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000454}
455
bsalomon6cc90062016-07-08 11:31:22 -0700456static inline bool can_reorder(const SkRect& a, const SkRect& b) {
bsalomon88cf17d2016-07-08 06:40:56 -0700457 return a.fRight <= b.fLeft || a.fBottom <= b.fTop ||
458 b.fRight <= a.fLeft || b.fBottom <= a.fTop;
459}
460
bsalomon6cc90062016-07-08 11:31:22 -0700461static void join(SkRect* out, const SkRect& a, const SkRect& b) {
462 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom);
463 SkASSERT(b.fLeft <= b.fRight && b.fTop <= b.fBottom);
464 out->fLeft = SkTMin(a.fLeft, b.fLeft);
465 out->fTop = SkTMin(a.fTop, b.fTop);
466 out->fRight = SkTMax(a.fRight, b.fRight);
467 out->fBottom = SkTMax(a.fBottom, b.fBottom);
bsalomon512be532015-09-10 10:42:55 -0700468}
469
Robert Phillipsf2361d22016-10-25 14:20:06 -0400470GrBatch* GrRenderTargetOpList::recordBatch(GrBatch* batch, const SkRect& clippedBounds) {
471 // A closed GrOpList should never receive new/more batches
robertphillips6a186652015-10-20 07:37:58 -0700472 SkASSERT(!this->isClosed());
robertphillipsa106c622015-10-16 09:07:06 -0700473
bsalomon512be532015-09-10 10:42:55 -0700474 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
475 // 1) check every draw
476 // 2) intersect with something
477 // 3) find a 'blocker'
joshualittb0666ad2016-03-08 10:43:41 -0800478 GR_AUDIT_TRAIL_ADDBATCH(fAuditTrail, batch);
bsalomon512be532015-09-10 10:42:55 -0700479 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
joshualitte2bcec32015-09-30 06:22:22 -0700480 "\tBounds LRTB (%f, %f, %f, %f)\n",
bsalomon512be532015-09-10 10:42:55 -0700481 batch->name(),
482 batch->uniqueID(),
483 batch->bounds().fLeft, batch->bounds().fRight,
484 batch->bounds().fTop, batch->bounds().fBottom);
485 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
bsalomon6cc90062016-07-08 11:31:22 -0700486 GrBATCH_INFO("\tClipped Bounds: [L: %.2f, T: %.2f, R: %.2f, B: %.2f]\n",
487 clippedBounds.fLeft, clippedBounds.fTop, clippedBounds.fRight,
488 clippedBounds.fBottom);
halcanary9d524f22016-03-29 09:03:52 -0700489 GrBATCH_INFO("\tOutcome:\n");
bsalomon6cc90062016-07-08 11:31:22 -0700490 int maxCandidates = SkTMin(fMaxBatchLookback, fRecordedBatches.count());
bsalomon512be532015-09-10 10:42:55 -0700491 if (maxCandidates) {
492 int i = 0;
493 while (true) {
bsalomon6cc90062016-07-08 11:31:22 -0700494 GrBatch* candidate = fRecordedBatches.fromBack(i).fBatch.get();
bsalomon512be532015-09-10 10:42:55 -0700495 // We cannot continue to search backwards if the render target changes
496 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
497 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
498 candidate->name(), candidate->uniqueID());
499 break;
500 }
501 if (candidate->combineIfPossible(batch, *this->caps())) {
502 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
503 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800504 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, candidate, batch);
bsalomon6cc90062016-07-08 11:31:22 -0700505 join(&fRecordedBatches.fromBack(i).fClippedBounds,
506 fRecordedBatches.fromBack(i).fClippedBounds, clippedBounds);
bsalomonfd8d0132016-08-11 11:25:33 -0700507 return candidate;
bsalomon512be532015-09-10 10:42:55 -0700508 }
509 // Stop going backwards if we would cause a painter's order violation.
bsalomon6cc90062016-07-08 11:31:22 -0700510 const SkRect& candidateBounds = fRecordedBatches.fromBack(i).fClippedBounds;
511 if (!can_reorder(candidateBounds, clippedBounds)) {
bsalomon512be532015-09-10 10:42:55 -0700512 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
513 candidate->uniqueID());
514 break;
515 }
516 ++i;
517 if (i == maxCandidates) {
518 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
519 break;
520 }
521 }
522 } else {
523 GrBATCH_INFO("\t\tFirstBatch\n");
524 }
joshualitt18d6b752016-02-26 08:07:50 -0800525 GR_AUDIT_TRAIL_BATCHING_RESULT_NEW(fAuditTrail, batch);
bsalomon6cc90062016-07-08 11:31:22 -0700526 fRecordedBatches.emplace_back(RecordedBatch{sk_ref_sp(batch), clippedBounds});
bsalomonfd8d0132016-08-11 11:25:33 -0700527 fLastFullClearBatch = nullptr;
528 return batch;
bsalomon512be532015-09-10 10:42:55 -0700529}
530
Robert Phillipsf2361d22016-10-25 14:20:06 -0400531void GrRenderTargetOpList::forwardCombine() {
bsalomondb27fc52016-08-29 12:43:27 -0700532 if (fMaxBatchLookahead <= 0) {
533 return;
534 }
bsalomon6cc90062016-07-08 11:31:22 -0700535 for (int i = 0; i < fRecordedBatches.count() - 2; ++i) {
536 GrBatch* batch = fRecordedBatches[i].fBatch.get();
537 const SkRect& batchBounds = fRecordedBatches[i].fClippedBounds;
538 int maxCandidateIdx = SkTMin(i + fMaxBatchLookahead, fRecordedBatches.count() - 1);
bsalomonaecc0182016-03-07 11:50:44 -0800539 int j = i + 1;
540 while (true) {
bsalomon6cc90062016-07-08 11:31:22 -0700541 GrBatch* candidate = fRecordedBatches[j].fBatch.get();
bsalomonaecc0182016-03-07 11:50:44 -0800542 // We cannot continue to search if the render target changes
543 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
544 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
545 candidate->name(), candidate->uniqueID());
546 break;
547 }
548 if (j == i +1) {
549 // We assume batch would have combined with candidate when the candidate was added
550 // via backwards combining in recordBatch.
551 SkASSERT(!batch->combineIfPossible(candidate, *this->caps()));
552 } else if (batch->combineIfPossible(candidate, *this->caps())) {
553 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
554 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800555 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, batch, candidate);
bsalomon6cc90062016-07-08 11:31:22 -0700556 fRecordedBatches[j].fBatch = std::move(fRecordedBatches[i].fBatch);
557 join(&fRecordedBatches[j].fClippedBounds, fRecordedBatches[j].fClippedBounds,
558 batchBounds);
bsalomonaecc0182016-03-07 11:50:44 -0800559 break;
560 }
561 // Stop going traversing if we would cause a painter's order violation.
bsalomon6cc90062016-07-08 11:31:22 -0700562 const SkRect& candidateBounds = fRecordedBatches[j].fClippedBounds;
563 if (!can_reorder(candidateBounds, batchBounds)) {
bsalomonaecc0182016-03-07 11:50:44 -0800564 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
565 candidate->uniqueID());
566 break;
567 }
568 ++j;
569 if (j > maxCandidateIdx) {
570 GrBATCH_INFO("\t\tReached max lookahead or end of batch array %d\n", i);
571 break;
572 }
573 }
574 }
575}
576
egdaniele36914c2015-02-13 09:00:33 -0800577///////////////////////////////////////////////////////////////////////////////
578
Robert Phillipsf2361d22016-10-25 14:20:06 -0400579void GrRenderTargetOpList::clearStencilClip(const GrFixedClip& clip,
580 bool insideStencilMask,
581 GrRenderTarget* rt) {
csmartdalton29df7602016-08-31 11:55:52 -0700582 GrBatch* batch = new GrClearStencilClipBatch(clip, insideStencilMask, rt);
bsalomon6cc90062016-07-08 11:31:22 -0700583 this->recordBatch(batch, batch->bounds());
bsalomon5ea03632015-08-18 10:33:30 -0700584 batch->unref();
585}