blob: 6c9c38605b14b59c69f08b947a4e17ae298a22d9 [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)
bsalomon512be532015-09-10 10:42:55 -070038 , fFlushing(false)
39 , fLastFlushToken(0) {
bsalomonb3b9aec2015-09-10 11:16:35 -070040 // TODO: Stop extracting the context (currently needed by GrClipMaskManager)
41 fContext = fGpu->getContext();
bsalomon4061b122015-05-29 10:26:19 -070042}
43
44GrDrawTarget::~GrDrawTarget() {
45 fGpu->unref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000046}
47
48////////////////////////////////////////////////////////////////////////////////
49
bsalomon50785a32015-02-06 07:02:37 -080050bool GrDrawTarget::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
egdaniele36914c2015-02-13 09:00:33 -080051 const GrProcOptInfo& colorPOI,
52 const GrProcOptInfo& coveragePOI,
bsalomon6a44c6a2015-05-26 09:49:05 -070053 GrXferProcessor::DstTexture* dstTexture,
bsalomonad792c12015-09-10 11:10:50 -070054 const SkRect& batchBounds) {
55 SkRect bounds = batchBounds;
56 bounds.outset(0.5f, 0.5f);
57
bsalomon6a44c6a2015-05-26 09:49:05 -070058 if (!pipelineBuilder.willXPNeedDstTexture(*this->caps(), colorPOI, coveragePOI)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +000059 return true;
60 }
cdalton9954bc32015-04-29 14:17:00 -070061
bsalomon50785a32015-02-06 07:02:37 -080062 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
cdalton9954bc32015-04-29 14:17:00 -070063
64 if (this->caps()->textureBarrierSupport()) {
65 if (GrTexture* rtTex = rt->asTexture()) {
bsalomondc47ff72015-05-26 12:16:59 -070066 // The render target is a texture, so we can read from it directly in the shader. The XP
cdalton9954bc32015-04-29 14:17:00 -070067 // will be responsible to detect this situation and request a texture barrier.
bsalomon6a44c6a2015-05-26 09:49:05 -070068 dstTexture->setTexture(rtTex);
69 dstTexture->setOffset(0, 0);
cdalton9954bc32015-04-29 14:17:00 -070070 return true;
71 }
72 }
73
74 SkIRect copyRect;
joshualitt44701df2015-02-23 14:44:57 -080075 pipelineBuilder.clip().getConservativeBounds(rt, &copyRect);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000076
bsalomonad792c12015-09-10 11:10:50 -070077 SkIRect drawIBounds;
78 bounds.roundOut(&drawIBounds);
79 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000080#ifdef SK_DEBUG
bsalomonb3b9aec2015-09-10 11:16:35 -070081 GrCapsDebugf(this->caps(), "Missed an early reject. "
82 "Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000083#endif
bsalomonad792c12015-09-10 11:10:50 -070084 return false;
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000085 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +000086
commit-bot@chromium.org63150af2013-04-11 22:00:22 +000087 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
88 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -070089 GrSurfaceDesc desc;
bsalomonb3b9aec2015-09-10 11:16:35 -070090 if (!fGpu->initCopySurfaceDstDesc(rt, &desc)) {
bsalomona73239a2015-04-28 13:35:17 -070091 desc.fOrigin = kDefault_GrSurfaceOrigin;
92 desc.fFlags = kRenderTarget_GrSurfaceFlag;
93 desc.fConfig = rt->config();
94 }
95
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +000096 desc.fWidth = copyRect.width();
97 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +000098
bsalomoneae62002015-07-31 13:59:30 -070099 static const uint32_t kFlags = 0;
100 SkAutoTUnref<GrTexture> copy(fResourceProvider->createApproxTexture(desc, kFlags));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000101
bsalomone3059732014-10-14 11:47:22 -0700102 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700103 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000104 return false;
105 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000106 SkIPoint dstPoint = {0, 0};
bsalomon6df86402015-06-01 10:41:49 -0700107 this->copySurface(copy, rt, copyRect, dstPoint);
108 dstTexture->setTexture(copy);
109 dstTexture->setOffset(copyRect.fLeft, copyRect.fTop);
110 return true;
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000111}
112
bsalomona73239a2015-04-28 13:35:17 -0700113void GrDrawTarget::flush() {
114 if (fFlushing) {
115 return;
116 }
117 fFlushing = true;
118
bsalomon512be532015-09-10 10:42:55 -0700119 GrBatchFlushState flushState(fGpu, fResourceProvider, fLastFlushToken);
120
121 // Loop over all batches and generate geometry
122 for (int i = 0; i < fBatches.count(); ++i) {
123 fBatches[i]->prepare(&flushState);
124 }
125
126 // Upload all data to the GPU
127 flushState.preIssueDraws();
128
129 // Draw all the generated geometry.
130 for (int i = 0; i < fBatches.count(); ++i) {
131 fBatches[i]->draw(&flushState);
132 }
133
134 fLastFlushToken = flushState.lastFlushedToken();
bsalomona73239a2015-04-28 13:35:17 -0700135
bsalomona73239a2015-04-28 13:35:17 -0700136 fFlushing = false;
137 this->reset();
138}
139
bsalomon512be532015-09-10 10:42:55 -0700140void GrDrawTarget::reset() {
141 fBatches.reset();
142}
143
bsalomonabd30f52015-08-13 13:34:48 -0700144void GrDrawTarget::drawBatch(const GrPipelineBuilder& pipelineBuilder, GrDrawBatch* batch) {
joshualitt4d8da812015-01-28 12:53:54 -0800145 // Setup clip
146 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700147 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
joshualitt4d8da812015-01-28 12:53:54 -0800148 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700149 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState,
150 &batch->bounds())) {
joshualitt4d8da812015-01-28 12:53:54 -0800151 return;
152 }
153
bsalomonad792c12015-09-10 11:10:50 -0700154 GrPipeline::CreateArgs args;
155 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &scissorState, batch)) {
egdaniele36914c2015-02-13 09:00:33 -0800156 return;
157 }
bsalomonad792c12015-09-10 11:10:50 -0700158
bsalomon512be532015-09-10 10:42:55 -0700159 this->recordBatch(batch);
joshualitt4d8da812015-01-28 12:53:54 -0800160}
161
joshualitt2c93efe2014-11-06 12:57:13 -0800162static const GrStencilSettings& winding_path_stencil_settings() {
163 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
164 kIncClamp_StencilOp,
165 kIncClamp_StencilOp,
166 kAlwaysIfInClip_StencilFunc,
167 0xFFFF, 0xFFFF, 0xFFFF);
168 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
169}
170
171static const GrStencilSettings& even_odd_path_stencil_settings() {
172 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
173 kInvert_StencilOp,
174 kInvert_StencilOp,
175 kAlwaysIfInClip_StencilFunc,
176 0xFFFF, 0xFFFF, 0xFFFF);
177 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
178}
179
180void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
egdaniel8dc7c3a2015-04-16 11:22:42 -0700181 const GrStencilAttachment* sb,
joshualitt2c93efe2014-11-06 12:57:13 -0800182 GrStencilSettings* outStencilSettings) {
183
184 switch (fill) {
185 default:
186 SkFAIL("Unexpected path fill.");
187 case GrPathRendering::kWinding_FillType:
188 *outStencilSettings = winding_path_stencil_settings();
189 break;
190 case GrPathRendering::kEvenOdd_FillType:
191 *outStencilSettings = even_odd_path_stencil_settings();
192 break;
193 }
bsalomonb3b9aec2015-09-10 11:16:35 -0700194 fClipMaskManager->adjustPathStencilParams(sb, outStencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800195}
196
joshualitt1c735482015-07-13 08:08:25 -0700197void GrDrawTarget::stencilPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700198 const SkMatrix& viewMatrix,
joshualitt9853cce2014-11-17 14:22:48 -0800199 const GrPath* path,
200 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000201 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700202 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700203 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800204
205 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800206 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700207 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
egdaniel8dd688b2015-01-22 10:16:09 -0800208 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700209
210 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState, nullptr)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800211 return;
212 }
213
214 // set stencil settings for path
215 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700216 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdaniel8dc7c3a2015-04-16 11:22:42 -0700217 GrStencilAttachment* sb = rt->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800218 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800219
joshualittf2384692015-09-10 11:00:51 -0700220 GrBatch* batch = GrStencilPathBatch::Create(viewMatrix,
bsalomona44919e2015-08-18 13:28:19 -0700221 pipelineBuilder.isHWAntialias(),
222 stencilSettings, scissorState,
223 pipelineBuilder.getRenderTarget(),
224 path);
bsalomon512be532015-09-10 10:42:55 -0700225 this->recordBatch(batch);
bsalomona44919e2015-08-18 13:28:19 -0700226 batch->unref();
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000227}
228
joshualitt1c735482015-07-13 08:08:25 -0700229void GrDrawTarget::drawPath(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700230 const SkMatrix& viewMatrix,
231 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800232 const GrPath* path,
233 GrPathRendering::FillType fill) {
bsalomon49f085d2014-09-05 13:34:00 -0700234 SkASSERT(path);
jvanverthe9c0fc62015-04-29 11:18:05 -0700235 SkASSERT(this->caps()->shaderCaps()->pathRenderingSupport());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000236
joshualittf2384692015-09-10 11:00:51 -0700237 GrDrawPathBatchBase* batch = GrDrawPathBatch::Create(viewMatrix, color, path);
bsalomon1fcc01c2015-09-09 09:48:06 -0700238 this->drawPathBatch(pipelineBuilder, batch, fill);
239 batch->unref();
240}
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000241
bsalomon1fcc01c2015-09-09 09:48:06 -0700242void GrDrawTarget::drawPathsFromRange(const GrPipelineBuilder& pipelineBuilder,
joshualittf2384692015-09-10 11:00:51 -0700243 const SkMatrix& viewMatrix,
244 const SkMatrix& localMatrix,
245 GrColor color,
bsalomon1fcc01c2015-09-09 09:48:06 -0700246 GrPathRangeDraw* draw,
247 GrPathRendering::FillType fill) {
joshualittf2384692015-09-10 11:00:51 -0700248 GrDrawPathBatchBase* batch = GrDrawPathRangeBatch::Create(viewMatrix, localMatrix, color, draw);
bsalomon1fcc01c2015-09-09 09:48:06 -0700249 this->drawPathBatch(pipelineBuilder, batch, fill);
250 batch->unref();
251}
252
253void GrDrawTarget::drawPathBatch(const GrPipelineBuilder& pipelineBuilder,
254 GrDrawPathBatchBase* batch,
255 GrPathRendering::FillType fill) {
bsalomonadd79ef2015-08-19 13:26:49 -0700256 // This looks like drawBatch() but there is an added wrinkle that stencil settings get inserted
bsalomonb3b9aec2015-09-10 11:16:35 -0700257 // after setting up clipping but before onDrawBatch(). TODO: Figure out a better model for
258 // handling stencil settings WRT interactions between pipeline(builder), clipmaskmanager, and
259 // batches.
bsalomonadd79ef2015-08-19 13:26:49 -0700260
bsalomon3e791242014-12-17 13:43:13 -0800261 GrScissorState scissorState;
joshualitt4421a4c2015-07-13 09:36:41 -0700262 GrPipelineBuilder::AutoRestoreFragmentProcessorState arfps;
egdaniel8dd688b2015-01-22 10:16:09 -0800263 GrPipelineBuilder::AutoRestoreStencil ars;
bsalomonb3b9aec2015-09-10 11:16:35 -0700264 if (!fClipMaskManager->setupClipping(pipelineBuilder, &arfps, &ars, &scissorState,
265 &batch->bounds())) {
bsalomonadd79ef2015-08-19 13:26:49 -0700266 return;
joshualitt2c93efe2014-11-06 12:57:13 -0800267 }
268
bsalomonadd79ef2015-08-19 13:26:49 -0700269 // Ensure the render target has a stencil buffer and get the stencil settings.
joshualitt2c93efe2014-11-06 12:57:13 -0800270 GrStencilSettings stencilSettings;
joshualitt1c735482015-07-13 08:08:25 -0700271 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
egdaniel8dc7c3a2015-04-16 11:22:42 -0700272 GrStencilAttachment* sb = rt->renderTargetPriv().attachStencilAttachment();
bsalomon6bc1b5f2015-02-23 09:06:38 -0800273 this->getPathStencilSettingsForFilltype(fill, sb, &stencilSettings);
bsalomonadd79ef2015-08-19 13:26:49 -0700274 batch->setStencilSettings(stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800275
bsalomonad792c12015-09-10 11:10:50 -0700276 GrPipeline::CreateArgs args;
277 if (!this->installPipelineInDrawBatch(&pipelineBuilder, &scissorState, batch)) {
bsalomonadd79ef2015-08-19 13:26:49 -0700278 return;
279 }
egdaniele36914c2015-02-13 09:00:33 -0800280
bsalomon512be532015-09-10 10:42:55 -0700281 this->recordBatch(batch);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000282}
283
joshualittd2b23e02015-08-21 10:53:34 -0700284void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualitt1c735482015-07-13 08:08:25 -0700285 GrColor color,
286 const SkMatrix& viewMatrix,
joshualittb6b513b2015-08-21 10:25:18 -0700287 const SkRect& rect) {
joshualittd2b23e02015-08-21 10:53:34 -0700288 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
289 nullptr, nullptr));
joshualittad17cfc2015-05-05 10:45:57 -0700290 this->drawBatch(pipelineBuilder, batch);
291}
292
joshualittd2b23e02015-08-21 10:53:34 -0700293void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700294 GrColor color,
295 const SkMatrix& viewMatrix,
296 const SkRect& rect,
297 const SkMatrix& localMatrix) {
joshualittd2b23e02015-08-21 10:53:34 -0700298 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
299 nullptr, &localMatrix));
joshualittb6b513b2015-08-21 10:25:18 -0700300 this->drawBatch(pipelineBuilder, batch);
301}
302
joshualittd2b23e02015-08-21 10:53:34 -0700303void GrDrawTarget::drawNonAARect(const GrPipelineBuilder& pipelineBuilder,
joshualittb6b513b2015-08-21 10:25:18 -0700304 GrColor color,
305 const SkMatrix& viewMatrix,
306 const SkRect& rect,
307 const SkRect& localRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700308 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateNonAAFill(color, viewMatrix, rect,
309 &localRect, nullptr));
joshualittb6b513b2015-08-21 10:25:18 -0700310 this->drawBatch(pipelineBuilder, batch);
311}
312
313
joshualitt1c735482015-07-13 08:08:25 -0700314void GrDrawTarget::drawAARect(const GrPipelineBuilder& pipelineBuilder,
robertphillipsea461502015-05-26 11:38:03 -0700315 GrColor color,
316 const SkMatrix& viewMatrix,
317 const SkRect& rect,
318 const SkRect& devRect) {
joshualittd2b23e02015-08-21 10:53:34 -0700319 SkAutoTUnref<GrDrawBatch> batch(GrRectBatchFactory::CreateAAFill(color, viewMatrix, rect,
bsalomonabd30f52015-08-13 13:34:48 -0700320 devRect));
joshualitt14205b12015-08-10 11:40:56 -0700321 this->drawBatch(pipelineBuilder, batch);
robertphillipsea461502015-05-26 11:38:03 -0700322}
323
joshualitt9853cce2014-11-17 14:22:48 -0800324void GrDrawTarget::clear(const SkIRect* rect,
325 GrColor color,
326 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800327 GrRenderTarget* renderTarget) {
egdaniel51c8d402015-08-06 10:54:13 -0700328 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
329 SkIRect clippedRect;
330 if (!rect ||
331 (canIgnoreRect && this->caps()->fullClearIsFree()) ||
332 rect->contains(rtRect)) {
333 rect = &rtRect;
334 } else {
335 clippedRect = *rect;
336 if (!clippedRect.intersect(rtRect)) {
337 return;
338 }
339 rect = &clippedRect;
340 }
341
bsalomonb3b9aec2015-09-10 11:16:35 -0700342 if (this->caps()->useDrawInsteadOfClear()) {
bsalomon63b21962014-11-05 07:05:34 -0800343 // This works around a driver bug with clear by drawing a rect instead.
344 // The driver will ignore a clear if it is the only thing rendered to a
345 // target before the target is read.
egdaniel51c8d402015-08-06 10:54:13 -0700346 if (rect == &rtRect) {
bsalomon63b21962014-11-05 07:05:34 -0800347 this->discard(renderTarget);
348 }
bsalomon63b21962014-11-05 07:05:34 -0800349
egdaniel8dd688b2015-01-22 10:16:09 -0800350 GrPipelineBuilder pipelineBuilder;
351 pipelineBuilder.setRenderTarget(renderTarget);
joshualitt9853cce2014-11-17 14:22:48 -0800352
joshualittd2b23e02015-08-21 10:53:34 -0700353 this->drawNonAARect(pipelineBuilder, color, SkMatrix::I(), *rect);
bsalomon53469832015-08-18 09:20:09 -0700354 } else {
halcanary385fe4d2015-08-26 13:07:48 -0700355 GrBatch* batch = new GrClearBatch(*rect, color, renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700356 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700357 batch->unref();
358 }
359}
360
361void GrDrawTarget::discard(GrRenderTarget* renderTarget) {
362 if (this->caps()->discardRenderTargetSupport()) {
halcanary385fe4d2015-08-26 13:07:48 -0700363 GrBatch* batch = new GrDiscardBatch(renderTarget);
bsalomon512be532015-09-10 10:42:55 -0700364 this->recordBatch(batch);
bsalomon53469832015-08-18 09:20:09 -0700365 batch->unref();
bsalomon63b21962014-11-05 07:05:34 -0800366 }
367}
368
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000369////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000370
bsalomon6df86402015-06-01 10:41:49 -0700371void GrDrawTarget::copySurface(GrSurface* dst,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000372 GrSurface* src,
373 const SkIRect& srcRect,
374 const SkIPoint& dstPoint) {
bsalomon872062c2015-08-18 12:12:35 -0700375 GrBatch* batch = GrCopySurfaceBatch::Create(dst, src, srcRect, dstPoint);
376 if (batch) {
bsalomon512be532015-09-10 10:42:55 -0700377 this->recordBatch(batch);
bsalomon872062c2015-08-18 12:12:35 -0700378 batch->unref();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000379 }
bsalomon@google.comeb851172013-04-15 13:51:00 +0000380}
381
bsalomon512be532015-09-10 10:42:55 -0700382template <class Left, class Right> static bool intersect(const Left& a, const Right& b) {
383 SkASSERT(a.fLeft <= a.fRight && a.fTop <= a.fBottom &&
384 b.fLeft <= b.fRight && b.fTop <= b.fBottom);
385 return a.fLeft < b.fRight && b.fLeft < a.fRight && a.fTop < b.fBottom && b.fTop < a.fBottom;
386}
387
388void GrDrawTarget::recordBatch(GrBatch* batch) {
389 // Check if there is a Batch Draw we can batch with by linearly searching back until we either
390 // 1) check every draw
391 // 2) intersect with something
392 // 3) find a 'blocker'
393 // Experimentally we have found that most batching occurs within the first 10 comparisons.
394 static const int kMaxLookback = 10;
395
396 GrBATCH_INFO("Re-Recording (%s, B%u)\n"
397 "\tBounds (%f, %f, %f, %f)\n",
398 batch->name(),
399 batch->uniqueID(),
400 batch->bounds().fLeft, batch->bounds().fRight,
401 batch->bounds().fTop, batch->bounds().fBottom);
402 GrBATCH_INFO(SkTabString(batch->dumpInfo(), 1).c_str());
403 GrBATCH_INFO("\tOutcome:\n");
404 int maxCandidates = SkTMin(kMaxLookback, fBatches.count());
405 if (maxCandidates) {
406 int i = 0;
407 while (true) {
408 GrBatch* candidate = fBatches.fromBack(i);
409 // We cannot continue to search backwards if the render target changes
410 if (candidate->renderTargetUniqueID() != batch->renderTargetUniqueID()) {
411 GrBATCH_INFO("\t\tBreaking because of (%s, B%u) Rendertarget\n",
412 candidate->name(), candidate->uniqueID());
413 break;
414 }
415 if (candidate->combineIfPossible(batch, *this->caps())) {
416 GrBATCH_INFO("\t\tCombining with (%s, B%u)\n", candidate->name(),
417 candidate->uniqueID());
418 return;
419 }
420 // Stop going backwards if we would cause a painter's order violation.
421 if (intersect(candidate->bounds(), batch->bounds())) {
422 GrBATCH_INFO("\t\tIntersects with (%s, B%u)\n", candidate->name(),
423 candidate->uniqueID());
424 break;
425 }
426 ++i;
427 if (i == maxCandidates) {
428 GrBATCH_INFO("\t\tReached max lookback or beginning of batch array %d\n", i);
429 break;
430 }
431 }
432 } else {
433 GrBATCH_INFO("\t\tFirstBatch\n");
434 }
435 fBatches.push_back().reset(SkRef(batch));
436}
437
egdaniele36914c2015-02-13 09:00:33 -0800438///////////////////////////////////////////////////////////////////////////////
439
bsalomonad792c12015-09-10 11:10:50 -0700440bool GrDrawTarget::installPipelineInDrawBatch(const GrPipelineBuilder* pipelineBuilder,
441 const GrScissorState* scissor,
442 GrDrawBatch* batch) {
443 GrPipeline::CreateArgs args;
444 args.fPipelineBuilder = pipelineBuilder;
445 args.fCaps = this->caps();
446 args.fScissor = scissor;
447 args.fColorPOI = pipelineBuilder->colorProcInfo(batch);
448 args.fCoveragePOI = pipelineBuilder->coverageProcInfo(batch);
449 if (!this->setupDstReadIfNecessary(*pipelineBuilder, args.fColorPOI,
450 args.fCoveragePOI, &args.fDstTexture,
451 batch->bounds())) {
452 return false;
egdaniele36914c2015-02-13 09:00:33 -0800453 }
bsalomonad792c12015-09-10 11:10:50 -0700454
455 if (!batch->installPipeline(args)) {
456 return false;
457 }
458
459 return true;
egdaniele36914c2015-02-13 09:00:33 -0800460}
461
bsalomonb3b9aec2015-09-10 11:16:35 -0700462void GrDrawTarget::clearStencilClip(const SkIRect& rect, bool insideClip, GrRenderTarget* rt) {
halcanary385fe4d2015-08-26 13:07:48 -0700463 GrBatch* batch = new GrClearStencilClipBatch(rect, insideClip, rt);
bsalomon512be532015-09-10 10:42:55 -0700464 this->recordBatch(batch);
bsalomon5ea03632015-08-18 10:33:30 -0700465 batch->unref();
466}