blob: d498d49a3dc01f136e25a5a8fac08fcaa73a8b4f [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
joshualittc2893c52015-01-28 06:54:30 -08008#include "GrDrawTarget.h"
joshualitt4d8da812015-01-28 12:53:54 -08009
joshualitt086cee12016-01-12 06:45:24 -080010#include "GrAuditTrail.h"
bsalomoneb1cb5c2015-05-22 08:01:09 -070011#include "GrCaps.h"
robertphillips976f5f02016-06-03 10:59:20 -070012#include "GrDrawContext.h"
bsalomon4061b122015-05-29 10:26:19 -070013#include "GrGpu.h"
egdaniel9cb63402016-06-23 08:37:05 -070014#include "GrGpuCommandBuffer.h"
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000015#include "GrPath.h"
egdaniele36914c2015-02-13 09:00:33 -080016#include "GrPipeline.h"
joshualittb7133be2015-04-08 09:08:31 -070017#include "GrMemoryPool.h"
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000018#include "GrRenderTarget.h"
bsalomon4061b122015-05-29 10:26:19 -070019#include "GrResourceProvider.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080020#include "GrRenderTargetPriv.h"
cdalton93a379b2016-05-11 13:58:08 -070021#include "GrStencilAttachment.h"
bsalomonafbf2d62014-09-30 12:18:44 -070022#include "GrSurfacePriv.h"
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000023#include "GrTexture.h"
ethannicholas22793252016-01-30 09:59:10 -080024#include "gl/GrGLRenderTarget.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000025
joshualitt086cee12016-01-12 06:45:24 -080026#include "SkStrokeRec.h"
27
bsalomon53469832015-08-18 09:20:09 -070028#include "batches/GrClearBatch.h"
bsalomon872062c2015-08-18 12:12:35 -070029#include "batches/GrCopySurfaceBatch.h"
bsalomon53469832015-08-18 09:20:09 -070030#include "batches/GrDiscardBatch.h"
bsalomon16b99132015-08-13 14:55:50 -070031#include "batches/GrDrawBatch.h"
bsalomonadd79ef2015-08-19 13:26:49 -070032#include "batches/GrDrawPathBatch.h"
joshualittecd1a692015-08-10 10:08:26 -070033#include "batches/GrRectBatchFactory.h"
bsalomona44919e2015-08-18 13:28:19 -070034#include "batches/GrStencilPathBatch.h"
joshualitt74417822015-08-07 11:42:16 -070035
reed@google.comac10a2d2010-12-22 21:39:39 +000036////////////////////////////////////////////////////////////////////////////////
37
bsalomon489147c2015-12-14 12:13:09 -080038// Experimentally we have found that most batching occurs within the first 10 comparisons.
bsalomonaecc0182016-03-07 11:50:44 -080039static const int kDefaultMaxBatchLookback = 10;
40static const int kDefaultMaxBatchLookahead = 10;
bsalomon489147c2015-12-14 12:13:09 -080041
bsalomon69cfe952015-11-30 13:27:47 -080042GrDrawTarget::GrDrawTarget(GrRenderTarget* rt, GrGpu* gpu, GrResourceProvider* resourceProvider,
joshualitt086cee12016-01-12 06:45:24 -080043 GrAuditTrail* auditTrail, const Options& options)
bsalomon4061b122015-05-29 10:26:19 -070044 : fGpu(SkRef(gpu))
bsalomon4061b122015-05-29 10:26:19 -070045 , fResourceProvider(resourceProvider)
joshualitt086cee12016-01-12 06:45:24 -080046 , fAuditTrail(auditTrail)
bsalomon648c6962015-10-23 09:06:59 -070047 , fFlags(0)
robertphillips498d7ac2015-10-30 10:11:30 -070048 , fRenderTarget(rt) {
bsalomonb3b9aec2015-09-10 11:16:35 -070049 // TODO: Stop extracting the context (currently needed by GrClipMaskManager)
50 fContext = fGpu->getContext();
robertphillips4beb5c12015-10-20 07:50:00 -070051
cdalton862cff32016-05-12 15:09:48 -070052 fClipBatchToBounds = options.fClipBatchToBounds;
bsalomon6dea83f2015-12-03 12:58:06 -080053 fDrawBatchBounds = options.fDrawBatchBounds;
bsalomon489147c2015-12-14 12:13:09 -080054 fMaxBatchLookback = (options.fMaxBatchLookback < 0) ? kDefaultMaxBatchLookback :
55 options.fMaxBatchLookback;
bsalomonaecc0182016-03-07 11:50:44 -080056 fMaxBatchLookahead = (options.fMaxBatchLookahead < 0) ? kDefaultMaxBatchLookahead :
57 options.fMaxBatchLookahead;
bsalomon6dea83f2015-12-03 12:58:06 -080058
robertphillips0dfa62c2015-11-16 06:23:31 -080059 rt->setLastDrawTarget(this);
60
robertphillips4beb5c12015-10-20 07:50:00 -070061#ifdef SK_DEBUG
62 static int debugID = 0;
63 fDebugID = debugID++;
64#endif
bsalomon4061b122015-05-29 10:26:19 -070065}
66
67GrDrawTarget::~GrDrawTarget() {
robertphillips498d7ac2015-10-30 10:11:30 -070068 if (fRenderTarget && this == fRenderTarget->getLastDrawTarget()) {
69 fRenderTarget->setLastDrawTarget(nullptr);
70 }
71
bsalomon4061b122015-05-29 10:26:19 -070072 fGpu->unref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000073}
74
75////////////////////////////////////////////////////////////////////////////////
76
robertphillips6a186652015-10-20 07:37:58 -070077// Add a GrDrawTarget-based dependency
78void GrDrawTarget::addDependency(GrDrawTarget* dependedOn) {
79 SkASSERT(!dependedOn->dependsOn(this)); // loops are bad
80
81 if (this->dependsOn(dependedOn)) {
82 return; // don't add duplicate dependencies
83 }
84
85 *fDependencies.push() = dependedOn;
86}
87
88// Convert from a GrSurface-based dependency to a GrDrawTarget one
89void GrDrawTarget::addDependency(GrSurface* dependedOn) {
90 if (dependedOn->asRenderTarget() && dependedOn->asRenderTarget()->getLastDrawTarget()) {
91 // If it is still receiving dependencies, this DT shouldn't be closed
92 SkASSERT(!this->isClosed());
93
94 GrDrawTarget* dt = dependedOn->asRenderTarget()->getLastDrawTarget();
95 if (dt == this) {
96 // self-read - presumably for dst reads
97 } else {
98 this->addDependency(dt);
99
100 // Can't make it closed in the self-read case
101 dt->makeClosed();
102 }
103 }
104}
105
robertphillips4beb5c12015-10-20 07:50:00 -0700106#ifdef SK_DEBUG
107void GrDrawTarget::dump() const {
108 SkDebugf("--------------------------------------------------------------\n");
robertphillipse004bfc2015-11-16 09:06:59 -0800109 SkDebugf("node: %d -> RT: %d\n", fDebugID, fRenderTarget ? fRenderTarget->getUniqueID() : -1);
robertphillips4beb5c12015-10-20 07:50:00 -0700110 SkDebugf("relies On (%d): ", fDependencies.count());
111 for (int i = 0; i < fDependencies.count(); ++i) {
112 SkDebugf("%d, ", fDependencies[i]->fDebugID);
113 }
114 SkDebugf("\n");
115 SkDebugf("batches (%d):\n", fBatches.count());
116 for (int i = 0; i < fBatches.count(); ++i) {
117#if 0
118 SkDebugf("*******************************\n");
119#endif
bsalomonaecc0182016-03-07 11:50:44 -0800120 if (fBatches[i]) {
121 SkDebugf("%d: <combined forward>\n", i);
122 } else {
123 SkDebugf("%d: %s\n", i, fBatches[i]->name());
robertphillips4beb5c12015-10-20 07:50:00 -0700124#if 0
bsalomonaecc0182016-03-07 11:50:44 -0800125 SkString str = fBatches[i]->dumpInfo();
126 SkDebugf("%s\n", str.c_str());
robertphillips4beb5c12015-10-20 07:50:00 -0700127#endif
bsalomonaecc0182016-03-07 11:50:44 -0800128 }
robertphillips4beb5c12015-10-20 07:50:00 -0700129 }
130}
131#endif
132
bsalomon50785a32015-02-06 07:02:37 -0800133bool GrDrawTarget::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
robertphillips55fdccc2016-06-06 06:16:20 -0700134 GrRenderTarget* rt,
cdalton862cff32016-05-12 15:09:48 -0700135 const GrClip& clip,
ethannicholasde4166a2015-11-30 08:57:38 -0800136 const GrPipelineOptimizations& optimizations,
bsalomon6a44c6a2015-05-26 09:49:05 -0700137 GrXferProcessor::DstTexture* dstTexture,
bsalomonad792c12015-09-10 11:10:50 -0700138 const SkRect& batchBounds) {
139 SkRect bounds = batchBounds;
140 bounds.outset(0.5f, 0.5f);
141
ethannicholasde4166a2015-11-30 08:57:38 -0800142 if (!pipelineBuilder.willXPNeedDstTexture(*this->caps(), optimizations)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000143 return true;
144 }
cdalton9954bc32015-04-29 14:17:00 -0700145
cdalton9954bc32015-04-29 14:17:00 -0700146 if (this->caps()->textureBarrierSupport()) {
147 if (GrTexture* rtTex = rt->asTexture()) {
bsalomondc47ff72015-05-26 12:16:59 -0700148 // The render target is a texture, so we can read from it directly in the shader. The XP
cdalton9954bc32015-04-29 14:17:00 -0700149 // will be responsible to detect this situation and request a texture barrier.
bsalomon6a44c6a2015-05-26 09:49:05 -0700150 dstTexture->setTexture(rtTex);
151 dstTexture->setOffset(0, 0);
cdalton9954bc32015-04-29 14:17:00 -0700152 return true;
153 }
154 }
155
156 SkIRect copyRect;
cdalton862cff32016-05-12 15:09:48 -0700157 clip.getConservativeBounds(rt->width(), rt->height(), &copyRect);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000158
bsalomonad792c12015-09-10 11:10:50 -0700159 SkIRect drawIBounds;
160 bounds.roundOut(&drawIBounds);
161 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000162#ifdef SK_DEBUG
bsalomonb3b9aec2015-09-10 11:16:35 -0700163 GrCapsDebugf(this->caps(), "Missed an early reject. "
164 "Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000165#endif
bsalomonad792c12015-09-10 11:10:50 -0700166 return false;
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000167 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000168
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000169 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
170 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700171 GrSurfaceDesc desc;
bsalomonb3b9aec2015-09-10 11:16:35 -0700172 if (!fGpu->initCopySurfaceDstDesc(rt, &desc)) {
bsalomona73239a2015-04-28 13:35:17 -0700173 desc.fOrigin = kDefault_GrSurfaceOrigin;
174 desc.fFlags = kRenderTarget_GrSurfaceFlag;
175 desc.fConfig = rt->config();
176 }
177
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000178 desc.fWidth = copyRect.width();
179 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000180
bsalomoneae62002015-07-31 13:59:30 -0700181 static const uint32_t kFlags = 0;
182 SkAutoTUnref<GrTexture> copy(fResourceProvider->createApproxTexture(desc, kFlags));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000183
bsalomone3059732014-10-14 11:47:22 -0700184 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700185 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000186 return false;
187 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000188 SkIPoint dstPoint = {0, 0};
bsalomon6df86402015-06-01 10:41:49 -0700189 this->copySurface(copy, rt, copyRect, dstPoint);
190 dstTexture->setTexture(copy);
191 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
192 return true;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000193}
194
robertphillipsa13e2022015-11-11 12:01:09 -0800195void GrDrawTarget::prepareBatches(GrBatchFlushState* flushState) {
robertphillipsa106c622015-10-16 09:07:06 -0700196 // Semi-usually the drawTargets are already closed at this point, but sometimes Ganesh
197 // needs to flush mid-draw. In that case, the SkGpuDevice's drawTargets won't be closed
198 // but need to be flushed anyway. Closing such drawTargets here will mean new
199 // drawTargets will be created to replace them if the SkGpuDevice(s) write to them again.
200 this->makeClosed();
201
robertphillips498d7ac2015-10-30 10:11:30 -0700202 // Loop over the batches that haven't yet generated their geometry
robertphillips1f0e3502015-11-10 10:19:50 -0800203 for (int i = 0; i < fBatches.count(); ++i) {
bsalomonaecc0182016-03-07 11:50:44 -0800204 if (fBatches[i]) {
205 fBatches[i]->prepare(flushState);
206 }
bsalomon512be532015-09-10 10:42:55 -0700207 }
robertphillipsa13e2022015-11-11 12:01:09 -0800208}
bsalomon512be532015-09-10 10:42:55 -0700209
robertphillipsa13e2022015-11-11 12:01:09 -0800210void GrDrawTarget::drawBatches(GrBatchFlushState* flushState) {
bsalomon512be532015-09-10 10:42:55 -0700211 // Draw all the generated geometry.
bsalomon6dea83f2015-12-03 12:58:06 -0800212 SkRandom random;
egdaniel9cb63402016-06-23 08:37:05 -0700213 GrRenderTarget* currentRT = nullptr;
214 SkAutoTDelete<GrGpuCommandBuffer> commandBuffer;
bsalomon512be532015-09-10 10:42:55 -0700215 for (int i = 0; i < fBatches.count(); ++i) {
bsalomonaecc0182016-03-07 11:50:44 -0800216 if (!fBatches[i]) {
217 continue;
218 }
egdaniel9cb63402016-06-23 08:37:05 -0700219 if (fBatches[i]->renderTarget() != currentRT) {
220 if (commandBuffer) {
221 commandBuffer->end();
222 // For now just use size of whole render target, but this should be updated to
223 // only be the actual bounds of the various draws.
224 SkIRect bounds = SkIRect::MakeWH(currentRT->width(), currentRT->height());
225 commandBuffer->submit(bounds);
226 commandBuffer.reset();
227 }
228 currentRT = fBatches[i]->renderTarget();
229 if (currentRT) {
230 static const GrGpuCommandBuffer::LoadAndStoreInfo kBasicLoadStoreInfo
231 { GrGpuCommandBuffer::LoadOp::kLoad,GrGpuCommandBuffer::StoreOp::kStore,
232 GrColor_ILLEGAL };
233 commandBuffer.reset(fGpu->createCommandBuffer(currentRT,
234 kBasicLoadStoreInfo, // Color
235 kBasicLoadStoreInfo)); // Stencil
236 }
237 flushState->setCommandBuffer(commandBuffer);
238 }
bsalomon6dea83f2015-12-03 12:58:06 -0800239 if (fDrawBatchBounds) {
240 const SkRect& bounds = fBatches[i]->bounds();
241 SkIRect ibounds;
242 bounds.roundOut(&ibounds);
243 // In multi-draw buffer all the batches use the same render target and we won't need to
244 // get the batchs bounds.
245 if (GrRenderTarget* rt = fBatches[i]->renderTarget()) {
246 fGpu->drawDebugWireRect(rt, ibounds, 0xFF000000 | random.nextU());
247 }
248 }
robertphillipsa13e2022015-11-11 12:01:09 -0800249 fBatches[i]->draw(flushState);
bsalomon512be532015-09-10 10:42:55 -0700250 }
egdaniel9cb63402016-06-23 08:37:05 -0700251 if (commandBuffer) {
252 commandBuffer->end();
253 // For now just use size of whole render target, but this should be updated to
254 // only be the actual bounds of the various draws.
255 SkIRect bounds = SkIRect::MakeWH(currentRT->width(), currentRT->height());
256 commandBuffer->submit(bounds);
257 flushState->setCommandBuffer(nullptr);
258 }
ethannicholas22793252016-01-30 09:59:10 -0800259
jvanverthd2d2eb92016-02-17 14:04:46 -0800260 fGpu->finishDrawTarget();
bsalomona73239a2015-04-28 13:35:17 -0700261}
262
bsalomon512be532015-09-10 10:42:55 -0700263void GrDrawTarget::reset() {
264 fBatches.reset();
265}
266
robertphillips391395d2016-03-02 09:26:36 -0800267void GrDrawTarget::drawBatch(const GrPipelineBuilder& pipelineBuilder,
robertphillips976f5f02016-06-03 10:59:20 -0700268 GrDrawContext* drawContext,
cdalton862cff32016-05-12 15:09:48 -0700269 const GrClip& clip,
270 GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800271 // Setup clip
cdalton862cff32016-05-12 15:09:48 -0700272 GrAppliedClip appliedClip;
robertphillips976f5f02016-06-03 10:59:20 -0700273 if (!clip.apply(fContext, pipelineBuilder, drawContext, &batch->bounds(), &appliedClip)) {
cdalton862cff32016-05-12 15:09:48 -0700274 return;
joshualitt4d8da812015-01-28 12:53:54 -0800275 }
robertphillips391395d2016-03-02 09:26:36 -0800276
robertphillips55fdccc2016-06-06 06:16:20 -0700277 // TODO: this is the only remaining usage of the AutoRestoreFragmentProcessorState - remove it
cdaltond4727922015-11-10 12:49:06 -0800278 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
bungeman06ca8ec2016-06-09 08:01:03 -0700279 if (appliedClip.getClipCoverageFragmentProcessor()) {
cdaltond4727922015-11-10 12:49:06 -0800280 arfps.set(&pipelineBuilder);
bungeman06ca8ec2016-06-09 08:01:03 -0700281 arfps.addCoverageFragmentProcessor(sk_ref_sp(appliedClip.getClipCoverageFragmentProcessor()));
cdaltond4727922015-11-10 12:49:06 -0800282 }
joshualitt4d8da812015-01-28 12:53:54 -0800283
bsalomonad792c12015-09-10 11:10:50 -0700284 GrPipeline::CreateArgs args;
cdalton193d9cf2016-05-12 11:52:02 -0700285 args.fPipelineBuilder = &pipelineBuilder;
robertphillips55fdccc2016-06-06 06:16:20 -0700286 args.fDrawContext = drawContext;
cdalton193d9cf2016-05-12 11:52:02 -0700287 args.fCaps = this->caps();
cdalton862cff32016-05-12 15:09:48 -0700288 args.fScissor = &appliedClip.scissorState();
289 args.fHasStencilClip = appliedClip.hasStencilClip();
290 if (pipelineBuilder.hasUserStencilSettings() || appliedClip.hasStencilClip()) {
robertphillips55fdccc2016-06-06 06:16:20 -0700291 if (!fResourceProvider->attachStencilAttachment(drawContext->accessRenderTarget())) {
cdalton17bf8202016-05-13 11:27:15 -0700292 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
293 return;
294 }
cdalton193d9cf2016-05-12 11:52:02 -0700295 }
296 batch->getPipelineOptimizations(&args.fOpts);
297 GrScissorState finalScissor;
cdalton862cff32016-05-12 15:09:48 -0700298 if (args.fOpts.fOverrides.fUsePLSDstRead || fClipBatchToBounds) {
cdalton193d9cf2016-05-12 11:52:02 -0700299 GrGLIRect viewport;
300 viewport.fLeft = 0;
301 viewport.fBottom = 0;
robertphillips55fdccc2016-06-06 06:16:20 -0700302 viewport.fWidth = drawContext->width();
303 viewport.fHeight = drawContext->height();
cdalton193d9cf2016-05-12 11:52:02 -0700304 SkIRect ibounds;
305 ibounds.fLeft = SkTPin(SkScalarFloorToInt(batch->bounds().fLeft), viewport.fLeft,
306 viewport.fWidth);
307 ibounds.fTop = SkTPin(SkScalarFloorToInt(batch->bounds().fTop), viewport.fBottom,
308 viewport.fHeight);
309 ibounds.fRight = SkTPin(SkScalarCeilToInt(batch->bounds().fRight), viewport.fLeft,
310 viewport.fWidth);
311 ibounds.fBottom = SkTPin(SkScalarCeilToInt(batch->bounds().fBottom), viewport.fBottom,
312 viewport.fHeight);
cdalton862cff32016-05-12 15:09:48 -0700313 if (appliedClip.scissorState().enabled()) {
314 const SkIRect& scissorRect = appliedClip.scissorState().rect();
cdalton193d9cf2016-05-12 11:52:02 -0700315 if (!ibounds.intersect(scissorRect)) {
cdalton862cff32016-05-12 15:09:48 -0700316 return;
cdalton193d9cf2016-05-12 11:52:02 -0700317 }
318 }
319 finalScissor.set(ibounds);
320 args.fScissor = &finalScissor;
321 }
bungeman06ca8ec2016-06-09 08:01:03 -0700322 args.fOpts.fColorPOI.completeCalculations(
323 sk_sp_address_as_pointer_address(pipelineBuilder.fColorFragmentProcessors.begin()),
324 pipelineBuilder.numColorFragmentProcessors());
cdalton193d9cf2016-05-12 11:52:02 -0700325 args.fOpts.fCoveragePOI.completeCalculations(
bungeman06ca8ec2016-06-09 08:01:03 -0700326 sk_sp_address_as_pointer_address(pipelineBuilder.fCoverageFragmentProcessors.begin()),
327 pipelineBuilder.numCoverageFragmentProcessors());
robertphillips55fdccc2016-06-06 06:16:20 -0700328 if (!this->setupDstReadIfNecessary(pipelineBuilder, drawContext->accessRenderTarget(),
329 clip, args.fOpts,
330 &args.fDstTexture, batch->bounds())) {
cdalton193d9cf2016-05-12 11:52:02 -0700331 return;
332 }
333
334 if (!batch->installPipeline(args)) {
egdaniele36914c2015-02-13 09:00:33 -0800335 return;
336 }
bsalomonad792c12015-09-10 11:10:50 -0700337
robertphillips498d7ac2015-10-30 10:11:30 -0700338#ifdef ENABLE_MDB
339 SkASSERT(fRenderTarget);
340 batch->pipeline()->addDependenciesTo(fRenderTarget);
341#endif
342
bsalomon512be532015-09-10 10:42:55 -0700343 this->recordBatch(batch);
joshualitt4d8da812015-01-28 12:53:54 -0800344}
345
joshualitt1c735482015-07-13 08:08:25 -0700346void GrDrawTarget::stencilPath(const GrPipelineBuilder& pipelineBuilder,
robertphillips976f5f02016-06-03 10:59:20 -0700347 GrDrawContext* drawContext,
cdalton862cff32016-05-12 15:09:48 -0700348 const GrClip& clip,
joshualittf2384692015-09-10 11:00:51 -0700349 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800350 const GrPath* path,
351 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000352 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700353 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700354 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800355
356 // Setup clip
cdalton862cff32016-05-12 15:09:48 -0700357 GrAppliedClip appliedClip;
robertphillips976f5f02016-06-03 10:59:20 -0700358 if (!clip.apply(fContext, pipelineBuilder, drawContext, nullptr, &appliedClip)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800359 return;
360 }
cdalton862cff32016-05-12 15:09:48 -0700361 // TODO: respect fClipBatchToBounds if we ever start computing bounds here.
joshualitt2c93efe2014-11-06 12:57:13 -0800362
cdalton846c0512016-05-13 10:25:00 -0700363 // Coverage AA does not make sense when rendering to the stencil buffer. The caller should never
364 // attempt this in a situation that would require coverage AA.
bungeman06ca8ec2016-06-09 08:01:03 -0700365 SkASSERT(!appliedClip.getClipCoverageFragmentProcessor());
bsalomon0ba8c242015-10-07 09:20:28 -0700366
robertphillips55fdccc2016-06-06 06:16:20 -0700367 GrStencilAttachment* stencilAttachment = fResourceProvider->attachStencilAttachment(
368 drawContext->accessRenderTarget());
cdalton17bf8202016-05-13 11:27:15 -0700369 if (!stencilAttachment) {
370 SkDebugf("ERROR creating stencil attachment. Draw skipped.\n");
371 return;
372 }
joshualitt2c93efe2014-11-06 12:57:13 -0800373
joshualittf2384692015-09-10 11:00:51 -0700374 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
bsalomona44919e2015-08-18 13:28:19 -0700375 pipelineBuilder.isHWAntialias(),
cdalton193d9cf2016-05-12 11:52:02 -0700376 fill,
cdalton862cff32016-05-12 15:09:48 -0700377 appliedClip.hasStencilClip(),
cdalton93a379b2016-05-11 13:58:08 -0700378 stencilAttachment->bits(),
cdalton862cff32016-05-12 15:09:48 -0700379 appliedClip.scissorState(),
robertphillips55fdccc2016-06-06 06:16:20 -0700380 drawContext->accessRenderTarget(),
bsalomona44919e2015-08-18 13:28:19 -0700381 path);
bsalomon512be532015-09-10 10:42:55 -0700382 this->recordBatch(batch);
bsalomona44919e2015-08-18 13:28:19 -0700383 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000384}
385
joshualitt9853cce2014-11-17 14:22:48 -0800386void GrDrawTarget::clear(const SkIRect* rect,
387 GrColor color,
388 bool canIgnoreRect,
robertphillips976f5f02016-06-03 10:59:20 -0700389 GrDrawContext* drawContext) {
390 SkIRect rtRect = SkIRect::MakeWH(drawContext->width(), drawContext->height());
egdaniel51c8d402015-08-06 10:54:13 -0700391 SkIRect clippedRect;
392 if (!rect ||
393 (canIgnoreRect && this->caps()->fullClearIsFree()) ||
394 rect->contains(rtRect)) {
395 rect = &rtRect;
396 } else {
397 clippedRect = *rect;
398 if (!clippedRect.intersect(rtRect)) {
399 return;
400 }
401 rect = &clippedRect;
402 }
403
bsalomonb3b9aec2015-09-10 11:16:35 -0700404 if (this->caps()->useDrawInsteadOfClear()) {
bsalomon63b21962014-11-05 07:05:34 -0800405 // This works around a driver bug with clear by drawing a rect instead.
406 // The driver will ignore a clear if it is the only thing rendered to a
407 // target before the target is read.
egdaniel51c8d402015-08-06 10:54:13 -0700408 if (rect == &rtRect) {
robertphillips976f5f02016-06-03 10:59:20 -0700409 drawContext->discard();
bsalomon63b21962014-11-05 07:05:34 -0800410 }
bsalomon63b21962014-11-05 07:05:34 -0800411
robertphillips55fdccc2016-06-06 06:16:20 -0700412 // TODO: flip this into real draw!
egdaniel8dd688b2015-01-22 10:16:09 -0800413 GrPipelineBuilder pipelineBuilder;
bungeman06ca8ec2016-06-09 08:01:03 -0700414 pipelineBuilder.setXPFactory(GrPorterDuffXPFactory::Make(SkXfermode::kSrc_Mode));
joshualitt9853cce2014-11-17 14:22:48 -0800415
joshualitta8b84992016-01-13 13:35:35 -0800416 SkRect scalarRect = SkRect::Make(*rect);
417 SkAutoTUnref<GrDrawBatch> batch(
418 GrRectBatchFactory::CreateNonAAFill(color, SkMatrix::I(), scalarRect,
419 nullptr, nullptr));
robertphillips976f5f02016-06-03 10:59:20 -0700420 this->drawBatch(pipelineBuilder, drawContext, GrNoClip(), batch);
bsalomon53469832015-08-18 09:20:09 -0700421 } else {
robertphillips976f5f02016-06-03 10:59:20 -0700422 GrBatch* batch = new GrClearBatch(*rect, color, drawContext->accessRenderTarget());
bsalomon512be532015-09-10 10:42:55 -0700423 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700424 batch->unref();
425 }
426}
427
428void GrDrawTarget::discard(GrRenderTarget* renderTarget) {
429 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700430 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700431 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700432 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800433 }
434}
435
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000436////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000437
bsalomonb8fea972016-02-16 07:34:17 -0800438bool GrDrawTarget::copySurface(GrSurface* dst,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000439 GrSurface* src,
440 const SkIRect& srcRect,
441 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700442 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
bsalomonb8fea972016-02-16 07:34:17 -0800443 if (!batch) {
444 return false;
445 }
robertphillips498d7ac2015-10-30 10:11:30 -0700446#ifdef ENABLE_MDB
bsalomonb8fea972016-02-16 07:34:17 -0800447 this->addDependency(src);
robertphillips498d7ac2015-10-30 10:11:30 -0700448#endif
449
bsalomonb8fea972016-02-16 07:34:17 -0800450 this->recordBatch(batch);
451 batch->unref();
452 return true;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000453}
454
bsalomon512be532015-09-10 10:42:55 -0700455template <class Left, class Right> static bool intersect(const Left& a, const Right& b) {
456 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom &&
457 b.fLeft <= b.fRight && b.fTop <= b.fBottom);
458 return a.fLeft < b.fRight && b.fLeft < a.fRight && a.fTop < b.fBottom && b.fTop < a.fBottom;
459}
460
461void GrDrawTarget::recordBatch(GrBatch* batch) {
robertphillipsa106c622015-10-16 09:07:06 -0700462 // A closed drawTarget should never receive new/more batches
robertphillips6a186652015-10-20 07:37:58 -0700463 SkASSERT(!this->isClosed());
robertphillipsa106c622015-10-16 09:07:06 -0700464
bsalomon512be532015-09-10 10:42:55 -0700465 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
466 // 1) check every draw
467 // 2) intersect with something
468 // 3) find a 'blocker'
joshualittb0666ad2016-03-08 10:43:41 -0800469 GR_AUDIT_TRAIL_ADDBATCH(fAuditTrail, batch);
bsalomon512be532015-09-10 10:42:55 -0700470 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
joshualitte2bcec32015-09-30 06:22:22 -0700471 "\tBounds LRTB (%f, %f, %f, %f)\n",
bsalomon512be532015-09-10 10:42:55 -0700472 batch->name(),
473 batch->uniqueID(),
474 batch->bounds().fLeft, batch->bounds().fRight,
475 batch->bounds().fTop, batch->bounds().fBottom);
476 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
halcanary9d524f22016-03-29 09:03:52 -0700477 GrBATCH_INFO("\tOutcome:\n");
bsalomon489147c2015-12-14 12:13:09 -0800478 int maxCandidates = SkTMin(fMaxBatchLookback, fBatches.count());
bsalomon512be532015-09-10 10:42:55 -0700479 if (maxCandidates) {
480 int i = 0;
481 while (true) {
482 GrBatch* candidate = fBatches.fromBack(i);
483 // We cannot continue to search backwards if the render target changes
484 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
485 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
486 candidate->name(), candidate->uniqueID());
487 break;
488 }
489 if (candidate->combineIfPossible(batch, *this->caps())) {
490 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
491 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800492 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, candidate, batch);
bsalomon512be532015-09-10 10:42:55 -0700493 return;
494 }
495 // Stop going backwards if we would cause a painter's order violation.
bsalomondb4758c2015-11-23 11:14:20 -0800496 // TODO: The bounds used here do not fully consider the clip. It may be advantageous
497 // to clip each batch's bounds to the clip.
bsalomon512be532015-09-10 10:42:55 -0700498 if (intersect(candidate->bounds(), batch->bounds())) {
499 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
500 candidate->uniqueID());
501 break;
502 }
503 ++i;
504 if (i == maxCandidates) {
505 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
506 break;
507 }
508 }
509 } else {
510 GrBATCH_INFO("\t\tFirstBatch\n");
511 }
joshualitt18d6b752016-02-26 08:07:50 -0800512 GR_AUDIT_TRAIL_BATCHING_RESULT_NEW(fAuditTrail, batch);
bsalomon512be532015-09-10 10:42:55 -0700513 fBatches.push_back().reset(SkRef(batch));
514}
515
bsalomonaecc0182016-03-07 11:50:44 -0800516void GrDrawTarget::forwardCombine() {
517 for (int i = 0; i < fBatches.count() - 2; ++i) {
518 GrBatch* batch = fBatches[i];
519 int maxCandidateIdx = SkTMin(i + fMaxBatchLookahead, fBatches.count() - 1);
520 int j = i + 1;
521 while (true) {
522 GrBatch* candidate = fBatches[j];
523 // We cannot continue to search if the render target changes
524 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
525 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
526 candidate->name(), candidate->uniqueID());
527 break;
528 }
529 if (j == i +1) {
530 // We assume batch would have combined with candidate when the candidate was added
531 // via backwards combining in recordBatch.
532 SkASSERT(!batch->combineIfPossible(candidate, *this->caps()));
533 } else if (batch->combineIfPossible(candidate, *this->caps())) {
534 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
535 candidate->uniqueID());
joshualittb0666ad2016-03-08 10:43:41 -0800536 GR_AUDIT_TRAIL_BATCHING_RESULT_COMBINED(fAuditTrail, batch, candidate);
bsalomonaecc0182016-03-07 11:50:44 -0800537 fBatches[j].reset(SkRef(batch));
538 fBatches[i].reset(nullptr);
539 break;
540 }
541 // Stop going traversing if we would cause a painter's order violation.
542 // TODO: The bounds used here do not fully consider the clip. It may be advantageous
543 // to clip each batch's bounds to the clip.
544 if (intersect(candidate->bounds(), batch->bounds())) {
545 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
546 candidate->uniqueID());
547 break;
548 }
549 ++j;
550 if (j > maxCandidateIdx) {
551 GrBATCH_INFO("\t\tReached max lookahead or end of batch array %d\n", i);
552 break;
553 }
554 }
555 }
556}
557
egdaniele36914c2015-02-13 09:00:33 -0800558///////////////////////////////////////////////////////////////////////////////
559
bsalomonb3b9aec2015-09-10 11:16:35 -0700560void GrDrawTarget::clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* rt) {
halcanary385fe4d2015-08-26 13:07:48 -0700561 GrBatch* batch = new GrClearStencilClipBatch(rect, insideClip, rt);
bsalomon512be532015-09-10 10:42:55 -0700562 this->recordBatch(batch);
bsalomon5ea03632015-08-18 10:33:30 -0700563 batch->unref();
564}