blob: cb60f11c09ecb55fdade3c2f4926865ef3a2d88c [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
11#include "GrBatch.h"
bsalomon@google.com26e18b52013-03-29 19:22:36 +000012#include "GrContext.h"
bsalomon@google.comc26d94f2013-03-25 18:19:00 +000013#include "GrDrawTargetCaps.h"
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +000014#include "GrPath.h"
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +000015#include "GrRenderTarget.h"
bsalomonafbf2d62014-09-30 12:18:44 -070016#include "GrSurfacePriv.h"
bsalomon62c447d2014-08-08 08:08:50 -070017#include "GrTemplates.h"
bsalomon@google.com86afc2a2011-02-16 16:12:19 +000018#include "GrTexture.h"
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000019#include "GrVertexBuffer.h"
reed@google.comac10a2d2010-12-22 21:39:39 +000020
sugoi@google.com5f74cf82012-12-17 21:16:45 +000021#include "SkStrokeRec.h"
sugoi@google.com12b4e272012-12-06 20:13:11 +000022
reed@google.comac10a2d2010-12-22 21:39:39 +000023////////////////////////////////////////////////////////////////////////////////
24
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000025GrDrawTarget::DrawInfo& GrDrawTarget::DrawInfo::operator =(const DrawInfo& di) {
26 fPrimitiveType = di.fPrimitiveType;
27 fStartVertex = di.fStartVertex;
28 fStartIndex = di.fStartIndex;
29 fVertexCount = di.fVertexCount;
30 fIndexCount = di.fIndexCount;
31
32 fInstanceCount = di.fInstanceCount;
33 fVerticesPerInstance = di.fVerticesPerInstance;
34 fIndicesPerInstance = di.fIndicesPerInstance;
35
bsalomon49f085d2014-09-05 13:34:00 -070036 if (di.fDevBounds) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000037 SkASSERT(di.fDevBounds == &di.fDevBoundsStorage);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000038 fDevBoundsStorage = di.fDevBoundsStorage;
39 fDevBounds = &fDevBoundsStorage;
40 } else {
41 fDevBounds = NULL;
42 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +000043
joshualitt7eb8c7b2014-11-18 14:24:27 -080044 this->setVertexBuffer(di.vertexBuffer());
45 this->setIndexBuffer(di.indexBuffer());
46
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000047 return *this;
48}
49
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000050#ifdef SK_DEBUG
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000051bool GrDrawTarget::DrawInfo::isInstanced() const {
52 if (fInstanceCount > 0) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000053 SkASSERT(0 == fIndexCount % fIndicesPerInstance);
54 SkASSERT(0 == fVertexCount % fVerticesPerInstance);
55 SkASSERT(fIndexCount / fIndicesPerInstance == fInstanceCount);
56 SkASSERT(fVertexCount / fVerticesPerInstance == fInstanceCount);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000057 // there is no way to specify a non-zero start index to drawIndexedInstances().
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000058 SkASSERT(0 == fStartIndex);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000059 return true;
60 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000061 SkASSERT(!fVerticesPerInstance);
62 SkASSERT(!fIndicesPerInstance);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000063 return false;
64 }
65}
66#endif
67
68void GrDrawTarget::DrawInfo::adjustInstanceCount(int instanceOffset) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000069 SkASSERT(this->isInstanced());
70 SkASSERT(instanceOffset + fInstanceCount >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000071 fInstanceCount += instanceOffset;
72 fVertexCount = fVerticesPerInstance * fInstanceCount;
73 fIndexCount = fIndicesPerInstance * fInstanceCount;
74}
75
76void GrDrawTarget::DrawInfo::adjustStartVertex(int vertexOffset) {
77 fStartVertex += vertexOffset;
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000078 SkASSERT(fStartVertex >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000079}
80
81void GrDrawTarget::DrawInfo::adjustStartIndex(int indexOffset) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000082 SkASSERT(this->isIndexed());
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000083 fStartIndex += indexOffset;
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000084 SkASSERT(fStartIndex >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000085}
86
87////////////////////////////////////////////////////////////////////////////////
88
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000089#define DEBUG_INVAL_BUFFER 0xdeadcafe
90#define DEBUG_INVAL_START_IDX -1
91
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000092GrDrawTarget::GrDrawTarget(GrContext* context)
93 : fClip(NULL)
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +000094 , fContext(context)
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000095 , fGpuTraceMarkerCount(0) {
bsalomon49f085d2014-09-05 13:34:00 -070096 SkASSERT(context);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000097 GeometrySrcState& geoSrc = fGeoSrcStateStack.push_back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000098#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000099 geoSrc.fVertexCount = DEBUG_INVAL_START_IDX;
100 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
101 geoSrc.fIndexCount = DEBUG_INVAL_START_IDX;
102 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
reed@google.comac10a2d2010-12-22 21:39:39 +0000103#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000104 geoSrc.fVertexSrc = kNone_GeometrySrcType;
105 geoSrc.fIndexSrc = kNone_GeometrySrcType;
106}
107
108GrDrawTarget::~GrDrawTarget() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000109 SkASSERT(1 == fGeoSrcStateStack.count());
humper@google.com0e515772013-01-07 19:54:40 +0000110 SkDEBUGCODE(GeometrySrcState& geoSrc = fGeoSrcStateStack.back());
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000111 SkASSERT(kNone_GeometrySrcType == geoSrc.fIndexSrc);
112 SkASSERT(kNone_GeometrySrcType == geoSrc.fVertexSrc);
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000113}
114
115void GrDrawTarget::releaseGeometry() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000116 int popCnt = fGeoSrcStateStack.count() - 1;
117 while (popCnt) {
118 this->popGeometrySource();
119 --popCnt;
120 }
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000121 this->resetVertexSource();
122 this->resetIndexSource();
reed@google.comac10a2d2010-12-22 21:39:39 +0000123}
124
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000125void GrDrawTarget::setClip(const GrClipData* clip) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000126 fClip = clip;
127}
128
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000129const GrClipData* GrDrawTarget::getClip() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000130 return fClip;
131}
132
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000133bool GrDrawTarget::reserveVertexSpace(size_t vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000134 int vertexCount,
135 void** vertices) {
136 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
137 bool acquired = false;
138 if (vertexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700139 SkASSERT(vertices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000140 this->releasePreviousVertexSource();
141 geoSrc.fVertexSrc = kNone_GeometrySrcType;
reed@google.comac10a2d2010-12-22 21:39:39 +0000142
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000143 acquired = this->onReserveVertexSpace(vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000144 vertexCount,
145 vertices);
reed@google.comac10a2d2010-12-22 21:39:39 +0000146 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000147 if (acquired) {
148 geoSrc.fVertexSrc = kReserved_GeometrySrcType;
149 geoSrc.fVertexCount = vertexCount;
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000150 geoSrc.fVertexSize = vertexSize;
bsalomon49f085d2014-09-05 13:34:00 -0700151 } else if (vertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000152 *vertices = NULL;
153 }
154 return acquired;
155}
156
157bool GrDrawTarget::reserveIndexSpace(int indexCount,
158 void** indices) {
159 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
160 bool acquired = false;
161 if (indexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700162 SkASSERT(indices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000163 this->releasePreviousIndexSource();
164 geoSrc.fIndexSrc = kNone_GeometrySrcType;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000165
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000166 acquired = this->onReserveIndexSpace(indexCount, indices);
167 }
168 if (acquired) {
169 geoSrc.fIndexSrc = kReserved_GeometrySrcType;
170 geoSrc.fIndexCount = indexCount;
bsalomon49f085d2014-09-05 13:34:00 -0700171 } else if (indices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000172 *indices = NULL;
173 }
174 return acquired;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000175
reed@google.comac10a2d2010-12-22 21:39:39 +0000176}
177
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000178bool GrDrawTarget::reserveVertexAndIndexSpace(int vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800179 size_t vertexStride,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000180 int indexCount,
181 void** vertices,
182 void** indices) {
joshualitt9853cce2014-11-17 14:22:48 -0800183 this->willReserveVertexAndIndexSpace(vertexCount, vertexStride, indexCount);
bsalomon@google.come3d70952012-03-13 12:40:53 +0000184 if (vertexCount) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700185 if (!this->reserveVertexSpace(vertexStride, vertexCount, vertices)) {
bsalomon@google.come3d70952012-03-13 12:40:53 +0000186 if (indexCount) {
187 this->resetIndexSource();
188 }
189 return false;
190 }
191 }
192 if (indexCount) {
193 if (!this->reserveIndexSpace(indexCount, indices)) {
194 if (vertexCount) {
195 this->resetVertexSource();
196 }
197 return false;
198 }
199 }
200 return true;
201}
202
joshualitt9853cce2014-11-17 14:22:48 -0800203bool GrDrawTarget::geometryHints(size_t vertexStride,
204 int32_t* vertexCount,
reed@google.comac10a2d2010-12-22 21:39:39 +0000205 int32_t* indexCount) const {
bsalomon49f085d2014-09-05 13:34:00 -0700206 if (vertexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000207 *vertexCount = -1;
208 }
bsalomon49f085d2014-09-05 13:34:00 -0700209 if (indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000210 *indexCount = -1;
211 }
212 return false;
213}
214
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000215void GrDrawTarget::releasePreviousVertexSource() {
216 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
217 switch (geoSrc.fVertexSrc) {
218 case kNone_GeometrySrcType:
219 break;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000220 case kReserved_GeometrySrcType:
221 this->releaseReservedVertexSpace();
222 break;
223 case kBuffer_GeometrySrcType:
224 geoSrc.fVertexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000225#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000226 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
227#endif
228 break;
229 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000230 SkFAIL("Unknown Vertex Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000231 break;
232 }
233}
234
235void GrDrawTarget::releasePreviousIndexSource() {
236 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
237 switch (geoSrc.fIndexSrc) {
238 case kNone_GeometrySrcType: // these two don't require
239 break;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000240 case kReserved_GeometrySrcType:
241 this->releaseReservedIndexSpace();
242 break;
243 case kBuffer_GeometrySrcType:
244 geoSrc.fIndexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000245#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000246 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
247#endif
248 break;
249 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000250 SkFAIL("Unknown Index Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000251 break;
252 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000253}
254
joshualitt9853cce2014-11-17 14:22:48 -0800255void GrDrawTarget::setVertexSourceToBuffer(const GrVertexBuffer* buffer, size_t vertexStride) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000256 this->releasePreviousVertexSource();
257 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
258 geoSrc.fVertexSrc = kBuffer_GeometrySrcType;
259 geoSrc.fVertexBuffer = buffer;
260 buffer->ref();
joshualitt9853cce2014-11-17 14:22:48 -0800261 geoSrc.fVertexSize = vertexStride;
reed@google.comac10a2d2010-12-22 21:39:39 +0000262}
263
264void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000265 this->releasePreviousIndexSource();
266 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
267 geoSrc.fIndexSrc = kBuffer_GeometrySrcType;
268 geoSrc.fIndexBuffer = buffer;
269 buffer->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000270}
271
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000272void GrDrawTarget::resetVertexSource() {
273 this->releasePreviousVertexSource();
274 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
275 geoSrc.fVertexSrc = kNone_GeometrySrcType;
276}
277
278void GrDrawTarget::resetIndexSource() {
279 this->releasePreviousIndexSource();
280 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
281 geoSrc.fIndexSrc = kNone_GeometrySrcType;
282}
283
284void GrDrawTarget::pushGeometrySource() {
285 this->geometrySourceWillPush();
286 GeometrySrcState& newState = fGeoSrcStateStack.push_back();
287 newState.fIndexSrc = kNone_GeometrySrcType;
288 newState.fVertexSrc = kNone_GeometrySrcType;
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000289#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000290 newState.fVertexCount = ~0;
291 newState.fVertexBuffer = (GrVertexBuffer*)~0;
292 newState.fIndexCount = ~0;
293 newState.fIndexBuffer = (GrIndexBuffer*)~0;
294#endif
295}
296
297void GrDrawTarget::popGeometrySource() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000298 // if popping last element then pops are unbalanced with pushes
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000299 SkASSERT(fGeoSrcStateStack.count() > 1);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000300
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000301 this->geometrySourceWillPop(fGeoSrcStateStack.fromBack(1));
302 this->releasePreviousVertexSource();
303 this->releasePreviousIndexSource();
304 fGeoSrcStateStack.pop_back();
305}
306
307////////////////////////////////////////////////////////////////////////////////
308
egdaniel8dd688b2015-01-22 10:16:09 -0800309bool GrDrawTarget::checkDraw(const GrPipelineBuilder& pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800310 const GrGeometryProcessor* gp,
joshualitt9853cce2014-11-17 14:22:48 -0800311 GrPrimitiveType type,
312 int startVertex,
313 int startIndex,
314 int vertexCount,
bsalomon@google.come8262622011-11-07 02:30:51 +0000315 int indexCount) const {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000316#ifdef SK_DEBUG
bsalomon@google.come8262622011-11-07 02:30:51 +0000317 const GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000318 int maxVertex = startVertex + vertexCount;
319 int maxValidVertex;
320 switch (geoSrc.fVertexSrc) {
321 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000322 SkFAIL("Attempting to draw without vertex src.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000323 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000324 maxValidVertex = geoSrc.fVertexCount;
325 break;
326 case kBuffer_GeometrySrcType:
egdaniel8dd688b2015-01-22 10:16:09 -0800327 maxValidVertex = static_cast<int>(geoSrc.fVertexBuffer->gpuMemorySize() /
328 geoSrc.fVertexSize);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000329 break;
330 }
331 if (maxVertex > maxValidVertex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000332 SkFAIL("Drawing outside valid vertex range.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000333 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000334 if (indexCount > 0) {
335 int maxIndex = startIndex + indexCount;
336 int maxValidIndex;
337 switch (geoSrc.fIndexSrc) {
338 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000339 SkFAIL("Attempting to draw indexed geom without index src.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000340 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.come8262622011-11-07 02:30:51 +0000341 maxValidIndex = geoSrc.fIndexCount;
342 break;
343 case kBuffer_GeometrySrcType:
egdaniel8dd688b2015-01-22 10:16:09 -0800344 maxValidIndex = static_cast<int>(geoSrc.fIndexBuffer->gpuMemorySize() /
345 sizeof(uint16_t));
bsalomon@google.come8262622011-11-07 02:30:51 +0000346 break;
347 }
348 if (maxIndex > maxValidIndex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000349 SkFAIL("Index reads outside valid index range.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000350 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000351 }
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000352
egdaniel8dd688b2015-01-22 10:16:09 -0800353 SkASSERT(pipelineBuilder.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000354
joshualitt56995b52014-12-11 15:44:02 -0800355 if (gp) {
joshualittb0a8a372014-09-23 09:50:21 -0700356 int numTextures = gp->numTextures();
joshualittbd769d02014-09-04 08:56:46 -0700357 for (int t = 0; t < numTextures; ++t) {
joshualittb0a8a372014-09-23 09:50:21 -0700358 GrTexture* texture = gp->texture(t);
egdaniel8dd688b2015-01-22 10:16:09 -0800359 SkASSERT(texture->asRenderTarget() != pipelineBuilder.getRenderTarget());
joshualittbd769d02014-09-04 08:56:46 -0700360 }
361 }
362
egdaniel8dd688b2015-01-22 10:16:09 -0800363 for (int s = 0; s < pipelineBuilder.numColorStages(); ++s) {
364 const GrProcessor* effect = pipelineBuilder.getColorStage(s).processor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000365 int numTextures = effect->numTextures();
366 for (int t = 0; t < numTextures; ++t) {
367 GrTexture* texture = effect->texture(t);
egdaniel8dd688b2015-01-22 10:16:09 -0800368 SkASSERT(texture->asRenderTarget() != pipelineBuilder.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000369 }
370 }
egdaniel8dd688b2015-01-22 10:16:09 -0800371 for (int s = 0; s < pipelineBuilder.numCoverageStages(); ++s) {
372 const GrProcessor* effect = pipelineBuilder.getCoverageStage(s).processor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000373 int numTextures = effect->numTextures();
374 for (int t = 0; t < numTextures; ++t) {
375 GrTexture* texture = effect->texture(t);
egdaniel8dd688b2015-01-22 10:16:09 -0800376 SkASSERT(texture->asRenderTarget() != pipelineBuilder.getRenderTarget());
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000377 }
378 }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000379
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000380#endif
egdaniel8dd688b2015-01-22 10:16:09 -0800381 if (NULL == pipelineBuilder.getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000382 return false;
383 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000384 return true;
385}
386
bsalomon50785a32015-02-06 07:02:37 -0800387bool GrDrawTarget::setupDstReadIfNecessary(const GrPipelineBuilder& pipelineBuilder,
joshualitt9853cce2014-11-17 14:22:48 -0800388 GrDeviceCoordTexture* dstCopy,
389 const SkRect* drawBounds) {
bsalomon50785a32015-02-06 07:02:37 -0800390 if (!pipelineBuilder.willXPNeedDstCopy(*this->caps())) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000391 return true;
392 }
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000393 SkIRect copyRect;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000394 const GrClipData* clip = this->getClip();
bsalomon50785a32015-02-06 07:02:37 -0800395 GrRenderTarget* rt = pipelineBuilder.getRenderTarget();
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000396 clip->getConservativeBounds(rt, &copyRect);
397
bsalomon49f085d2014-09-05 13:34:00 -0700398 if (drawBounds) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000399 SkIRect drawIBounds;
400 drawBounds->roundOut(&drawIBounds);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000401 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000402#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700403 SkDebugf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000404#endif
405 return false;
406 }
407 } else {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000408#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700409 //SkDebugf("No dev bounds when dst copy is made.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000410#endif
411 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000412
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000413 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
414 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700415 GrSurfaceDesc desc;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000416 this->initCopySurfaceDstDesc(rt, &desc);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000417 desc.fWidth = copyRect.width();
418 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000419
bsalomone3059732014-10-14 11:47:22 -0700420 SkAutoTUnref<GrTexture> copy(
421 fContext->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000422
bsalomone3059732014-10-14 11:47:22 -0700423 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700424 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000425 return false;
426 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000427 SkIPoint dstPoint = {0, 0};
bsalomone3059732014-10-14 11:47:22 -0700428 if (this->copySurface(copy, rt, copyRect, dstPoint)) {
429 dstCopy->setTexture(copy);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000430 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000431 return true;
432 } else {
433 return false;
434 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000435}
436
egdaniel8dd688b2015-01-22 10:16:09 -0800437void GrDrawTarget::drawIndexed(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800438 const GrGeometryProcessor* gp,
joshualitt9853cce2014-11-17 14:22:48 -0800439 GrPrimitiveType type,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000440 int startVertex,
441 int startIndex,
442 int vertexCount,
443 int indexCount,
444 const SkRect* devBounds) {
egdaniel8dd688b2015-01-22 10:16:09 -0800445 SkASSERT(pipelineBuilder);
joshualitt9853cce2014-11-17 14:22:48 -0800446 if (indexCount > 0 &&
egdaniel8dd688b2015-01-22 10:16:09 -0800447 this->checkDraw(*pipelineBuilder, gp, type, startVertex, startIndex, vertexCount,
448 indexCount)) {
joshualitt9853cce2014-11-17 14:22:48 -0800449
joshualitt2c93efe2014-11-06 12:57:13 -0800450 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800451 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800452 GrPipelineBuilder::AutoRestoreEffects are;
453 GrPipelineBuilder::AutoRestoreStencil ars;
454 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, devBounds)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800455 return;
456 }
457
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000458 DrawInfo info;
459 info.fPrimitiveType = type;
460 info.fStartVertex = startVertex;
461 info.fStartIndex = startIndex;
462 info.fVertexCount = vertexCount;
463 info.fIndexCount = indexCount;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000464
465 info.fInstanceCount = 0;
466 info.fVerticesPerInstance = 0;
467 info.fIndicesPerInstance = 0;
468
bsalomon49f085d2014-09-05 13:34:00 -0700469 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000470 info.setDevBounds(*devBounds);
471 }
joshualitt9176e2c2014-11-20 07:28:52 -0800472
joshualitt2e3b3e32014-12-09 13:31:14 -0800473 this->setDrawBuffers(&info, gp->getVertexStride());
joshualitt7eb8c7b2014-11-18 14:24:27 -0800474
bsalomon50785a32015-02-06 07:02:37 -0800475 this->onDraw(*pipelineBuilder, gp, info, scissorState);
bsalomon@google.com82145872011-08-23 14:32:40 +0000476 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000477}
478
egdaniel8dd688b2015-01-22 10:16:09 -0800479void GrDrawTarget::drawNonIndexed(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800480 const GrGeometryProcessor* gp,
joshualitt9853cce2014-11-17 14:22:48 -0800481 GrPrimitiveType type,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000482 int startVertex,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000483 int vertexCount,
484 const SkRect* devBounds) {
egdaniel8dd688b2015-01-22 10:16:09 -0800485 SkASSERT(pipelineBuilder);
486 if (vertexCount > 0 && this->checkDraw(*pipelineBuilder, gp, type, startVertex, -1, vertexCount,
487 -1)) {
joshualitt9853cce2014-11-17 14:22:48 -0800488
joshualitt2c93efe2014-11-06 12:57:13 -0800489 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800490 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800491 GrPipelineBuilder::AutoRestoreEffects are;
492 GrPipelineBuilder::AutoRestoreStencil ars;
493 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, devBounds)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800494 return;
495 }
496
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000497 DrawInfo info;
498 info.fPrimitiveType = type;
499 info.fStartVertex = startVertex;
500 info.fStartIndex = 0;
501 info.fVertexCount = vertexCount;
502 info.fIndexCount = 0;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000503
504 info.fInstanceCount = 0;
505 info.fVerticesPerInstance = 0;
506 info.fIndicesPerInstance = 0;
507
bsalomon49f085d2014-09-05 13:34:00 -0700508 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000509 info.setDevBounds(*devBounds);
510 }
joshualitt2c93efe2014-11-06 12:57:13 -0800511
joshualitt2e3b3e32014-12-09 13:31:14 -0800512 this->setDrawBuffers(&info, gp->getVertexStride());
joshualitt7eb8c7b2014-11-18 14:24:27 -0800513
bsalomon50785a32015-02-06 07:02:37 -0800514 this->onDraw(*pipelineBuilder, gp, info, scissorState);
bsalomon@google.com82145872011-08-23 14:32:40 +0000515 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000516}
517
joshualitt4d8da812015-01-28 12:53:54 -0800518
519void GrDrawTarget::drawBatch(GrPipelineBuilder* pipelineBuilder,
520 GrBatch* batch,
521 const SkRect* devBounds) {
522 SkASSERT(pipelineBuilder);
523 // TODO some kind of checkdraw, but not at this level
524
525 // Setup clip
526 GrScissorState scissorState;
527 GrPipelineBuilder::AutoRestoreEffects are;
528 GrPipelineBuilder::AutoRestoreStencil ars;
529 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, devBounds)) {
530 return;
531 }
532
bsalomon50785a32015-02-06 07:02:37 -0800533 this->onDrawBatch(batch, *pipelineBuilder, scissorState, devBounds);
joshualitt4d8da812015-01-28 12:53:54 -0800534}
535
joshualitt2c93efe2014-11-06 12:57:13 -0800536static const GrStencilSettings& winding_path_stencil_settings() {
537 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
538 kIncClamp_StencilOp,
539 kIncClamp_StencilOp,
540 kAlwaysIfInClip_StencilFunc,
541 0xFFFF, 0xFFFF, 0xFFFF);
542 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
543}
544
545static const GrStencilSettings& even_odd_path_stencil_settings() {
546 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
547 kInvert_StencilOp,
548 kInvert_StencilOp,
549 kAlwaysIfInClip_StencilFunc,
550 0xFFFF, 0xFFFF, 0xFFFF);
551 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
552}
553
554void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
joshualitt9853cce2014-11-17 14:22:48 -0800555 const GrStencilBuffer* sb,
joshualitt2c93efe2014-11-06 12:57:13 -0800556 GrStencilSettings* outStencilSettings) {
557
558 switch (fill) {
559 default:
560 SkFAIL("Unexpected path fill.");
561 case GrPathRendering::kWinding_FillType:
562 *outStencilSettings = winding_path_stencil_settings();
563 break;
564 case GrPathRendering::kEvenOdd_FillType:
565 *outStencilSettings = even_odd_path_stencil_settings();
566 break;
567 }
joshualitt9853cce2014-11-17 14:22:48 -0800568 this->clipMaskManager()->adjustPathStencilParams(sb, outStencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800569}
570
egdaniel8dd688b2015-01-22 10:16:09 -0800571void GrDrawTarget::stencilPath(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800572 const GrPathProcessor* pathProc,
joshualitt9853cce2014-11-17 14:22:48 -0800573 const GrPath* path,
574 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000575 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700576 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000577 SkASSERT(this->caps()->pathRenderingSupport());
egdaniel8dd688b2015-01-22 10:16:09 -0800578 SkASSERT(pipelineBuilder);
joshualitt2c93efe2014-11-06 12:57:13 -0800579
580 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800581 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800582 GrPipelineBuilder::AutoRestoreEffects are;
583 GrPipelineBuilder::AutoRestoreStencil ars;
584 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, NULL)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800585 return;
586 }
587
588 // set stencil settings for path
589 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800590 this->getPathStencilSettingsForFilltype(fill,
egdaniel8dd688b2015-01-22 10:16:09 -0800591 pipelineBuilder->getRenderTarget()->getStencilBuffer(),
joshualitt9853cce2014-11-17 14:22:48 -0800592 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800593
egdaniel8dd688b2015-01-22 10:16:09 -0800594 this->onStencilPath(*pipelineBuilder, pathProc, path, scissorState, stencilSettings);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000595}
596
egdaniel8dd688b2015-01-22 10:16:09 -0800597void GrDrawTarget::drawPath(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800598 const GrPathProcessor* pathProc,
joshualitt9853cce2014-11-17 14:22:48 -0800599 const GrPath* path,
600 GrPathRendering::FillType fill) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000601 // TODO: extract portions of checkDraw that are relevant to path rendering.
bsalomon49f085d2014-09-05 13:34:00 -0700602 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000603 SkASSERT(this->caps()->pathRenderingSupport());
egdaniel8dd688b2015-01-22 10:16:09 -0800604 SkASSERT(pipelineBuilder);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000605
joshualitt92e496f2014-10-31 13:56:50 -0700606 SkRect devBounds = path->getBounds();
joshualitt8059eb92014-12-29 15:10:07 -0800607 pathProc->viewMatrix().mapRect(&devBounds);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000608
joshualitt2c93efe2014-11-06 12:57:13 -0800609 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800610 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800611 GrPipelineBuilder::AutoRestoreEffects are;
612 GrPipelineBuilder::AutoRestoreStencil ars;
613 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, &devBounds)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800614 return;
615 }
616
617 // set stencil settings for path
618 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800619 this->getPathStencilSettingsForFilltype(fill,
egdaniel8dd688b2015-01-22 10:16:09 -0800620 pipelineBuilder->getRenderTarget()->getStencilBuffer(),
joshualitt9853cce2014-11-17 14:22:48 -0800621 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800622
egdaniel8dd688b2015-01-22 10:16:09 -0800623 this->onDrawPath(*pipelineBuilder, pathProc, path, scissorState, stencilSettings,
bsalomon50785a32015-02-06 07:02:37 -0800624 &devBounds);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000625}
626
egdaniel8dd688b2015-01-22 10:16:09 -0800627void GrDrawTarget::drawPaths(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800628 const GrPathProcessor* pathProc,
joshualitt9853cce2014-11-17 14:22:48 -0800629 const GrPathRange* pathRange,
cdalton55b24af2014-11-25 11:00:56 -0800630 const void* indices,
631 PathIndexType indexType,
632 const float transformValues[],
633 PathTransformType transformType,
joshualitt9853cce2014-11-17 14:22:48 -0800634 int count,
joshualitt92e496f2014-10-31 13:56:50 -0700635 GrPathRendering::FillType fill) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000636 SkASSERT(this->caps()->pathRenderingSupport());
bsalomon49f085d2014-09-05 13:34:00 -0700637 SkASSERT(pathRange);
638 SkASSERT(indices);
cdalton55b24af2014-11-25 11:00:56 -0800639 SkASSERT(0 == reinterpret_cast<long>(indices) % GrPathRange::PathIndexSizeInBytes(indexType));
640 SkASSERT(transformValues);
egdaniel8dd688b2015-01-22 10:16:09 -0800641 SkASSERT(pipelineBuilder);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000642
joshualitt2c93efe2014-11-06 12:57:13 -0800643 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800644 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800645 GrPipelineBuilder::AutoRestoreEffects are;
646 GrPipelineBuilder::AutoRestoreStencil ars;
joshualitt2c93efe2014-11-06 12:57:13 -0800647
egdaniel8dd688b2015-01-22 10:16:09 -0800648 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, NULL)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800649 return;
650 }
651
652 // set stencil settings for path
653 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800654 this->getPathStencilSettingsForFilltype(fill,
egdaniel8dd688b2015-01-22 10:16:09 -0800655 pipelineBuilder->getRenderTarget()->getStencilBuffer(),
joshualitt9853cce2014-11-17 14:22:48 -0800656 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800657
bsalomon50785a32015-02-06 07:02:37 -0800658 // Don't compute a bounding box for dst copy texture, we'll opt
cdaltonb85a0aa2014-07-21 15:32:44 -0700659 // instead for it to just copy the entire dst. Realistically this is a moot
660 // point, because any context that supports NV_path_rendering will also
661 // support NV_blend_equation_advanced.
egdaniel8dd688b2015-01-22 10:16:09 -0800662 this->onDrawPaths(*pipelineBuilder, pathProc, pathRange, indices, indexType, transformValues,
bsalomon50785a32015-02-06 07:02:37 -0800663 transformType, count, scissorState, stencilSettings, NULL);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000664}
665
joshualitt9853cce2014-11-17 14:22:48 -0800666void GrDrawTarget::clear(const SkIRect* rect,
667 GrColor color,
668 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800669 GrRenderTarget* renderTarget) {
670 if (fCaps->useDrawInsteadOfClear()) {
671 // This works around a driver bug with clear by drawing a rect instead.
672 // The driver will ignore a clear if it is the only thing rendered to a
673 // target before the target is read.
674 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
675 if (NULL == rect || canIgnoreRect || rect->contains(rtRect)) {
676 rect = &rtRect;
677 // We first issue a discard() since that may help tilers.
678 this->discard(renderTarget);
679 }
bsalomon63b21962014-11-05 07:05:34 -0800680
egdaniel8dd688b2015-01-22 10:16:09 -0800681 GrPipelineBuilder pipelineBuilder;
682 pipelineBuilder.setRenderTarget(renderTarget);
joshualitt9853cce2014-11-17 14:22:48 -0800683
egdaniel8dd688b2015-01-22 10:16:09 -0800684 this->drawSimpleRect(&pipelineBuilder, color, SkMatrix::I(), *rect);
bsalomon63b21962014-11-05 07:05:34 -0800685 } else {
686 this->onClear(rect, color, canIgnoreRect, renderTarget);
687 }
688}
689
egdaniel3eee3832014-06-18 13:09:11 -0700690typedef GrTraceMarkerSet::Iter TMIter;
691void GrDrawTarget::saveActiveTraceMarkers() {
692 if (this->caps()->gpuTracingSupport()) {
693 SkASSERT(0 == fStoredTraceMarkers.count());
694 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
695 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
696 this->removeGpuTraceMarker(&(*iter));
697 }
698 }
699}
700
701void GrDrawTarget::restoreActiveTraceMarkers() {
702 if (this->caps()->gpuTracingSupport()) {
703 SkASSERT(0 == fActiveTraceMarkers.count());
704 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
705 this->addGpuTraceMarker(&(*iter));
706 }
707 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
708 this->fStoredTraceMarkers.remove(*iter);
709 }
710 }
711}
712
713void GrDrawTarget::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000714 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000715 SkASSERT(fGpuTraceMarkerCount >= 0);
716 this->fActiveTraceMarkers.add(*marker);
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000717 ++fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000718 }
719}
720
egdaniel3eee3832014-06-18 13:09:11 -0700721void GrDrawTarget::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000722 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000723 SkASSERT(fGpuTraceMarkerCount >= 1);
724 this->fActiveTraceMarkers.remove(*marker);
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000725 --fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000726 }
727}
728
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000729////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000730
egdaniel8dd688b2015-01-22 10:16:09 -0800731void GrDrawTarget::drawIndexedInstances(GrPipelineBuilder* pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800732 const GrGeometryProcessor* gp,
joshualitt9853cce2014-11-17 14:22:48 -0800733 GrPrimitiveType type,
bsalomon@google.com934c5702012-03-20 21:17:58 +0000734 int instanceCount,
735 int verticesPerInstance,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000736 int indicesPerInstance,
737 const SkRect* devBounds) {
egdaniel8dd688b2015-01-22 10:16:09 -0800738 SkASSERT(pipelineBuilder);
joshualitt9853cce2014-11-17 14:22:48 -0800739
bsalomon@google.com934c5702012-03-20 21:17:58 +0000740 if (!verticesPerInstance || !indicesPerInstance) {
741 return;
742 }
743
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000744 int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance;
745 if (!maxInstancesPerDraw) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000746 return;
747 }
748
joshualitt2c93efe2014-11-06 12:57:13 -0800749 // Setup clip
bsalomon3e791242014-12-17 13:43:13 -0800750 GrScissorState scissorState;
egdaniel8dd688b2015-01-22 10:16:09 -0800751 GrPipelineBuilder::AutoRestoreEffects are;
752 GrPipelineBuilder::AutoRestoreStencil ars;
753 if (!this->setupClip(pipelineBuilder, &are, &ars, &scissorState, devBounds)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800754 return;
755 }
756
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000757 DrawInfo info;
758 info.fPrimitiveType = type;
759 info.fStartIndex = 0;
760 info.fStartVertex = 0;
761 info.fIndicesPerInstance = indicesPerInstance;
762 info.fVerticesPerInstance = verticesPerInstance;
763
764 // Set the same bounds for all the draws.
bsalomon49f085d2014-09-05 13:34:00 -0700765 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000766 info.setDevBounds(*devBounds);
767 }
joshualitt9176e2c2014-11-20 07:28:52 -0800768
bsalomon@google.com934c5702012-03-20 21:17:58 +0000769 while (instanceCount) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000770 info.fInstanceCount = SkTMin(instanceCount, maxInstancesPerDraw);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000771 info.fVertexCount = info.fInstanceCount * verticesPerInstance;
772 info.fIndexCount = info.fInstanceCount * indicesPerInstance;
773
egdaniel8dd688b2015-01-22 10:16:09 -0800774 if (this->checkDraw(*pipelineBuilder,
joshualitt56995b52014-12-11 15:44:02 -0800775 gp,
joshualitt9853cce2014-11-17 14:22:48 -0800776 type,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000777 info.fStartVertex,
778 info.fStartIndex,
779 info.fVertexCount,
780 info.fIndexCount)) {
joshualitt2e3b3e32014-12-09 13:31:14 -0800781 this->setDrawBuffers(&info, gp->getVertexStride());
bsalomon50785a32015-02-06 07:02:37 -0800782 this->onDraw(*pipelineBuilder, gp, info, scissorState);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000783 }
784 info.fStartVertex += info.fVertexCount;
785 instanceCount -= info.fInstanceCount;
bsalomon@google.com934c5702012-03-20 21:17:58 +0000786 }
787}
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000788
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000789////////////////////////////////////////////////////////////////////////////////
790
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000791GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry(
792 GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000793 int vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800794 size_t vertexStride,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000795 int indexCount) {
796 fTarget = NULL;
joshualitt9853cce2014-11-17 14:22:48 -0800797 this->set(target, vertexCount, vertexStride, indexCount);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000798}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000799
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000800GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() {
801 fTarget = NULL;
802}
803
804GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() {
805 this->reset();
806}
807
808bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000809 int vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800810 size_t vertexStride,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000811 int indexCount) {
812 this->reset();
813 fTarget = target;
814 bool success = true;
bsalomon49f085d2014-09-05 13:34:00 -0700815 if (fTarget) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000816 success = target->reserveVertexAndIndexSpace(vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800817 vertexStride,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000818 indexCount,
819 &fVertices,
820 &fIndices);
821 if (!success) {
822 fTarget = NULL;
823 this->reset();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000824 }
825 }
bsalomon49f085d2014-09-05 13:34:00 -0700826 SkASSERT(success == SkToBool(fTarget));
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000827 return success;
828}
829
830void GrDrawTarget::AutoReleaseGeometry::reset() {
bsalomon49f085d2014-09-05 13:34:00 -0700831 if (fTarget) {
832 if (fVertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000833 fTarget->resetVertexSource();
834 }
bsalomon49f085d2014-09-05 13:34:00 -0700835 if (fIndices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000836 fTarget->resetIndexSource();
837 }
838 fTarget = NULL;
839 }
bsalomon@google.comcb0c5ab2011-06-29 17:48:17 +0000840 fVertices = NULL;
841 fIndices = NULL;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000842}
843
bsalomon@google.com8d67c072012-12-13 20:38:14 +0000844GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) {
845 fTarget = target;
846 fClip = fTarget->getClip();
847 fStack.init();
848 fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op);
joshualittde358a92015-02-05 08:19:35 -0800849 fReplacementClip.fClipStack.reset(SkRef(fStack.get()));
bsalomon@google.com8d67c072012-12-13 20:38:14 +0000850 target->setClip(&fReplacementClip);
851}
852
bsalomon@google.com116ad842013-04-09 15:38:19 +0000853namespace {
854// returns true if the read/written rect intersects the src/dst and false if not.
855bool clip_srcrect_and_dstpoint(const GrSurface* dst,
856 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000857 const SkIRect& srcRect,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000858 const SkIPoint& dstPoint,
859 SkIRect* clippedSrcRect,
860 SkIPoint* clippedDstPoint) {
861 *clippedSrcRect = srcRect;
862 *clippedDstPoint = dstPoint;
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000863
bsalomon@google.com116ad842013-04-09 15:38:19 +0000864 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary
865 if (clippedSrcRect->fLeft < 0) {
866 clippedDstPoint->fX -= clippedSrcRect->fLeft;
867 clippedSrcRect->fLeft = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000868 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000869 if (clippedDstPoint->fX < 0) {
870 clippedSrcRect->fLeft -= clippedDstPoint->fX;
871 clippedDstPoint->fX = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000872 }
873
bsalomon@google.com116ad842013-04-09 15:38:19 +0000874 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary
875 if (clippedSrcRect->fTop < 0) {
876 clippedDstPoint->fY -= clippedSrcRect->fTop;
877 clippedSrcRect->fTop = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000878 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000879 if (clippedDstPoint->fY < 0) {
880 clippedSrcRect->fTop -= clippedDstPoint->fY;
881 clippedDstPoint->fY = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000882 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000883
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000884 // clip the right edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000885 if (clippedSrcRect->fRight > src->width()) {
886 clippedSrcRect->fRight = src->width();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000887 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000888 if (clippedDstPoint->fX + clippedSrcRect->width() > dst->width()) {
889 clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000890 }
891
892 // clip the bottom edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000893 if (clippedSrcRect->fBottom > src->height()) {
894 clippedSrcRect->fBottom = src->height();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000895 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000896 if (clippedDstPoint->fY + clippedSrcRect->height() > dst->height()) {
897 clippedSrcRect->fBottom = clippedSrcRect->fTop + dst->height() - clippedDstPoint->fY;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000898 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000899
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000900 // The above clipping steps may have inverted the rect if it didn't intersect either the src or
901 // dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000902 return !clippedSrcRect->isEmpty();
903}
904}
905
906bool GrDrawTarget::copySurface(GrSurface* dst,
907 GrSurface* src,
908 const SkIRect& srcRect,
909 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700910 SkASSERT(dst);
911 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000912
913 SkIRect clippedSrcRect;
914 SkIPoint clippedDstPoint;
915 // If the rect is outside the src or dst then we've already succeeded.
916 if (!clip_srcrect_and_dstpoint(dst,
917 src,
918 srcRect,
919 dstPoint,
920 &clippedSrcRect,
921 &clippedDstPoint)) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000922 return true;
923 }
924
bsalomonf90a02b2014-11-26 12:28:00 -0800925 if (this->onCopySurface(dst, src, clippedSrcRect, clippedDstPoint)) {
926 return true;
joshualitta7024152014-11-03 14:16:35 -0800927 }
928
929 GrRenderTarget* rt = dst->asRenderTarget();
930 GrTexture* tex = src->asTexture();
931
bsalomonf90a02b2014-11-26 12:28:00 -0800932 if ((dst == src) || !rt || !tex) {
933 return false;
934 }
935
egdaniel8dd688b2015-01-22 10:16:09 -0800936 GrPipelineBuilder pipelineBuilder;
937 pipelineBuilder.setRenderTarget(rt);
joshualitta7024152014-11-03 14:16:35 -0800938 SkMatrix matrix;
939 matrix.setTranslate(SkIntToScalar(clippedSrcRect.fLeft - clippedDstPoint.fX),
940 SkIntToScalar(clippedSrcRect.fTop - clippedDstPoint.fY));
941 matrix.postIDiv(tex->width(), tex->height());
egdaniel8dd688b2015-01-22 10:16:09 -0800942 pipelineBuilder.addColorTextureProcessor(tex, matrix);
joshualitta7024152014-11-03 14:16:35 -0800943 SkIRect dstRect = SkIRect::MakeXYWH(clippedDstPoint.fX,
944 clippedDstPoint.fY,
945 clippedSrcRect.width(),
946 clippedSrcRect.height());
egdaniel8dd688b2015-01-22 10:16:09 -0800947 this->drawSimpleRect(&pipelineBuilder, GrColor_WHITE, SkMatrix::I(), dstRect);
joshualitta7024152014-11-03 14:16:35 -0800948 return true;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000949}
950
joshualitt9853cce2014-11-17 14:22:48 -0800951bool GrDrawTarget::canCopySurface(const GrSurface* dst,
952 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000953 const SkIRect& srcRect,
954 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700955 SkASSERT(dst);
956 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000957
958 SkIRect clippedSrcRect;
959 SkIPoint clippedDstPoint;
960 // If the rect is outside the src or dst then we're guaranteed success
961 if (!clip_srcrect_and_dstpoint(dst,
962 src,
963 srcRect,
964 dstPoint,
965 &clippedSrcRect,
966 &clippedDstPoint)) {
967 return true;
968 }
bsalomonf90a02b2014-11-26 12:28:00 -0800969 return this->internalCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
970}
bsalomon@google.com116ad842013-04-09 15:38:19 +0000971
bsalomonf90a02b2014-11-26 12:28:00 -0800972bool GrDrawTarget::internalCanCopySurface(const GrSurface* dst,
973 const GrSurface* src,
974 const SkIRect& clippedSrcRect,
975 const SkIPoint& clippedDstPoint) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000976 // Check that the read/write rects are contained within the src/dst bounds.
joshualitta7024152014-11-03 14:16:35 -0800977 SkASSERT(!clippedSrcRect.isEmpty());
978 SkASSERT(SkIRect::MakeWH(src->width(), src->height()).contains(clippedSrcRect));
979 SkASSERT(clippedDstPoint.fX >= 0 && clippedDstPoint.fY >= 0);
980 SkASSERT(clippedDstPoint.fX + clippedSrcRect.width() <= dst->width() &&
981 clippedDstPoint.fY + clippedSrcRect.height() <= dst->height());
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000982
bsalomonf90a02b2014-11-26 12:28:00 -0800983 // The base class can do it as a draw or the subclass may be able to handle it.
984 return ((dst != src) && dst->asRenderTarget() && src->asTexture()) ||
985 this->onCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
bsalomon@google.comeb851172013-04-15 13:51:00 +0000986}
987
bsalomon@google.combcce8922013-03-25 15:38:39 +0000988///////////////////////////////////////////////////////////////////////////////
989
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000990void GrDrawTargetCaps::reset() {
commit-bot@chromium.org47442312013-12-19 16:18:01 +0000991 fMipMapSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +0000992 fNPOTTextureTileSupport = false;
993 fTwoSidedStencilSupport = false;
994 fStencilWrapOpsSupport = false;
995 fHWAALineSupport = false;
996 fShaderDerivativeSupport = false;
997 fGeometryShaderSupport = false;
skia.committer@gmail.come60ed082013-03-26 07:01:04 +0000998 fDualSourceBlendingSupport = false;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000999 fPathRenderingSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001000 fDstReadInShaderSupport = false;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001001 fDiscardRenderTargetSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001002 fReuseScratchTextures = true;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001003 fGpuTracingSupport = false;
krajcevski786978162014-07-30 11:25:44 -07001004 fCompressedTexSubImageSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001005
bsalomon63b21962014-11-05 07:05:34 -08001006 fUseDrawInsteadOfClear = false;
1007
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001008 fMapBufferFlags = kNone_MapFlags;
1009
bsalomon@google.combcce8922013-03-25 15:38:39 +00001010 fMaxRenderTargetSize = 0;
1011 fMaxTextureSize = 0;
1012 fMaxSampleCount = 0;
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001013
bsalomon17168df2014-12-09 09:00:49 -08001014 fShaderPrecisionVaries = false;
1015
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001016 memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001017 memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001018}
1019
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001020GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001021 fMipMapSupport = other.fMipMapSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001022 fNPOTTextureTileSupport = other.fNPOTTextureTileSupport;
1023 fTwoSidedStencilSupport = other.fTwoSidedStencilSupport;
1024 fStencilWrapOpsSupport = other.fStencilWrapOpsSupport;
1025 fHWAALineSupport = other.fHWAALineSupport;
1026 fShaderDerivativeSupport = other.fShaderDerivativeSupport;
1027 fGeometryShaderSupport = other.fGeometryShaderSupport;
1028 fDualSourceBlendingSupport = other.fDualSourceBlendingSupport;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001029 fPathRenderingSupport = other.fPathRenderingSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001030 fDstReadInShaderSupport = other.fDstReadInShaderSupport;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001031 fDiscardRenderTargetSupport = other.fDiscardRenderTargetSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001032 fReuseScratchTextures = other.fReuseScratchTextures;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001033 fGpuTracingSupport = other.fGpuTracingSupport;
krajcevski786978162014-07-30 11:25:44 -07001034 fCompressedTexSubImageSupport = other.fCompressedTexSubImageSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001035
bsalomon63b21962014-11-05 07:05:34 -08001036 fUseDrawInsteadOfClear = other.fUseDrawInsteadOfClear;
1037
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001038 fMapBufferFlags = other.fMapBufferFlags;
1039
bsalomon@google.combcce8922013-03-25 15:38:39 +00001040 fMaxRenderTargetSize = other.fMaxRenderTargetSize;
1041 fMaxTextureSize = other.fMaxTextureSize;
1042 fMaxSampleCount = other.fMaxSampleCount;
1043
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001044 memcpy(fConfigRenderSupport, other.fConfigRenderSupport, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001045 memcpy(fConfigTextureSupport, other.fConfigTextureSupport, sizeof(fConfigTextureSupport));
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001046
bsalomon17168df2014-12-09 09:00:49 -08001047 fShaderPrecisionVaries = other.fShaderPrecisionVaries;
1048 for (int s = 0; s < kGrShaderTypeCount; ++s) {
bsalomonc0bd6482014-12-09 10:04:14 -08001049 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
bsalomon17168df2014-12-09 09:00:49 -08001050 fFloatPrecisions[s][p] = other.fFloatPrecisions[s][p];
1051 }
1052 }
bsalomon@google.combcce8922013-03-25 15:38:39 +00001053 return *this;
1054}
1055
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001056static SkString map_flags_to_string(uint32_t flags) {
1057 SkString str;
1058 if (GrDrawTargetCaps::kNone_MapFlags == flags) {
1059 str = "none";
1060 } else {
1061 SkASSERT(GrDrawTargetCaps::kCanMap_MapFlag & flags);
1062 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kCanMap_MapFlag);
1063 str = "can_map";
1064
1065 if (GrDrawTargetCaps::kSubset_MapFlag & flags) {
1066 str.append(" partial");
1067 } else {
1068 str.append(" full");
1069 }
1070 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kSubset_MapFlag);
1071 }
1072 SkASSERT(0 == flags); // Make sure we handled all the flags.
1073 return str;
1074}
1075
bsalomon17168df2014-12-09 09:00:49 -08001076static const char* shader_type_to_string(GrShaderType type) {
1077 switch (type) {
1078 case kVertex_GrShaderType:
1079 return "vertex";
1080 case kGeometry_GrShaderType:
1081 return "geometry";
1082 case kFragment_GrShaderType:
1083 return "fragment";
1084 }
1085 return "";
1086}
1087
bsalomonc0bd6482014-12-09 10:04:14 -08001088static const char* precision_to_string(GrSLPrecision p) {
bsalomon17168df2014-12-09 09:00:49 -08001089 switch (p) {
bsalomonc0bd6482014-12-09 10:04:14 -08001090 case kLow_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001091 return "low";
bsalomonc0bd6482014-12-09 10:04:14 -08001092 case kMedium_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001093 return "medium";
bsalomonc0bd6482014-12-09 10:04:14 -08001094 case kHigh_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001095 return "high";
1096 }
1097 return "";
1098}
1099
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001100SkString GrDrawTargetCaps::dump() const {
1101 SkString r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001102 static const char* gNY[] = {"NO", "YES"};
bsalomon63b21962014-11-05 07:05:34 -08001103 r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]);
1104 r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]);
1105 r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]);
1106 r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
1107 r.appendf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]);
1108 r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]);
1109 r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
1110 r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]);
1111 r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]);
1112 r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]);
1113 r.appendf("Discard Render Target Support : %s\n", gNY[fDiscardRenderTargetSupport]);
1114 r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
1115 r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]);
1116 r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001117
bsalomon63b21962014-11-05 07:05:34 -08001118 r.appendf("Draw Instead of Clear [workaround] : %s\n", gNY[fUseDrawInsteadOfClear]);
1119
1120 r.appendf("Max Texture Size : %d\n", fMaxTextureSize);
1121 r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
1122 r.appendf("Max Sample Count : %d\n", fMaxSampleCount);
1123
1124 r.appendf("Map Buffer Support : %s\n",
1125 map_flags_to_string(fMapBufferFlags).c_str());
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001126
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001127 static const char* kConfigNames[] = {
1128 "Unknown", // kUnknown_GrPixelConfig
1129 "Alpha8", // kAlpha_8_GrPixelConfig,
1130 "Index8", // kIndex_8_GrPixelConfig,
1131 "RGB565", // kRGB_565_GrPixelConfig,
1132 "RGBA444", // kRGBA_4444_GrPixelConfig,
1133 "RGBA8888", // kRGBA_8888_GrPixelConfig,
1134 "BGRA8888", // kBGRA_8888_GrPixelConfig,
jvanverthfa1e8a72014-12-22 08:31:49 -08001135 "SRGBA8888",// kSRGBA_8888_GrPixelConfig,
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001136 "ETC1", // kETC1_GrPixelConfig,
1137 "LATC", // kLATC_GrPixelConfig,
krajcevski238b4562014-06-30 09:09:22 -07001138 "R11EAC", // kR11_EAC_GrPixelConfig,
krajcevski7ef21622014-07-16 15:21:13 -07001139 "ASTC12x12",// kASTC_12x12_GrPixelConfig,
jvanverth28f9c602014-12-05 13:06:35 -08001140 "RGBAFloat",// kRGBA_float_GrPixelConfig
1141 "AlphaHalf",// kAlpha_half_GrPixelConfig
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001142 };
krajcevski7ef21622014-07-16 15:21:13 -07001143 GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig);
1144 GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig);
1145 GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig);
1146 GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig);
1147 GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig);
1148 GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig);
1149 GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig);
jvanverthfa1e8a72014-12-22 08:31:49 -08001150 GR_STATIC_ASSERT(7 == kSRGBA_8888_GrPixelConfig);
1151 GR_STATIC_ASSERT(8 == kETC1_GrPixelConfig);
1152 GR_STATIC_ASSERT(9 == kLATC_GrPixelConfig);
1153 GR_STATIC_ASSERT(10 == kR11_EAC_GrPixelConfig);
1154 GR_STATIC_ASSERT(11 == kASTC_12x12_GrPixelConfig);
1155 GR_STATIC_ASSERT(12 == kRGBA_float_GrPixelConfig);
1156 GR_STATIC_ASSERT(13 == kAlpha_half_GrPixelConfig);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001157 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt);
1158
commit-bot@chromium.org99017272013-11-08 18:45:27 +00001159 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]);
1160 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001161
1162 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1163 r.appendf("%s is renderable: %s, with MSAA: %s\n",
1164 kConfigNames[i],
1165 gNY[fConfigRenderSupport[i][0]],
1166 gNY[fConfigRenderSupport[i][1]]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001167 }
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001168
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001169 SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001170
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001171 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1172 r.appendf("%s is uploadable to a texture: %s\n",
1173 kConfigNames[i],
1174 gNY[fConfigTextureSupport[i]]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001175 }
1176
bsalomon17168df2014-12-09 09:00:49 -08001177 r.appendf("Shader Float Precisions (varies: %s):\n", gNY[fShaderPrecisionVaries]);
1178
1179 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1180 GrShaderType shaderType = static_cast<GrShaderType>(s);
1181 r.appendf("\t%s:\n", shader_type_to_string(shaderType));
bsalomonc0bd6482014-12-09 10:04:14 -08001182 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
bsalomon17168df2014-12-09 09:00:49 -08001183 if (fFloatPrecisions[s][p].supported()) {
bsalomonc0bd6482014-12-09 10:04:14 -08001184 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
bsalomon17168df2014-12-09 09:00:49 -08001185 r.appendf("\t\t%s: log_low: %d log_high: %d bits: %d\n",
1186 precision_to_string(precision),
1187 fFloatPrecisions[s][p].fLogRangeLow,
1188 fFloatPrecisions[s][p].fLogRangeHigh,
1189 fFloatPrecisions[s][p].fBits);
1190 }
1191 }
1192 }
1193
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001194 return r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001195}
egdanielbc127a32014-09-19 12:07:43 -07001196
1197uint32_t GrDrawTargetCaps::CreateUniqueID() {
1198 static int32_t gUniqueID = SK_InvalidUniqueID;
1199 uint32_t id;
1200 do {
1201 id = static_cast<uint32_t>(sk_atomic_inc(&gUniqueID) + 1);
1202 } while (id == SK_InvalidUniqueID);
1203 return id;
1204}
1205
joshualitt2c93efe2014-11-06 12:57:13 -08001206///////////////////////////////////////////////////////////////////////////////////////////////////
1207
egdaniel8dd688b2015-01-22 10:16:09 -08001208bool GrClipTarget::setupClip(GrPipelineBuilder* pipelineBuilder,
1209 GrPipelineBuilder::AutoRestoreEffects* are,
1210 GrPipelineBuilder::AutoRestoreStencil* ars,
joshualitt8059eb92014-12-29 15:10:07 -08001211 GrScissorState* scissorState,
1212 const SkRect* devBounds) {
egdaniel8dd688b2015-01-22 10:16:09 -08001213 return fClipMaskManager.setupClipping(pipelineBuilder,
joshualitt2c93efe2014-11-06 12:57:13 -08001214 are,
1215 ars,
joshualitt9853cce2014-11-17 14:22:48 -08001216 scissorState,
1217 this->getClip(),
1218 devBounds);
joshualitt2c93efe2014-11-06 12:57:13 -08001219}