blob: 1edb48c02823a42ea909cd0960214e4f77ea7947 [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
bsalomon4061b122015-05-29 10:26:19 -070035GrDrawTarget::GrDrawTarget(GrGpu* gpu, GrResourceProvider* resourceProvider)
36 : fGpu(SkRef(gpu))
bsalomon4061b122015-05-29 10:26:19 -070037 , fResourceProvider(resourceProvider)
joshualittf6d259b2015-10-02 11:27:14 -070038 , fFlushState(fGpu, fResourceProvider, 0)
bsalomon512be532015-09-10 10:42:55 -070039 , fFlushing(false)
joshualittf6d259b2015-10-02 11:27:14 -070040 , fFirstUnpreparedBatch(0) {
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));
bsalomon4061b122015-05-29 10:26:19 -070044}
45
46GrDrawTarget::~GrDrawTarget() {
47 fGpu->unref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000048}
49
50////////////////////////////////////////////////////////////////////////////////
51
bsalomon50785a32015-02-06 07:02:37 -080052bool GrDrawTarget::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
egdaniele36914c2015-02-13 09:00:33 -080053 const GrProcOptInfo& colorPOI,
54 const GrProcOptInfo& coveragePOI,
bsalomon6a44c6a2015-05-26 09:49:05 -070055 GrXferProcessor::DstTexture* dstTexture,
bsalomonad792c12015-09-10 11:10:50 -070056 const SkRect& batchBounds) {
57 SkRect bounds = batchBounds;
58 bounds.outset(0.5f, 0.5f);
59
bsalomon6a44c6a2015-05-26 09:49:05 -070060 if (!pipelineBuilder.willXPNeedDstTexture(*this->caps(), colorPOI, coveragePOI)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +000061 return true;
62 }
cdalton9954bc32015-04-29 14:17:00 -070063
bsalomon50785a32015-02-06 07:02:37 -080064 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
cdalton9954bc32015-04-29 14:17:00 -070065
66 if (this->caps()->textureBarrierSupport()) {
67 if (GrTexture* rtTex = rt->asTexture()) {
bsalomondc47ff72015-05-26 12:16:59 -070068 // The render target is a texture, so we can read from it directly in the shader. The XP
cdalton9954bc32015-04-29 14:17:00 -070069 // will be responsible to detect this situation and request a texture barrier.
bsalomon6a44c6a2015-05-26 09:49:05 -070070 dstTexture->setTexture(rtTex);
71 dstTexture->setOffset(0, 0);
cdalton9954bc32015-04-29 14:17:00 -070072 return true;
73 }
74 }
75
76 SkIRect copyRect;
joshualitt44701df2015-02-23 14:44:57 -080077 pipelineBuilder.clip().getConservativeBounds(rt, &copyRect);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000078
bsalomonad792c12015-09-10 11:10:50 -070079 SkIRect drawIBounds;
80 bounds.roundOut(&drawIBounds);
81 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000082#ifdef SK_DEBUG
bsalomonb3b9aec2015-09-10 11:16:35 -070083 GrCapsDebugf(this->caps(), "Missed an early reject. "
84 "Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000085#endif
bsalomonad792c12015-09-10 11:10:50 -070086 return false;
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000087 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +000088
commit-bot@chromium.org63150af2013-04-11 22:00:22 +000089 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
90 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -070091 GrSurfaceDesc desc;
bsalomonb3b9aec2015-09-10 11:16:35 -070092 if (!fGpu->initCopySurfaceDstDesc(rt, &desc)) {
bsalomona73239a2015-04-28 13:35:17 -070093 desc.fOrigin = kDefault_GrSurfaceOrigin;
94 desc.fFlags = kRenderTarget_GrSurfaceFlag;
95 desc.fConfig = rt->config();
96 }
97
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000098 desc.fWidth = copyRect.width();
99 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000100
bsalomoneae62002015-07-31 13:59:30 -0700101 static const uint32_t kFlags = 0;
102 SkAutoTUnref<GrTexture> copy(fResourceProvider->createApproxTexture(desc, kFlags));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000103
bsalomone3059732014-10-14 11:47:22 -0700104 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700105 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000106 return false;
107 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000108 SkIPoint dstPoint = {0, 0};
bsalomon6df86402015-06-01 10:41:49 -0700109 this->copySurface(copy, rt, copyRect, dstPoint);
110 dstTexture->setTexture(copy);
111 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
112 return true;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000113}
114
bsalomona73239a2015-04-28 13:35:17 -0700115void GrDrawTarget::flush() {
116 if (fFlushing) {
117 return;
118 }
119 fFlushing = true;
120
bsalomon512be532015-09-10 10:42:55 -0700121 // Loop over all batches and generate geometry
joshualittf6d259b2015-10-02 11:27:14 -0700122 for (; fFirstUnpreparedBatch < fBatches.count(); ++fFirstUnpreparedBatch) {
123 fBatches[fFirstUnpreparedBatch]->prepare(&fFlushState);
bsalomon512be532015-09-10 10:42:55 -0700124 }
125
126 // Upload all data to the GPU
joshualittf6d259b2015-10-02 11:27:14 -0700127 fFlushState.preIssueDraws();
bsalomon512be532015-09-10 10:42:55 -0700128
129 // Draw all the generated geometry.
130 for (int i = 0; i < fBatches.count(); ++i) {
joshualittf6d259b2015-10-02 11:27:14 -0700131 fBatches[i]->draw(&fFlushState);
bsalomon512be532015-09-10 10:42:55 -0700132 }
133
joshualittf6d259b2015-10-02 11:27:14 -0700134 SkASSERT(fFlushState.lastFlushedToken() == fFlushState.currentToken());
135 this->reset();
bsalomona73239a2015-04-28 13:35:17 -0700136
bsalomona73239a2015-04-28 13:35:17 -0700137 fFlushing = false;
bsalomona73239a2015-04-28 13:35:17 -0700138}
139
bsalomon512be532015-09-10 10:42:55 -0700140void GrDrawTarget::reset() {
joshualittf6d259b2015-10-02 11:27:14 -0700141 fFirstUnpreparedBatch = 0;
bsalomon512be532015-09-10 10:42:55 -0700142 fBatches.reset();
joshualittf6d259b2015-10-02 11:27:14 -0700143 fFlushState.reset();
bsalomon512be532015-09-10 10:42:55 -0700144}
145
bsalomonabd30f52015-08-13 13:34:48 -0700146void GrDrawTarget::drawBatch(const GrPipelineBuilder& pipelineBuilder, GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800147 // Setup clip
148 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700149 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
joshualitt4d8da812015-01-28 12:53:54 -0800150 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700151 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState,
152 &batch->bounds())) {
joshualitt4d8da812015-01-28 12:53:54 -0800153 return;
154 }
155
bsalomonad792c12015-09-10 11:10:50 -0700156 GrPipeline::CreateArgs args;
157 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &scissorState, batch)) {
egdaniele36914c2015-02-13 09:00:33 -0800158 return;
159 }
bsalomonad792c12015-09-10 11:10:50 -0700160
bsalomon512be532015-09-10 10:42:55 -0700161 this->recordBatch(batch);
joshualitt4d8da812015-01-28 12:53:54 -0800162}
163
joshualitt2c93efe2014-11-06 12:57:13 -0800164static const GrStencilSettings& winding_path_stencil_settings() {
165 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
166 kIncClamp_StencilOp,
167 kIncClamp_StencilOp,
168 kAlwaysIfInClip_StencilFunc,
169 0xFFFF, 0xFFFF, 0xFFFF);
170 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
171}
172
173static const GrStencilSettings& even_odd_path_stencil_settings() {
174 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
175 kInvert_StencilOp,
176 kInvert_StencilOp,
177 kAlwaysIfInClip_StencilFunc,
178 0xFFFF, 0xFFFF, 0xFFFF);
179 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
180}
181
182void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700183 const GrStencilAttachment* sb,
joshualitt2c93efe2014-11-06 12:57:13 -0800184 GrStencilSettings* outStencilSettings) {
185
186 switch (fill) {
187 default:
188 SkFAIL("Unexpected path fill.");
189 case GrPathRendering::kWinding_FillType:
190 *outStencilSettings = winding_path_stencil_settings();
191 break;
192 case GrPathRendering::kEvenOdd_FillType:
193 *outStencilSettings = even_odd_path_stencil_settings();
194 break;
195 }
bsalomonb3b9aec2015-09-10 11:16:35 -0700196 fClipMaskManager->adjustPathStencilParams(sb, outStencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800197}
198
joshualitt1c735482015-07-13 08:08:25 -0700199void GrDrawTarget::stencilPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700200 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800201 const GrPath* path,
202 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000203 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700204 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700205 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800206
207 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800208 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700209 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
egdaniel8dd688b2015-01-22 10:16:09 -0800210 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700211
212 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState, nullptr)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800213 return;
214 }
215
216 // set stencil settings for path
217 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700218 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700219 GrStencilAttachment* sb = fResourceProvider->attachStencilAttachment(rt);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800220 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800221
joshualittf2384692015-09-10 11:00:51 -0700222 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
bsalomona44919e2015-08-18 13:28:19 -0700223 pipelineBuilder.isHWAntialias(),
224 stencilSettings, scissorState,
225 pipelineBuilder.getRenderTarget(),
226 path);
bsalomon512be532015-09-10 10:42:55 -0700227 this->recordBatch(batch);
bsalomona44919e2015-08-18 13:28:19 -0700228 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000229}
230
joshualitt1c735482015-07-13 08:08:25 -0700231void GrDrawTarget::drawPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700232 const SkMatrix& viewMatrix,
233 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800234 const GrPath* path,
235 GrPathRendering::FillType fill) {
bsalomon49f085d2014-09-05 13:34:00 -0700236 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700237 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000238
joshualittf2384692015-09-10 11:00:51 -0700239 GrDrawPathBatchBase* batch = GrDrawPathBatch::Create(viewMatrix, color, path);
bsalomon1fcc01c2015-09-09 09:48:06 -0700240 this->drawPathBatch(pipelineBuilder, batch, fill);
241 batch->unref();
242}
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000243
bsalomon1fcc01c2015-09-09 09:48:06 -0700244void GrDrawTarget::drawPathsFromRange(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700245 const SkMatrix& viewMatrix,
246 const SkMatrix& localMatrix,
247 GrColor color,
bsalomon1fcc01c2015-09-09 09:48:06 -0700248 GrPathRangeDraw* draw,
249 GrPathRendering::FillType fill) {
joshualittf2384692015-09-10 11:00:51 -0700250 GrDrawPathBatchBase* batch = GrDrawPathRangeBatch::Create(viewMatrix, localMatrix, color, draw);
bsalomon1fcc01c2015-09-09 09:48:06 -0700251 this->drawPathBatch(pipelineBuilder, batch, fill);
252 batch->unref();
253}
254
255void GrDrawTarget::drawPathBatch(const GrPipelineBuilder& pipelineBuilder,
256 GrDrawPathBatchBase* batch,
257 GrPathRendering::FillType fill) {
bsalomonadd79ef2015-08-19 13:26:49 -0700258 // This looks like drawBatch() but there is an added wrinkle that stencil settings get inserted
bsalomonb3b9aec2015-09-10 11:16:35 -0700259 // after setting up clipping but before onDrawBatch(). TODO: Figure out a better model for
260 // handling stencil settings WRT interactions between pipeline(builder), clipmaskmanager, and
261 // batches.
bsalomonadd79ef2015-08-19 13:26:49 -0700262
bsalomon3e791242014-12-17 13:43:13 -0800263 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700264 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
egdaniel8dd688b2015-01-22 10:16:09 -0800265 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700266 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState,
267 &batch->bounds())) {
bsalomonadd79ef2015-08-19 13:26:49 -0700268 return;
joshualitt2c93efe2014-11-06 12:57:13 -0800269 }
270
bsalomonadd79ef2015-08-19 13:26:49 -0700271 // Ensure the render target has a stencil buffer and get the stencil settings.
joshualitt2c93efe2014-11-06 12:57:13 -0800272 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700273 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdanielec00d942015-09-14 12:56:10 -0700274 GrStencilAttachment* sb = fResourceProvider->attachStencilAttachment(rt);
bsalomon6bc1b5f2015-02-23 09:06:38 -0800275 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
bsalomonadd79ef2015-08-19 13:26:49 -0700276 batch->setStencilSettings(stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800277
bsalomonad792c12015-09-10 11:10:50 -0700278 GrPipeline::CreateArgs args;
279 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &scissorState, batch)) {
bsalomonadd79ef2015-08-19 13:26:49 -0700280 return;
281 }
egdaniele36914c2015-02-13 09:00:33 -0800282
bsalomon512be532015-09-10 10:42:55 -0700283 this->recordBatch(batch);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000284}
285
joshualittd2b23e02015-08-21 10:53:34 -0700286void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualitt1c735482015-07-13 08:08:25 -0700287 GrColor color,
288 const SkMatrix& viewMatrix,
joshualittb6b513b2015-08-21 10:25:18 -0700289 const SkRect& rect) {
joshualittd2b23e02015-08-21 10:53:34 -0700290 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
291 nullptr, nullptr));
joshualittad17cfc2015-05-05 10:45:57 -0700292 this->drawBatch(pipelineBuilder, batch);
293}
294
joshualittd2b23e02015-08-21 10:53:34 -0700295void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700296 GrColor color,
297 const SkMatrix& viewMatrix,
298 const SkRect& rect,
299 const SkMatrix& localMatrix) {
joshualittd2b23e02015-08-21 10:53:34 -0700300 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
301 nullptr, &localMatrix));
joshualittb6b513b2015-08-21 10:25:18 -0700302 this->drawBatch(pipelineBuilder, batch);
303}
304
joshualittd2b23e02015-08-21 10:53:34 -0700305void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700306 GrColor color,
307 const SkMatrix& viewMatrix,
308 const SkRect& rect,
309 const SkRect& localRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700310 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
311 &localRect, nullptr));
joshualittb6b513b2015-08-21 10:25:18 -0700312 this->drawBatch(pipelineBuilder, batch);
313}
314
315
joshualitt1c735482015-07-13 08:08:25 -0700316void GrDrawTarget::drawAARect(const GrPipelineBuilder& pipelineBuilder,
robertphillipsea461502015-05-26 11:38:03 -0700317 GrColor color,
318 const SkMatrix& viewMatrix,
319 const SkRect& rect,
320 const SkRect& devRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700321 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateAAFill(color, viewMatrix, rect,
bsalomonabd30f52015-08-13 13:34:48 -0700322 devRect));
joshualitt14205b12015-08-10 11:40:56 -0700323 this->drawBatch(pipelineBuilder, batch);
robertphillipsea461502015-05-26 11:38:03 -0700324}
325
joshualitt9853cce2014-11-17 14:22:48 -0800326void GrDrawTarget::clear(const SkIRect* rect,
327 GrColor color,
328 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800329 GrRenderTarget* renderTarget) {
egdaniel51c8d402015-08-06 10:54:13 -0700330 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
331 SkIRect clippedRect;
332 if (!rect ||
333 (canIgnoreRect && this->caps()->fullClearIsFree()) ||
334 rect->contains(rtRect)) {
335 rect = &rtRect;
336 } else {
337 clippedRect = *rect;
338 if (!clippedRect.intersect(rtRect)) {
339 return;
340 }
341 rect = &clippedRect;
342 }
343
bsalomonb3b9aec2015-09-10 11:16:35 -0700344 if (this->caps()->useDrawInsteadOfClear()) {
bsalomon63b21962014-11-05 07:05:34 -0800345 // This works around a driver bug with clear by drawing a rect instead.
346 // The driver will ignore a clear if it is the only thing rendered to a
347 // target before the target is read.
egdaniel51c8d402015-08-06 10:54:13 -0700348 if (rect == &rtRect) {
bsalomon63b21962014-11-05 07:05:34 -0800349 this->discard(renderTarget);
350 }
bsalomon63b21962014-11-05 07:05:34 -0800351
egdaniel8dd688b2015-01-22 10:16:09 -0800352 GrPipelineBuilder pipelineBuilder;
353 pipelineBuilder.setRenderTarget(renderTarget);
joshualitt9853cce2014-11-17 14:22:48 -0800354
joshualittd2b23e02015-08-21 10:53:34 -0700355 this->drawNonAARect(pipelineBuilder, color, SkMatrix::I(), *rect);
bsalomon53469832015-08-18 09:20:09 -0700356 } else {
halcanary385fe4d2015-08-26 13:07:48 -0700357 GrBatch* batch = new GrClearBatch(*rect, color, renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700358 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700359 batch->unref();
360 }
361}
362
363void GrDrawTarget::discard(GrRenderTarget* renderTarget) {
364 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700365 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700366 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700367 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800368 }
369}
370
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000371////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000372
bsalomon6df86402015-06-01 10:41:49 -0700373void GrDrawTarget::copySurface(GrSurface* dst,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000374 GrSurface* src,
375 const SkIRect& srcRect,
376 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700377 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
378 if (batch) {
bsalomon512be532015-09-10 10:42:55 -0700379 this->recordBatch(batch);
bsalomon872062c2015-08-18 12:12:35 -0700380 batch->unref();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000381 }
bsalomon@google.comeb851172013-04-15 13:51:00 +0000382}
383
bsalomon512be532015-09-10 10:42:55 -0700384template <class Left, class Right> static bool intersect(const Left& a, const Right& b) {
385 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom &&
386 b.fLeft <= b.fRight && b.fTop <= b.fBottom);
387 return a.fLeft < b.fRight && b.fLeft < a.fRight && a.fTop < b.fBottom && b.fTop < a.fBottom;
388}
389
390void GrDrawTarget::recordBatch(GrBatch* batch) {
391 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
392 // 1) check every draw
393 // 2) intersect with something
394 // 3) find a 'blocker'
395 // Experimentally we have found that most batching occurs within the first 10 comparisons.
396 static const int kMaxLookback = 10;
397
398 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
joshualitte2bcec32015-09-30 06:22:22 -0700399 "\tBounds LRTB (%f, %f, %f, %f)\n",
bsalomon512be532015-09-10 10:42:55 -0700400 batch->name(),
401 batch->uniqueID(),
402 batch->bounds().fLeft, batch->bounds().fRight,
403 batch->bounds().fTop, batch->bounds().fBottom);
404 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
405 GrBATCH_INFO("\tOutcome:\n");
406 int maxCandidates = SkTMin(kMaxLookback, fBatches.count());
407 if (maxCandidates) {
408 int i = 0;
409 while (true) {
410 GrBatch* candidate = fBatches.fromBack(i);
411 // We cannot continue to search backwards if the render target changes
412 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
413 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
414 candidate->name(), candidate->uniqueID());
415 break;
416 }
417 if (candidate->combineIfPossible(batch, *this->caps())) {
418 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
419 candidate->uniqueID());
420 return;
421 }
422 // Stop going backwards if we would cause a painter's order violation.
423 if (intersect(candidate->bounds(), batch->bounds())) {
424 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
425 candidate->uniqueID());
426 break;
427 }
428 ++i;
429 if (i == maxCandidates) {
430 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
431 break;
432 }
433 }
434 } else {
435 GrBATCH_INFO("\t\tFirstBatch\n");
436 }
437 fBatches.push_back().reset(SkRef(batch));
joshualittf6d259b2015-10-02 11:27:14 -0700438 if (fBatches.count() > kMaxLookback) {
439 SkASSERT(fBatches.count() - kMaxLookback - fFirstUnpreparedBatch == 1);
440 fBatches[fFirstUnpreparedBatch++]->prepare(&fFlushState);
441 }
bsalomon512be532015-09-10 10:42:55 -0700442}
443
egdaniele36914c2015-02-13 09:00:33 -0800444///////////////////////////////////////////////////////////////////////////////
445
bsalomonad792c12015-09-10 11:10:50 -0700446bool GrDrawTarget::installPipelineInDrawBatch(const GrPipelineBuilder* pipelineBuilder,
447 const GrScissorState* scissor,
448 GrDrawBatch* batch) {
449 GrPipeline::CreateArgs args;
450 args.fPipelineBuilder = pipelineBuilder;
451 args.fCaps = this->caps();
452 args.fScissor = scissor;
453 args.fColorPOI = pipelineBuilder->colorProcInfo(batch);
454 args.fCoveragePOI = pipelineBuilder->coverageProcInfo(batch);
455 if (!this->setupDstReadIfNecessary(*pipelineBuilder, args.fColorPOI,
456 args.fCoveragePOI, &args.fDstTexture,
457 batch->bounds())) {
458 return false;
egdaniele36914c2015-02-13 09:00:33 -0800459 }
bsalomonad792c12015-09-10 11:10:50 -0700460
461 if (!batch->installPipeline(args)) {
462 return false;
463 }
464
465 return true;
egdaniele36914c2015-02-13 09:00:33 -0800466}
467
bsalomonb3b9aec2015-09-10 11:16:35 -0700468void GrDrawTarget::clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* rt) {
halcanary385fe4d2015-08-26 13:07:48 -0700469 GrBatch* batch = new GrClearStencilClipBatch(rect, insideClip, rt);
bsalomon512be532015-09-10 10:42:55 -0700470 this->recordBatch(batch);
bsalomon5ea03632015-08-18 10:33:30 -0700471 batch->unref();
472}