blob: 7497702bebe625a6a41b2069762e8c776fd7f0b0 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
reed@google.comac10a2d2010-12-22 21:39:39 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2010 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
reed@google.comac10a2d2010-12-22 21:39:39 +00007 */
8
joshualittc2893c52015-01-28 06:54:30 -08009#include "GrDrawTarget.h"
joshualitt4d8da812015-01-28 12:53:54 -080010
bsalomoneb1cb5c2015-05-22 08:01:09 -070011#include "GrCaps.h"
bsalomon4061b122015-05-29 10:26:19 -070012#include "GrGpu.h"
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000013#include "GrPath.h"
egdaniele36914c2015-02-13 09:00:33 -080014#include "GrPipeline.h"
joshualittb7133be2015-04-08 09:08:31 -070015#include "GrMemoryPool.h"
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000016#include "GrRenderTarget.h"
bsalomon4061b122015-05-29 10:26:19 -070017#include "GrResourceProvider.h"
bsalomon6bc1b5f2015-02-23 09:06:38 -080018#include "GrRenderTargetPriv.h"
bsalomonafbf2d62014-09-30 12:18:44 -070019#include "GrSurfacePriv.h"
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000020#include "GrTexture.h"
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000021#include "GrVertexBuffer.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000022
bsalomon53469832015-08-18 09:20:09 -070023#include "batches/GrClearBatch.h"
bsalomon872062c2015-08-18 12:12:35 -070024#include "batches/GrCopySurfaceBatch.h"
bsalomon53469832015-08-18 09:20:09 -070025#include "batches/GrDiscardBatch.h"
bsalomon16b99132015-08-13 14:55:50 -070026#include "batches/GrDrawBatch.h"
bsalomonadd79ef2015-08-19 13:26:49 -070027#include "batches/GrDrawPathBatch.h"
joshualittecd1a692015-08-10 10:08:26 -070028#include "batches/GrRectBatchFactory.h"
bsalomona44919e2015-08-18 13:28:19 -070029#include "batches/GrStencilPathBatch.h"
joshualitt74417822015-08-07 11:42:16 -070030
sugoi@google.com5f74cf82012-12-17 21:16:45 +000031#include "SkStrokeRec.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000032
reed@google.comac10a2d2010-12-22 21:39:39 +000033////////////////////////////////////////////////////////////////////////////////
34
robertphillipsa13e2022015-11-11 12:01:09 -080035GrDrawTarget::GrDrawTarget(GrRenderTarget* rt, GrGpu* gpu, GrResourceProvider* resourceProvider)
bsalomon4061b122015-05-29 10:26:19 -070036 : fGpu(SkRef(gpu))
bsalomon4061b122015-05-29 10:26:19 -070037 , fResourceProvider(resourceProvider)
bsalomon512be532015-09-10 10:42:55 -070038 , fFlushing(false)
bsalomon648c6962015-10-23 09:06:59 -070039 , fFlags(0)
robertphillips498d7ac2015-10-30 10:11:30 -070040 , fRenderTarget(rt) {
bsalomonb3b9aec2015-09-10 11:16:35 -070041 // TODO: Stop extracting the context (currently needed by GrClipMaskManager)
42 fContext = fGpu->getContext();
Brian Salomone66fec22015-09-10 14:40:20 -040043 fClipMaskManager.reset(new GrClipMaskManager(this));
robertphillips4beb5c12015-10-20 07:50:00 -070044
robertphillips0dfa62c2015-11-16 06:23:31 -080045 rt->setLastDrawTarget(this);
46
robertphillips4beb5c12015-10-20 07:50:00 -070047#ifdef SK_DEBUG
48 static int debugID = 0;
49 fDebugID = debugID++;
50#endif
bsalomon4061b122015-05-29 10:26:19 -070051}
52
53GrDrawTarget::~GrDrawTarget() {
robertphillips498d7ac2015-10-30 10:11:30 -070054 if (fRenderTarget && this == fRenderTarget->getLastDrawTarget()) {
55 fRenderTarget->setLastDrawTarget(nullptr);
56 }
57
bsalomon4061b122015-05-29 10:26:19 -070058 fGpu->unref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000059}
60
61////////////////////////////////////////////////////////////////////////////////
62
robertphillips6a186652015-10-20 07:37:58 -070063// Add a GrDrawTarget-based dependency
64void GrDrawTarget::addDependency(GrDrawTarget* dependedOn) {
65 SkASSERT(!dependedOn->dependsOn(this)); // loops are bad
66
67 if (this->dependsOn(dependedOn)) {
68 return; // don't add duplicate dependencies
69 }
70
71 *fDependencies.push() = dependedOn;
72}
73
74// Convert from a GrSurface-based dependency to a GrDrawTarget one
75void GrDrawTarget::addDependency(GrSurface* dependedOn) {
76 if (dependedOn->asRenderTarget() && dependedOn->asRenderTarget()->getLastDrawTarget()) {
77 // If it is still receiving dependencies, this DT shouldn't be closed
78 SkASSERT(!this->isClosed());
79
80 GrDrawTarget* dt = dependedOn->asRenderTarget()->getLastDrawTarget();
81 if (dt == this) {
82 // self-read - presumably for dst reads
83 } else {
84 this->addDependency(dt);
85
86 // Can't make it closed in the self-read case
87 dt->makeClosed();
88 }
89 }
90}
91
robertphillips4beb5c12015-10-20 07:50:00 -070092#ifdef SK_DEBUG
93void GrDrawTarget::dump() const {
94 SkDebugf("--------------------------------------------------------------\n");
robertphillipse004bfc2015-11-16 09:06:59 -080095 SkDebugf("node: %d -> RT: %d\n", fDebugID, fRenderTarget ? fRenderTarget->getUniqueID() : -1);
robertphillips4beb5c12015-10-20 07:50:00 -070096 SkDebugf("relies On (%d): ", fDependencies.count());
97 for (int i = 0; i < fDependencies.count(); ++i) {
98 SkDebugf("%d, ", fDependencies[i]->fDebugID);
99 }
100 SkDebugf("\n");
101 SkDebugf("batches (%d):\n", fBatches.count());
102 for (int i = 0; i < fBatches.count(); ++i) {
103#if 0
104 SkDebugf("*******************************\n");
105#endif
106 SkDebugf("%d: %s\n", i, fBatches[i]->name());
107#if 0
108 SkString str = fBatches[i]->dumpInfo();
109 SkDebugf("%s\n", str.c_str());
110#endif
111 }
112}
113#endif
114
bsalomon50785a32015-02-06 07:02:37 -0800115bool GrDrawTarget::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
egdaniele36914c2015-02-13 09:00:33 -0800116 const GrProcOptInfo& colorPOI,
117 const GrProcOptInfo& coveragePOI,
bsalomon6a44c6a2015-05-26 09:49:05 -0700118 GrXferProcessor::DstTexture* dstTexture,
bsalomonad792c12015-09-10 11:10:50 -0700119 const SkRect& batchBounds) {
120 SkRect bounds = batchBounds;
121 bounds.outset(0.5f, 0.5f);
122
bsalomon6a44c6a2015-05-26 09:49:05 -0700123 if (!pipelineBuilder.willXPNeedDstTexture(*this->caps(), colorPOI, coveragePOI)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000124 return true;
125 }
cdalton9954bc32015-04-29 14:17:00 -0700126
bsalomon50785a32015-02-06 07:02:37 -0800127 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
cdalton9954bc32015-04-29 14:17:00 -0700128
129 if (this->caps()->textureBarrierSupport()) {
130 if (GrTexture* rtTex = rt->asTexture()) {
bsalomondc47ff72015-05-26 12:16:59 -0700131 // The render target is a texture, so we can read from it directly in the shader. The XP
cdalton9954bc32015-04-29 14:17:00 -0700132 // will be responsible to detect this situation and request a texture barrier.
bsalomon6a44c6a2015-05-26 09:49:05 -0700133 dstTexture->setTexture(rtTex);
134 dstTexture->setOffset(0, 0);
cdalton9954bc32015-04-29 14:17:00 -0700135 return true;
136 }
137 }
138
139 SkIRect copyRect;
joshualitt44701df2015-02-23 14:44:57 -0800140 pipelineBuilder.clip().getConservativeBounds(rt, &copyRect);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000141
bsalomonad792c12015-09-10 11:10:50 -0700142 SkIRect drawIBounds;
143 bounds.roundOut(&drawIBounds);
144 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000145#ifdef SK_DEBUG
bsalomonb3b9aec2015-09-10 11:16:35 -0700146 GrCapsDebugf(this->caps(), "Missed an early reject. "
147 "Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000148#endif
bsalomonad792c12015-09-10 11:10:50 -0700149 return false;
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000150 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000151
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000152 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
153 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700154 GrSurfaceDesc desc;
bsalomonb3b9aec2015-09-10 11:16:35 -0700155 if (!fGpu->initCopySurfaceDstDesc(rt, &desc)) {
bsalomona73239a2015-04-28 13:35:17 -0700156 desc.fOrigin = kDefault_GrSurfaceOrigin;
157 desc.fFlags = kRenderTarget_GrSurfaceFlag;
158 desc.fConfig = rt->config();
159 }
160
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000161 desc.fWidth = copyRect.width();
162 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000163
bsalomoneae62002015-07-31 13:59:30 -0700164 static const uint32_t kFlags = 0;
165 SkAutoTUnref<GrTexture> copy(fResourceProvider->createApproxTexture(desc, kFlags));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000166
bsalomone3059732014-10-14 11:47:22 -0700167 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700168 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000169 return false;
170 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000171 SkIPoint dstPoint = {0, 0};
bsalomon6df86402015-06-01 10:41:49 -0700172 this->copySurface(copy, rt, copyRect, dstPoint);
173 dstTexture->setTexture(copy);
174 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
175 return true;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000176}
177
robertphillipsa13e2022015-11-11 12:01:09 -0800178void GrDrawTarget::prepareBatches(GrBatchFlushState* flushState) {
bsalomona73239a2015-04-28 13:35:17 -0700179 if (fFlushing) {
180 return;
181 }
182 fFlushing = true;
183
robertphillipsa106c622015-10-16 09:07:06 -0700184 // Semi-usually the drawTargets are already closed at this point, but sometimes Ganesh
185 // needs to flush mid-draw. In that case, the SkGpuDevice's drawTargets won't be closed
186 // but need to be flushed anyway. Closing such drawTargets here will mean new
187 // drawTargets will be created to replace them if the SkGpuDevice(s) write to them again.
188 this->makeClosed();
189
robertphillips498d7ac2015-10-30 10:11:30 -0700190 // Loop over the batches that haven't yet generated their geometry
robertphillips1f0e3502015-11-10 10:19:50 -0800191 for (int i = 0; i < fBatches.count(); ++i) {
robertphillipsa13e2022015-11-11 12:01:09 -0800192 fBatches[i]->prepare(flushState);
bsalomon512be532015-09-10 10:42:55 -0700193 }
robertphillipsa13e2022015-11-11 12:01:09 -0800194}
bsalomon512be532015-09-10 10:42:55 -0700195
robertphillipsa13e2022015-11-11 12:01:09 -0800196void GrDrawTarget::drawBatches(GrBatchFlushState* flushState) {
bsalomon512be532015-09-10 10:42:55 -0700197 // Draw all the generated geometry.
198 for (int i = 0; i < fBatches.count(); ++i) {
robertphillipsa13e2022015-11-11 12:01:09 -0800199 fBatches[i]->draw(flushState);
bsalomon512be532015-09-10 10:42:55 -0700200 }
201
bsalomona73239a2015-04-28 13:35:17 -0700202 fFlushing = false;
bsalomona73239a2015-04-28 13:35:17 -0700203}
204
bsalomon512be532015-09-10 10:42:55 -0700205void GrDrawTarget::reset() {
206 fBatches.reset();
207}
208
bsalomonabd30f52015-08-13 13:34:48 -0700209void GrDrawTarget::drawBatch(const GrPipelineBuilder& pipelineBuilder, GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800210 // Setup clip
joshualitt4d8da812015-01-28 12:53:54 -0800211 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomon0ba8c242015-10-07 09:20:28 -0700212 GrAppliedClip clip;
bsalomone91f7b52015-10-27 06:42:50 -0700213 if (!fClipMaskManager->setupClipping(pipelineBuilder, &ars, &batch->bounds(), &clip)) {
joshualitt4d8da812015-01-28 12:53:54 -0800214 return;
215 }
cdaltond4727922015-11-10 12:49:06 -0800216 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
217 if (clip.clipCoverageFragmentProcessor()) {
218 arfps.set(&pipelineBuilder);
219 arfps.addCoverageFragmentProcessor(clip.clipCoverageFragmentProcessor());
220 }
joshualitt4d8da812015-01-28 12:53:54 -0800221
bsalomonad792c12015-09-10 11:10:50 -0700222 GrPipeline::CreateArgs args;
cdaltond4727922015-11-10 12:49:06 -0800223 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &clip.scissorState(), batch)) {
egdaniele36914c2015-02-13 09:00:33 -0800224 return;
225 }
bsalomonad792c12015-09-10 11:10:50 -0700226
robertphillips498d7ac2015-10-30 10:11:30 -0700227#ifdef ENABLE_MDB
228 SkASSERT(fRenderTarget);
229 batch->pipeline()->addDependenciesTo(fRenderTarget);
230#endif
231
bsalomon512be532015-09-10 10:42:55 -0700232 this->recordBatch(batch);
joshualitt4d8da812015-01-28 12:53:54 -0800233}
234
joshualitt2c93efe2014-11-06 12:57:13 -0800235static const GrStencilSettings& winding_path_stencil_settings() {
236 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
237 kIncClamp_StencilOp,
238 kIncClamp_StencilOp,
239 kAlwaysIfInClip_StencilFunc,
240 0xFFFF, 0xFFFF, 0xFFFF);
241 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
242}
243
244static const GrStencilSettings& even_odd_path_stencil_settings() {
245 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
246 kInvert_StencilOp,
247 kInvert_StencilOp,
248 kAlwaysIfInClip_StencilFunc,
249 0xFFFF, 0xFFFF, 0xFFFF);
250 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
251}
252
253void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700254 const GrStencilAttachment* sb,
joshualitt2c93efe2014-11-06 12:57:13 -0800255 GrStencilSettings* outStencilSettings) {
256
257 switch (fill) {
258 default:
259 SkFAIL("Unexpected path fill.");
260 case GrPathRendering::kWinding_FillType:
261 *outStencilSettings = winding_path_stencil_settings();
262 break;
263 case GrPathRendering::kEvenOdd_FillType:
264 *outStencilSettings = even_odd_path_stencil_settings();
265 break;
266 }
bsalomonb3b9aec2015-09-10 11:16:35 -0700267 fClipMaskManager->adjustPathStencilParams(sb, outStencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800268}
269
joshualitt1c735482015-07-13 08:08:25 -0700270void GrDrawTarget::stencilPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700271 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800272 const GrPath* path,
273 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000274 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700275 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700276 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800277
278 // Setup clip
egdaniel8dd688b2015-01-22 10:16:09 -0800279 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomon0ba8c242015-10-07 09:20:28 -0700280 GrAppliedClip clip;
bsalomone91f7b52015-10-27 06:42:50 -0700281 if (!fClipMaskManager->setupClipping(pipelineBuilder, &ars, nullptr, &clip)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800282 return;
283 }
284
bsalomon0ba8c242015-10-07 09:20:28 -0700285 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
286 if (clip.clipCoverageFragmentProcessor()) {
287 arfps.set(&pipelineBuilder);
288 arfps.addCoverageFragmentProcessor(clip.clipCoverageFragmentProcessor());
289 }
290
joshualitt2c93efe2014-11-06 12:57:13 -0800291 // set stencil settings for path
292 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700293 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700294 GrStencilAttachment* sb = fResourceProvider->attachStencilAttachment(rt);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800295 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800296
joshualittf2384692015-09-10 11:00:51 -0700297 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
bsalomona44919e2015-08-18 13:28:19 -0700298 pipelineBuilder.isHWAntialias(),
bsalomone91f7b52015-10-27 06:42:50 -0700299 stencilSettings, clip.scissorState(),
bsalomona44919e2015-08-18 13:28:19 -0700300 pipelineBuilder.getRenderTarget(),
301 path);
bsalomon512be532015-09-10 10:42:55 -0700302 this->recordBatch(batch);
bsalomona44919e2015-08-18 13:28:19 -0700303 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000304}
305
joshualitt1c735482015-07-13 08:08:25 -0700306void GrDrawTarget::drawPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700307 const SkMatrix& viewMatrix,
308 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800309 const GrPath* path,
310 GrPathRendering::FillType fill) {
bsalomon49f085d2014-09-05 13:34:00 -0700311 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700312 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000313
joshualittf2384692015-09-10 11:00:51 -0700314 GrDrawPathBatchBase* batch = GrDrawPathBatch::Create(viewMatrix, color, path);
bsalomon1fcc01c2015-09-09 09:48:06 -0700315 this->drawPathBatch(pipelineBuilder, batch, fill);
316 batch->unref();
317}
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000318
bsalomon1fcc01c2015-09-09 09:48:06 -0700319void GrDrawTarget::drawPathsFromRange(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700320 const SkMatrix& viewMatrix,
321 const SkMatrix& localMatrix,
322 GrColor color,
cdalton8585dd22015-10-08 08:04:09 -0700323 GrPathRange* range,
bsalomon1fcc01c2015-09-09 09:48:06 -0700324 GrPathRangeDraw* draw,
bsalomonbf074552015-11-23 14:25:19 -0800325 GrPathRendering::FillType fill,
326 const SkRect& bounds) {
cdalton8585dd22015-10-08 08:04:09 -0700327 GrDrawPathBatchBase* batch = GrDrawPathRangeBatch::Create(viewMatrix, localMatrix, color,
bsalomonbf074552015-11-23 14:25:19 -0800328 range, draw, bounds);
bsalomon1fcc01c2015-09-09 09:48:06 -0700329 this->drawPathBatch(pipelineBuilder, batch, fill);
330 batch->unref();
331}
332
333void GrDrawTarget::drawPathBatch(const GrPipelineBuilder& pipelineBuilder,
334 GrDrawPathBatchBase* batch,
335 GrPathRendering::FillType fill) {
bsalomonadd79ef2015-08-19 13:26:49 -0700336 // This looks like drawBatch() but there is an added wrinkle that stencil settings get inserted
bsalomonb3b9aec2015-09-10 11:16:35 -0700337 // after setting up clipping but before onDrawBatch(). TODO: Figure out a better model for
338 // handling stencil settings WRT interactions between pipeline(builder), clipmaskmanager, and
339 // batches.
bsalomonadd79ef2015-08-19 13:26:49 -0700340
egdaniel8dd688b2015-01-22 10:16:09 -0800341 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomon0ba8c242015-10-07 09:20:28 -0700342 GrAppliedClip clip;
bsalomone91f7b52015-10-27 06:42:50 -0700343 if (!fClipMaskManager->setupClipping(pipelineBuilder, &ars, &batch->bounds(), &clip)) {
bsalomonadd79ef2015-08-19 13:26:49 -0700344 return;
joshualitt2c93efe2014-11-06 12:57:13 -0800345 }
346
cdaltond4727922015-11-10 12:49:06 -0800347 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
348 if (clip.clipCoverageFragmentProcessor()) {
349 arfps.set(&pipelineBuilder);
350 arfps.addCoverageFragmentProcessor(clip.clipCoverageFragmentProcessor());
351 }
352
bsalomonadd79ef2015-08-19 13:26:49 -0700353 // Ensure the render target has a stencil buffer and get the stencil settings.
joshualitt2c93efe2014-11-06 12:57:13 -0800354 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700355 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700356 GrStencilAttachment* sb = fResourceProvider->attachStencilAttachment(rt);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800357 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
bsalomonadd79ef2015-08-19 13:26:49 -0700358 batch->setStencilSettings(stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800359
bsalomonad792c12015-09-10 11:10:50 -0700360 GrPipeline::CreateArgs args;
cdaltond4727922015-11-10 12:49:06 -0800361 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &clip.scissorState(), batch)) {
bsalomonadd79ef2015-08-19 13:26:49 -0700362 return;
363 }
egdaniele36914c2015-02-13 09:00:33 -0800364
bsalomon512be532015-09-10 10:42:55 -0700365 this->recordBatch(batch);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000366}
367
joshualittd2b23e02015-08-21 10:53:34 -0700368void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualitt1c735482015-07-13 08:08:25 -0700369 GrColor color,
370 const SkMatrix& viewMatrix,
joshualittb6b513b2015-08-21 10:25:18 -0700371 const SkRect& rect) {
joshualittd2b23e02015-08-21 10:53:34 -0700372 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
373 nullptr, nullptr));
joshualittad17cfc2015-05-05 10:45:57 -0700374 this->drawBatch(pipelineBuilder, batch);
375}
376
joshualittd2b23e02015-08-21 10:53:34 -0700377void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700378 GrColor color,
379 const SkMatrix& viewMatrix,
380 const SkRect& rect,
381 const SkMatrix& localMatrix) {
joshualittd2b23e02015-08-21 10:53:34 -0700382 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
383 nullptr, &localMatrix));
joshualittb6b513b2015-08-21 10:25:18 -0700384 this->drawBatch(pipelineBuilder, batch);
385}
386
joshualittd2b23e02015-08-21 10:53:34 -0700387void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700388 GrColor color,
389 const SkMatrix& viewMatrix,
390 const SkRect& rect,
391 const SkRect& localRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700392 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
393 &localRect, nullptr));
joshualittb6b513b2015-08-21 10:25:18 -0700394 this->drawBatch(pipelineBuilder, batch);
395}
396
397
joshualitt1c735482015-07-13 08:08:25 -0700398void GrDrawTarget::drawAARect(const GrPipelineBuilder& pipelineBuilder,
robertphillipsea461502015-05-26 11:38:03 -0700399 GrColor color,
400 const SkMatrix& viewMatrix,
401 const SkRect& rect,
402 const SkRect& devRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700403 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateAAFill(color, viewMatrix, rect,
bsalomonabd30f52015-08-13 13:34:48 -0700404 devRect));
joshualitt14205b12015-08-10 11:40:56 -0700405 this->drawBatch(pipelineBuilder, batch);
robertphillipsea461502015-05-26 11:38:03 -0700406}
407
joshualitt9853cce2014-11-17 14:22:48 -0800408void GrDrawTarget::clear(const SkIRect* rect,
409 GrColor color,
410 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800411 GrRenderTarget* renderTarget) {
egdaniel51c8d402015-08-06 10:54:13 -0700412 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
413 SkIRect clippedRect;
414 if (!rect ||
415 (canIgnoreRect && this->caps()->fullClearIsFree()) ||
416 rect->contains(rtRect)) {
417 rect = &rtRect;
418 } else {
419 clippedRect = *rect;
420 if (!clippedRect.intersect(rtRect)) {
421 return;
422 }
423 rect = &clippedRect;
424 }
425
bsalomonb3b9aec2015-09-10 11:16:35 -0700426 if (this->caps()->useDrawInsteadOfClear()) {
bsalomon63b21962014-11-05 07:05:34 -0800427 // This works around a driver bug with clear by drawing a rect instead.
428 // The driver will ignore a clear if it is the only thing rendered to a
429 // target before the target is read.
egdaniel51c8d402015-08-06 10:54:13 -0700430 if (rect == &rtRect) {
bsalomon63b21962014-11-05 07:05:34 -0800431 this->discard(renderTarget);
432 }
bsalomon63b21962014-11-05 07:05:34 -0800433
egdaniel8dd688b2015-01-22 10:16:09 -0800434 GrPipelineBuilder pipelineBuilder;
egdanielc4b72722015-11-23 13:20:41 -0800435 pipelineBuilder.setXPFactory(
436 GrPorterDuffXPFactory::Create(SkXfermode::kSrc_Mode))->unref();
egdaniel8dd688b2015-01-22 10:16:09 -0800437 pipelineBuilder.setRenderTarget(renderTarget);
joshualitt9853cce2014-11-17 14:22:48 -0800438
joshualittd2b23e02015-08-21 10:53:34 -0700439 this->drawNonAARect(pipelineBuilder, color, SkMatrix::I(), *rect);
bsalomon53469832015-08-18 09:20:09 -0700440 } else {
halcanary385fe4d2015-08-26 13:07:48 -0700441 GrBatch* batch = new GrClearBatch(*rect, color, renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700442 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700443 batch->unref();
444 }
445}
446
447void GrDrawTarget::discard(GrRenderTarget* renderTarget) {
448 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700449 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700450 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700451 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800452 }
453}
454
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000455////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000456
bsalomon6df86402015-06-01 10:41:49 -0700457void GrDrawTarget::copySurface(GrSurface* dst,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000458 GrSurface* src,
459 const SkIRect& srcRect,
460 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700461 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
462 if (batch) {
robertphillips498d7ac2015-10-30 10:11:30 -0700463#ifdef ENABLE_MDB
464 this->addDependency(src);
465#endif
466
bsalomon512be532015-09-10 10:42:55 -0700467 this->recordBatch(batch);
bsalomon872062c2015-08-18 12:12:35 -0700468 batch->unref();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000469 }
bsalomon@google.comeb851172013-04-15 13:51:00 +0000470}
471
bsalomon512be532015-09-10 10:42:55 -0700472template <class Left, class Right> static bool intersect(const Left& a, const Right& b) {
473 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom &&
474 b.fLeft <= b.fRight && b.fTop <= b.fBottom);
475 return a.fLeft < b.fRight && b.fLeft < a.fRight && a.fTop < b.fBottom && b.fTop < a.fBottom;
476}
477
478void GrDrawTarget::recordBatch(GrBatch* batch) {
robertphillipsa106c622015-10-16 09:07:06 -0700479 // A closed drawTarget should never receive new/more batches
robertphillips6a186652015-10-20 07:37:58 -0700480 SkASSERT(!this->isClosed());
robertphillipsa106c622015-10-16 09:07:06 -0700481
bsalomon512be532015-09-10 10:42:55 -0700482 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
483 // 1) check every draw
484 // 2) intersect with something
485 // 3) find a 'blocker'
486 // Experimentally we have found that most batching occurs within the first 10 comparisons.
487 static const int kMaxLookback = 10;
488
489 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
joshualitte2bcec32015-09-30 06:22:22 -0700490 "\tBounds LRTB (%f, %f, %f, %f)\n",
bsalomon512be532015-09-10 10:42:55 -0700491 batch->name(),
492 batch->uniqueID(),
493 batch->bounds().fLeft, batch->bounds().fRight,
494 batch->bounds().fTop, batch->bounds().fBottom);
495 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
496 GrBATCH_INFO("\tOutcome:\n");
497 int maxCandidates = SkTMin(kMaxLookback, fBatches.count());
498 if (maxCandidates) {
499 int i = 0;
500 while (true) {
501 GrBatch* candidate = fBatches.fromBack(i);
502 // We cannot continue to search backwards if the render target changes
503 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
504 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
505 candidate->name(), candidate->uniqueID());
506 break;
507 }
508 if (candidate->combineIfPossible(batch, *this->caps())) {
509 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
510 candidate->uniqueID());
511 return;
512 }
513 // Stop going backwards if we would cause a painter's order violation.
bsalomondb4758c2015-11-23 11:14:20 -0800514 // TODO: The bounds used here do not fully consider the clip. It may be advantageous
515 // to clip each batch's bounds to the clip.
bsalomon512be532015-09-10 10:42:55 -0700516 if (intersect(candidate->bounds(), batch->bounds())) {
517 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
518 candidate->uniqueID());
519 break;
520 }
521 ++i;
522 if (i == maxCandidates) {
523 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
524 break;
525 }
526 }
527 } else {
528 GrBATCH_INFO("\t\tFirstBatch\n");
529 }
530 fBatches.push_back().reset(SkRef(batch));
531}
532
egdaniele36914c2015-02-13 09:00:33 -0800533///////////////////////////////////////////////////////////////////////////////
534
bsalomonad792c12015-09-10 11:10:50 -0700535bool GrDrawTarget::installPipelineInDrawBatch(const GrPipelineBuilder* pipelineBuilder,
cdaltond4727922015-11-10 12:49:06 -0800536 const GrScissorState* scissor,
537 GrDrawBatch* batch) {
bsalomonad792c12015-09-10 11:10:50 -0700538 GrPipeline::CreateArgs args;
539 args.fPipelineBuilder = pipelineBuilder;
540 args.fCaps = this->caps();
cdaltond4727922015-11-10 12:49:06 -0800541 args.fScissor = scissor;
ethannicholasff210322015-11-24 12:10:10 -0800542 batch->getPipelineOptimizations(&args.fOpts);
543 args.fOpts.fColorPOI.completeCalculations(pipelineBuilder->fColorFragmentProcessors.begin(),
544 pipelineBuilder->numColorFragmentProcessors());
545 args.fOpts.fCoveragePOI.completeCalculations(
546 pipelineBuilder->fCoverageFragmentProcessors.begin(),
547 pipelineBuilder->numCoverageFragmentProcessors());
548 if (!this->setupDstReadIfNecessary(*pipelineBuilder, args.fOpts.fColorPOI,
549 args.fOpts.fCoveragePOI, &args.fDstTexture,
bsalomonad792c12015-09-10 11:10:50 -0700550 batch->bounds())) {
551 return false;
egdaniele36914c2015-02-13 09:00:33 -0800552 }
bsalomonad792c12015-09-10 11:10:50 -0700553
554 if (!batch->installPipeline(args)) {
555 return false;
556 }
557
558 return true;
egdaniele36914c2015-02-13 09:00:33 -0800559}
560
bsalomonb3b9aec2015-09-10 11:16:35 -0700561void GrDrawTarget::clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* rt) {
halcanary385fe4d2015-08-26 13:07:48 -0700562 GrBatch* batch = new GrClearStencilClipBatch(rect, insideClip, rt);
bsalomon512be532015-09-10 10:42:55 -0700563 this->recordBatch(batch);
bsalomon5ea03632015-08-18 10:33:30 -0700564 batch->unref();
565}