blob: adb7128e1c5118d9d6a428185d943c8710c2c0ec [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
9
epoger@google.comec3ed6a2011-07-28 14:26:00 +000010
reed@google.comac10a2d2010-12-22 21:39:39 +000011#include "GrDrawTarget.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
joshualitt9853cce2014-11-17 14:22:48 -0800309bool GrDrawTarget::checkDraw(const GrDrawState& drawState,
310 GrPrimitiveType type,
311 int startVertex,
312 int startIndex,
313 int vertexCount,
bsalomon@google.come8262622011-11-07 02:30:51 +0000314 int indexCount) const {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000315#ifdef SK_DEBUG
bsalomon@google.come8262622011-11-07 02:30:51 +0000316 const GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000317 int maxVertex = startVertex + vertexCount;
318 int maxValidVertex;
319 switch (geoSrc.fVertexSrc) {
320 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000321 SkFAIL("Attempting to draw without vertex src.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000322 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000323 maxValidVertex = geoSrc.fVertexCount;
324 break;
325 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000326 maxValidVertex = static_cast<int>(geoSrc.fVertexBuffer->gpuMemorySize() / geoSrc.fVertexSize);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000327 break;
328 }
329 if (maxVertex > maxValidVertex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000330 SkFAIL("Drawing outside valid vertex range.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000331 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000332 if (indexCount > 0) {
333 int maxIndex = startIndex + indexCount;
334 int maxValidIndex;
335 switch (geoSrc.fIndexSrc) {
336 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000337 SkFAIL("Attempting to draw indexed geom without index src.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000338 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.come8262622011-11-07 02:30:51 +0000339 maxValidIndex = geoSrc.fIndexCount;
340 break;
341 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000342 maxValidIndex = static_cast<int>(geoSrc.fIndexBuffer->gpuMemorySize() / sizeof(uint16_t));
bsalomon@google.come8262622011-11-07 02:30:51 +0000343 break;
344 }
345 if (maxIndex > maxValidIndex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000346 SkFAIL("Index reads outside valid index range.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000347 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000348 }
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000349
bsalomon49f085d2014-09-05 13:34:00 -0700350 SkASSERT(drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000351
joshualittbd769d02014-09-04 08:56:46 -0700352 if (drawState.hasGeometryProcessor()) {
joshualitta5305a12014-10-10 17:47:00 -0700353 const GrGeometryProcessor* gp = drawState.getGeometryProcessor();
joshualittb0a8a372014-09-23 09:50:21 -0700354 int numTextures = gp->numTextures();
joshualittbd769d02014-09-04 08:56:46 -0700355 for (int t = 0; t < numTextures; ++t) {
joshualittb0a8a372014-09-23 09:50:21 -0700356 GrTexture* texture = gp->texture(t);
joshualittbd769d02014-09-04 08:56:46 -0700357 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
358 }
359 }
360
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000361 for (int s = 0; s < drawState.numColorStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700362 const GrProcessor* effect = drawState.getColorStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000363 int numTextures = effect->numTextures();
364 for (int t = 0; t < numTextures; ++t) {
365 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000366 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000367 }
368 }
369 for (int s = 0; s < drawState.numCoverageStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700370 const GrProcessor* effect = drawState.getCoverageStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000371 int numTextures = effect->numTextures();
372 for (int t = 0; t < numTextures; ++t) {
373 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000374 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000375 }
376 }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000377
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000378#endif
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000379 if (NULL == drawState.getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000380 return false;
381 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000382 return true;
383}
384
joshualitt9853cce2014-11-17 14:22:48 -0800385bool GrDrawTarget::setupDstReadIfNecessary(GrDrawState* ds,
joshualitt2e3b3e32014-12-09 13:31:14 -0800386 GrColor color,
387 uint8_t coverage,
joshualitt9853cce2014-11-17 14:22:48 -0800388 GrDeviceCoordTexture* dstCopy,
389 const SkRect* drawBounds) {
joshualitt2e3b3e32014-12-09 13:31:14 -0800390 GrColor c = GrColorPackRGBA(coverage, coverage, coverage, coverage);
391 if (this->caps()->dstReadInShaderSupport() || !ds->willEffectReadDstColor(color, c)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000392 return true;
393 }
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000394 SkIRect copyRect;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000395 const GrClipData* clip = this->getClip();
joshualitt9853cce2014-11-17 14:22:48 -0800396 GrRenderTarget* rt = ds->getRenderTarget();
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000397 clip->getConservativeBounds(rt, &copyRect);
398
bsalomon49f085d2014-09-05 13:34:00 -0700399 if (drawBounds) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000400 SkIRect drawIBounds;
401 drawBounds->roundOut(&drawIBounds);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000402 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000403#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700404 SkDebugf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000405#endif
406 return false;
407 }
408 } else {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000409#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700410 //SkDebugf("No dev bounds when dst copy is made.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000411#endif
412 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000413
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000414 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
415 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700416 GrSurfaceDesc desc;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000417 this->initCopySurfaceDstDesc(rt, &desc);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000418 desc.fWidth = copyRect.width();
419 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000420
bsalomone3059732014-10-14 11:47:22 -0700421 SkAutoTUnref<GrTexture> copy(
422 fContext->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000423
bsalomone3059732014-10-14 11:47:22 -0700424 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700425 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000426 return false;
427 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000428 SkIPoint dstPoint = {0, 0};
bsalomone3059732014-10-14 11:47:22 -0700429 if (this->copySurface(copy, rt, copyRect, dstPoint)) {
430 dstCopy->setTexture(copy);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000431 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000432 return true;
433 } else {
434 return false;
435 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000436}
437
joshualitt9853cce2014-11-17 14:22:48 -0800438void GrDrawTarget::drawIndexed(GrDrawState* ds,
439 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) {
joshualitt9853cce2014-11-17 14:22:48 -0800445 SkASSERT(ds);
446 if (indexCount > 0 &&
447 this->checkDraw(*ds, type, startVertex, startIndex, vertexCount, indexCount)) {
448
joshualitt2c93efe2014-11-06 12:57:13 -0800449 // Setup clip
450 GrClipMaskManager::ScissorState scissorState;
451 GrDrawState::AutoRestoreEffects are;
452 GrDrawState::AutoRestoreStencil ars;
joshualitt9853cce2014-11-17 14:22:48 -0800453 if (!this->setupClip(devBounds, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800454 return;
455 }
456
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000457 DrawInfo info;
458 info.fPrimitiveType = type;
459 info.fStartVertex = startVertex;
460 info.fStartIndex = startIndex;
461 info.fVertexCount = vertexCount;
462 info.fIndexCount = indexCount;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000463
464 info.fInstanceCount = 0;
465 info.fVerticesPerInstance = 0;
466 info.fIndicesPerInstance = 0;
467
bsalomon49f085d2014-09-05 13:34:00 -0700468 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000469 info.setDevBounds(*devBounds);
470 }
joshualitt9176e2c2014-11-20 07:28:52 -0800471
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000472 // TODO: We should continue with incorrect blending.
joshualitt9176e2c2014-11-20 07:28:52 -0800473 GrDeviceCoordTexture dstCopy;
joshualitt2e3b3e32014-12-09 13:31:14 -0800474 const GrGeometryProcessor* gp = ds->getGeometryProcessor();
475 if (!this->setupDstReadIfNecessary(ds, gp->getColor(), gp->getCoverage(), &dstCopy,
476 devBounds)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000477 return;
478 }
joshualitt2e3b3e32014-12-09 13:31:14 -0800479 this->setDrawBuffers(&info, gp->getVertexStride());
joshualitt7eb8c7b2014-11-18 14:24:27 -0800480
joshualitt9176e2c2014-11-20 07:28:52 -0800481 this->onDraw(*ds, info, scissorState, dstCopy.texture() ? &dstCopy : NULL);
bsalomon@google.com82145872011-08-23 14:32:40 +0000482 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000483}
484
joshualitt9853cce2014-11-17 14:22:48 -0800485void GrDrawTarget::drawNonIndexed(GrDrawState* ds,
486 GrPrimitiveType type,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000487 int startVertex,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000488 int vertexCount,
489 const SkRect* devBounds) {
joshualitt9853cce2014-11-17 14:22:48 -0800490 SkASSERT(ds);
491 if (vertexCount > 0 && this->checkDraw(*ds, type, startVertex, -1, vertexCount, -1)) {
492
joshualitt2c93efe2014-11-06 12:57:13 -0800493 // Setup clip
494 GrClipMaskManager::ScissorState scissorState;
495 GrDrawState::AutoRestoreEffects are;
496 GrDrawState::AutoRestoreStencil ars;
joshualitt9853cce2014-11-17 14:22:48 -0800497 if (!this->setupClip(devBounds, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800498 return;
499 }
500
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000501 DrawInfo info;
502 info.fPrimitiveType = type;
503 info.fStartVertex = startVertex;
504 info.fStartIndex = 0;
505 info.fVertexCount = vertexCount;
506 info.fIndexCount = 0;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000507
508 info.fInstanceCount = 0;
509 info.fVerticesPerInstance = 0;
510 info.fIndicesPerInstance = 0;
511
bsalomon49f085d2014-09-05 13:34:00 -0700512 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000513 info.setDevBounds(*devBounds);
514 }
joshualitt2c93efe2014-11-06 12:57:13 -0800515
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000516 // TODO: We should continue with incorrect blending.
joshualitt9176e2c2014-11-20 07:28:52 -0800517 GrDeviceCoordTexture dstCopy;
joshualitt2e3b3e32014-12-09 13:31:14 -0800518 const GrGeometryProcessor* gp = ds->getGeometryProcessor();
519 if (!this->setupDstReadIfNecessary(ds, gp->getColor(), gp->getCoverage(), &dstCopy,
520 devBounds)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000521 return;
522 }
joshualitt7eb8c7b2014-11-18 14:24:27 -0800523
joshualitt2e3b3e32014-12-09 13:31:14 -0800524 this->setDrawBuffers(&info, gp->getVertexStride());
joshualitt7eb8c7b2014-11-18 14:24:27 -0800525
joshualitt9176e2c2014-11-20 07:28:52 -0800526 this->onDraw(*ds, info, scissorState, dstCopy.texture() ? &dstCopy : NULL);
bsalomon@google.com82145872011-08-23 14:32:40 +0000527 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000528}
529
joshualitt2c93efe2014-11-06 12:57:13 -0800530static const GrStencilSettings& winding_path_stencil_settings() {
531 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
532 kIncClamp_StencilOp,
533 kIncClamp_StencilOp,
534 kAlwaysIfInClip_StencilFunc,
535 0xFFFF, 0xFFFF, 0xFFFF);
536 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
537}
538
539static const GrStencilSettings& even_odd_path_stencil_settings() {
540 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
541 kInvert_StencilOp,
542 kInvert_StencilOp,
543 kAlwaysIfInClip_StencilFunc,
544 0xFFFF, 0xFFFF, 0xFFFF);
545 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
546}
547
548void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
joshualitt9853cce2014-11-17 14:22:48 -0800549 const GrStencilBuffer* sb,
joshualitt2c93efe2014-11-06 12:57:13 -0800550 GrStencilSettings* outStencilSettings) {
551
552 switch (fill) {
553 default:
554 SkFAIL("Unexpected path fill.");
555 case GrPathRendering::kWinding_FillType:
556 *outStencilSettings = winding_path_stencil_settings();
557 break;
558 case GrPathRendering::kEvenOdd_FillType:
559 *outStencilSettings = even_odd_path_stencil_settings();
560 break;
561 }
joshualitt9853cce2014-11-17 14:22:48 -0800562 this->clipMaskManager()->adjustPathStencilParams(sb, outStencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800563}
564
joshualitt9853cce2014-11-17 14:22:48 -0800565void GrDrawTarget::stencilPath(GrDrawState* ds,
566 const GrPath* path,
567 GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000568 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700569 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000570 SkASSERT(this->caps()->pathRenderingSupport());
joshualitt9853cce2014-11-17 14:22:48 -0800571 SkASSERT(ds);
joshualitt2c93efe2014-11-06 12:57:13 -0800572
573 // Setup clip
574 GrClipMaskManager::ScissorState scissorState;
575 GrDrawState::AutoRestoreEffects are;
576 GrDrawState::AutoRestoreStencil ars;
joshualitt9853cce2014-11-17 14:22:48 -0800577 if (!this->setupClip(NULL, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800578 return;
579 }
580
581 // set stencil settings for path
582 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800583 this->getPathStencilSettingsForFilltype(fill,
584 ds->getRenderTarget()->getStencilBuffer(),
585 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800586
joshualitt9853cce2014-11-17 14:22:48 -0800587 this->onStencilPath(*ds, path, scissorState, stencilSettings);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000588}
589
joshualitt9853cce2014-11-17 14:22:48 -0800590void GrDrawTarget::drawPath(GrDrawState* ds,
joshualitt2e3b3e32014-12-09 13:31:14 -0800591 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800592 const GrPath* path,
593 GrPathRendering::FillType fill) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000594 // TODO: extract portions of checkDraw that are relevant to path rendering.
bsalomon49f085d2014-09-05 13:34:00 -0700595 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000596 SkASSERT(this->caps()->pathRenderingSupport());
joshualitt9853cce2014-11-17 14:22:48 -0800597 SkASSERT(ds);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000598
joshualitt92e496f2014-10-31 13:56:50 -0700599 SkRect devBounds = path->getBounds();
joshualitt9853cce2014-11-17 14:22:48 -0800600 SkMatrix viewM = ds->getViewMatrix();
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000601 viewM.mapRect(&devBounds);
602
joshualitt2c93efe2014-11-06 12:57:13 -0800603 // Setup clip
604 GrClipMaskManager::ScissorState scissorState;
605 GrDrawState::AutoRestoreEffects are;
606 GrDrawState::AutoRestoreStencil ars;
joshualitt9853cce2014-11-17 14:22:48 -0800607 if (!this->setupClip(&devBounds, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800608 return;
609 }
610
611 // set stencil settings for path
612 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800613 this->getPathStencilSettingsForFilltype(fill,
614 ds->getRenderTarget()->getStencilBuffer(),
615 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800616
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000617 GrDeviceCoordTexture dstCopy;
joshualitt2e3b3e32014-12-09 13:31:14 -0800618 if (!this->setupDstReadIfNecessary(ds, color, 0xff, &dstCopy, &devBounds)) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000619 return;
620 }
621
joshualitt2e3b3e32014-12-09 13:31:14 -0800622 this->onDrawPath(*ds, color, path, scissorState, stencilSettings, dstCopy.texture() ? &dstCopy :
623 NULL);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000624}
625
joshualitt9853cce2014-11-17 14:22:48 -0800626void GrDrawTarget::drawPaths(GrDrawState* ds,
joshualitt2e3b3e32014-12-09 13:31:14 -0800627 GrColor color,
joshualitt9853cce2014-11-17 14:22:48 -0800628 const GrPathRange* pathRange,
cdalton55b24af2014-11-25 11:00:56 -0800629 const void* indices,
630 PathIndexType indexType,
631 const float transformValues[],
632 PathTransformType transformType,
joshualitt9853cce2014-11-17 14:22:48 -0800633 int count,
joshualitt92e496f2014-10-31 13:56:50 -0700634 GrPathRendering::FillType fill) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000635 SkASSERT(this->caps()->pathRenderingSupport());
bsalomon49f085d2014-09-05 13:34:00 -0700636 SkASSERT(pathRange);
637 SkASSERT(indices);
cdalton55b24af2014-11-25 11:00:56 -0800638 SkASSERT(0 == reinterpret_cast<long>(indices) % GrPathRange::PathIndexSizeInBytes(indexType));
639 SkASSERT(transformValues);
joshualitt9853cce2014-11-17 14:22:48 -0800640 SkASSERT(ds);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000641
joshualitt2c93efe2014-11-06 12:57:13 -0800642 // Setup clip
643 GrClipMaskManager::ScissorState scissorState;
644 GrDrawState::AutoRestoreEffects are;
645 GrDrawState::AutoRestoreStencil ars;
646
joshualitt9853cce2014-11-17 14:22:48 -0800647 if (!this->setupClip(NULL, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800648 return;
649 }
650
651 // set stencil settings for path
652 GrStencilSettings stencilSettings;
joshualitt9853cce2014-11-17 14:22:48 -0800653 this->getPathStencilSettingsForFilltype(fill,
654 ds->getRenderTarget()->getStencilBuffer(),
655 &stencilSettings);
joshualitt2c93efe2014-11-06 12:57:13 -0800656
cdaltonb85a0aa2014-07-21 15:32:44 -0700657 // Don't compute a bounding box for setupDstReadIfNecessary(), we'll opt
658 // instead for it to just copy the entire dst. Realistically this is a moot
659 // point, because any context that supports NV_path_rendering will also
660 // support NV_blend_equation_advanced.
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000661 GrDeviceCoordTexture dstCopy;
joshualitt2e3b3e32014-12-09 13:31:14 -0800662 if (!this->setupDstReadIfNecessary(ds, color, 0xff, &dstCopy, NULL)) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000663 return;
664 }
665
joshualitt2e3b3e32014-12-09 13:31:14 -0800666 this->onDrawPaths(*ds, color, pathRange, indices, indexType, transformValues, transformType,
667 count, scissorState, stencilSettings, dstCopy.texture() ? &dstCopy : NULL);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000668}
669
joshualitt9853cce2014-11-17 14:22:48 -0800670void GrDrawTarget::clear(const SkIRect* rect,
671 GrColor color,
672 bool canIgnoreRect,
bsalomon63b21962014-11-05 07:05:34 -0800673 GrRenderTarget* renderTarget) {
674 if (fCaps->useDrawInsteadOfClear()) {
675 // This works around a driver bug with clear by drawing a rect instead.
676 // The driver will ignore a clear if it is the only thing rendered to a
677 // target before the target is read.
678 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
679 if (NULL == rect || canIgnoreRect || rect->contains(rtRect)) {
680 rect = &rtRect;
681 // We first issue a discard() since that may help tilers.
682 this->discard(renderTarget);
683 }
bsalomon63b21962014-11-05 07:05:34 -0800684
joshualitt9853cce2014-11-17 14:22:48 -0800685 GrDrawState drawState;
joshualitt9853cce2014-11-17 14:22:48 -0800686 drawState.setRenderTarget(renderTarget);
687
joshualitt2e3b3e32014-12-09 13:31:14 -0800688 this->drawSimpleRect(&drawState, color, *rect);
bsalomon63b21962014-11-05 07:05:34 -0800689 } else {
690 this->onClear(rect, color, canIgnoreRect, renderTarget);
691 }
692}
693
egdaniel3eee3832014-06-18 13:09:11 -0700694typedef GrTraceMarkerSet::Iter TMIter;
695void GrDrawTarget::saveActiveTraceMarkers() {
696 if (this->caps()->gpuTracingSupport()) {
697 SkASSERT(0 == fStoredTraceMarkers.count());
698 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
699 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
700 this->removeGpuTraceMarker(&(*iter));
701 }
702 }
703}
704
705void GrDrawTarget::restoreActiveTraceMarkers() {
706 if (this->caps()->gpuTracingSupport()) {
707 SkASSERT(0 == fActiveTraceMarkers.count());
708 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
709 this->addGpuTraceMarker(&(*iter));
710 }
711 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
712 this->fStoredTraceMarkers.remove(*iter);
713 }
714 }
715}
716
717void GrDrawTarget::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000718 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000719 SkASSERT(fGpuTraceMarkerCount >= 0);
720 this->fActiveTraceMarkers.add(*marker);
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000721 ++fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000722 }
723}
724
egdaniel3eee3832014-06-18 13:09:11 -0700725void GrDrawTarget::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000726 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000727 SkASSERT(fGpuTraceMarkerCount >= 1);
728 this->fActiveTraceMarkers.remove(*marker);
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000729 --fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000730 }
731}
732
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000733////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000734
joshualitt9853cce2014-11-17 14:22:48 -0800735void GrDrawTarget::drawIndexedInstances(GrDrawState* ds,
736 GrPrimitiveType type,
bsalomon@google.com934c5702012-03-20 21:17:58 +0000737 int instanceCount,
738 int verticesPerInstance,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000739 int indicesPerInstance,
740 const SkRect* devBounds) {
joshualitt9853cce2014-11-17 14:22:48 -0800741 SkASSERT(ds);
742
bsalomon@google.com934c5702012-03-20 21:17:58 +0000743 if (!verticesPerInstance || !indicesPerInstance) {
744 return;
745 }
746
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000747 int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance;
748 if (!maxInstancesPerDraw) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000749 return;
750 }
751
joshualitt2c93efe2014-11-06 12:57:13 -0800752 // Setup clip
753 GrClipMaskManager::ScissorState scissorState;
754 GrDrawState::AutoRestoreEffects are;
755 GrDrawState::AutoRestoreStencil ars;
joshualitt9853cce2014-11-17 14:22:48 -0800756 if (!this->setupClip(devBounds, &are, &ars, ds, &scissorState)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800757 return;
758 }
759
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000760 DrawInfo info;
761 info.fPrimitiveType = type;
762 info.fStartIndex = 0;
763 info.fStartVertex = 0;
764 info.fIndicesPerInstance = indicesPerInstance;
765 info.fVerticesPerInstance = verticesPerInstance;
766
767 // Set the same bounds for all the draws.
bsalomon49f085d2014-09-05 13:34:00 -0700768 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000769 info.setDevBounds(*devBounds);
770 }
joshualitt9176e2c2014-11-20 07:28:52 -0800771
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000772 // TODO: We should continue with incorrect blending.
joshualitt9176e2c2014-11-20 07:28:52 -0800773 GrDeviceCoordTexture dstCopy;
joshualitt2e3b3e32014-12-09 13:31:14 -0800774 const GrGeometryProcessor* gp = ds->getGeometryProcessor();
775 if (!this->setupDstReadIfNecessary(ds, gp->getColor(), gp->getCoverage(), &dstCopy,devBounds)) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000776 return;
777 }
joshualitt7eb8c7b2014-11-18 14:24:27 -0800778
bsalomon@google.com934c5702012-03-20 21:17:58 +0000779 while (instanceCount) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000780 info.fInstanceCount = SkTMin(instanceCount, maxInstancesPerDraw);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000781 info.fVertexCount = info.fInstanceCount * verticesPerInstance;
782 info.fIndexCount = info.fInstanceCount * indicesPerInstance;
783
joshualitt9853cce2014-11-17 14:22:48 -0800784 if (this->checkDraw(*ds,
785 type,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000786 info.fStartVertex,
787 info.fStartIndex,
788 info.fVertexCount,
789 info.fIndexCount)) {
joshualitt2e3b3e32014-12-09 13:31:14 -0800790 this->setDrawBuffers(&info, gp->getVertexStride());
joshualitt9176e2c2014-11-20 07:28:52 -0800791 this->onDraw(*ds, info, scissorState, dstCopy.texture() ? &dstCopy : NULL);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000792 }
793 info.fStartVertex += info.fVertexCount;
794 instanceCount -= info.fInstanceCount;
bsalomon@google.com934c5702012-03-20 21:17:58 +0000795 }
796}
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000797
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000798////////////////////////////////////////////////////////////////////////////////
799
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000800GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry(
801 GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000802 int vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800803 size_t vertexStride,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000804 int indexCount) {
805 fTarget = NULL;
joshualitt9853cce2014-11-17 14:22:48 -0800806 this->set(target, vertexCount, vertexStride, indexCount);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000807}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000808
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000809GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() {
810 fTarget = NULL;
811}
812
813GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() {
814 this->reset();
815}
816
817bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000818 int vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800819 size_t vertexStride,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000820 int indexCount) {
821 this->reset();
822 fTarget = target;
823 bool success = true;
bsalomon49f085d2014-09-05 13:34:00 -0700824 if (fTarget) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000825 success = target->reserveVertexAndIndexSpace(vertexCount,
joshualitt9853cce2014-11-17 14:22:48 -0800826 vertexStride,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000827 indexCount,
828 &fVertices,
829 &fIndices);
830 if (!success) {
831 fTarget = NULL;
832 this->reset();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000833 }
834 }
bsalomon49f085d2014-09-05 13:34:00 -0700835 SkASSERT(success == SkToBool(fTarget));
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000836 return success;
837}
838
839void GrDrawTarget::AutoReleaseGeometry::reset() {
bsalomon49f085d2014-09-05 13:34:00 -0700840 if (fTarget) {
841 if (fVertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000842 fTarget->resetVertexSource();
843 }
bsalomon49f085d2014-09-05 13:34:00 -0700844 if (fIndices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000845 fTarget->resetIndexSource();
846 }
847 fTarget = NULL;
848 }
bsalomon@google.comcb0c5ab2011-06-29 17:48:17 +0000849 fVertices = NULL;
850 fIndices = NULL;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000851}
852
bsalomon@google.com8d67c072012-12-13 20:38:14 +0000853GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) {
854 fTarget = target;
855 fClip = fTarget->getClip();
856 fStack.init();
857 fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op);
858 fReplacementClip.fClipStack = fStack.get();
859 target->setClip(&fReplacementClip);
860}
861
bsalomon@google.com116ad842013-04-09 15:38:19 +0000862namespace {
863// returns true if the read/written rect intersects the src/dst and false if not.
864bool clip_srcrect_and_dstpoint(const GrSurface* dst,
865 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000866 const SkIRect& srcRect,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000867 const SkIPoint& dstPoint,
868 SkIRect* clippedSrcRect,
869 SkIPoint* clippedDstPoint) {
870 *clippedSrcRect = srcRect;
871 *clippedDstPoint = dstPoint;
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000872
bsalomon@google.com116ad842013-04-09 15:38:19 +0000873 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary
874 if (clippedSrcRect->fLeft < 0) {
875 clippedDstPoint->fX -= clippedSrcRect->fLeft;
876 clippedSrcRect->fLeft = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000877 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000878 if (clippedDstPoint->fX < 0) {
879 clippedSrcRect->fLeft -= clippedDstPoint->fX;
880 clippedDstPoint->fX = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000881 }
882
bsalomon@google.com116ad842013-04-09 15:38:19 +0000883 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary
884 if (clippedSrcRect->fTop < 0) {
885 clippedDstPoint->fY -= clippedSrcRect->fTop;
886 clippedSrcRect->fTop = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000887 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000888 if (clippedDstPoint->fY < 0) {
889 clippedSrcRect->fTop -= clippedDstPoint->fY;
890 clippedDstPoint->fY = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000891 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000892
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000893 // clip the right edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000894 if (clippedSrcRect->fRight > src->width()) {
895 clippedSrcRect->fRight = src->width();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000896 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000897 if (clippedDstPoint->fX + clippedSrcRect->width() > dst->width()) {
898 clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000899 }
900
901 // clip the bottom edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000902 if (clippedSrcRect->fBottom > src->height()) {
903 clippedSrcRect->fBottom = src->height();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000904 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000905 if (clippedDstPoint->fY + clippedSrcRect->height() > dst->height()) {
906 clippedSrcRect->fBottom = clippedSrcRect->fTop + dst->height() - clippedDstPoint->fY;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000907 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000908
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000909 // The above clipping steps may have inverted the rect if it didn't intersect either the src or
910 // dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000911 return !clippedSrcRect->isEmpty();
912}
913}
914
915bool GrDrawTarget::copySurface(GrSurface* dst,
916 GrSurface* src,
917 const SkIRect& srcRect,
918 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700919 SkASSERT(dst);
920 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000921
922 SkIRect clippedSrcRect;
923 SkIPoint clippedDstPoint;
924 // If the rect is outside the src or dst then we've already succeeded.
925 if (!clip_srcrect_and_dstpoint(dst,
926 src,
927 srcRect,
928 dstPoint,
929 &clippedSrcRect,
930 &clippedDstPoint)) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000931 return true;
932 }
933
bsalomonf90a02b2014-11-26 12:28:00 -0800934 if (this->onCopySurface(dst, src, clippedSrcRect, clippedDstPoint)) {
935 return true;
joshualitta7024152014-11-03 14:16:35 -0800936 }
937
938 GrRenderTarget* rt = dst->asRenderTarget();
939 GrTexture* tex = src->asTexture();
940
bsalomonf90a02b2014-11-26 12:28:00 -0800941 if ((dst == src) || !rt || !tex) {
942 return false;
943 }
944
joshualitt9853cce2014-11-17 14:22:48 -0800945 GrDrawState drawState;
946 drawState.setRenderTarget(rt);
joshualitta7024152014-11-03 14:16:35 -0800947 SkMatrix matrix;
948 matrix.setTranslate(SkIntToScalar(clippedSrcRect.fLeft - clippedDstPoint.fX),
949 SkIntToScalar(clippedSrcRect.fTop - clippedDstPoint.fY));
950 matrix.postIDiv(tex->width(), tex->height());
joshualitt9853cce2014-11-17 14:22:48 -0800951 drawState.addColorTextureProcessor(tex, matrix);
joshualitta7024152014-11-03 14:16:35 -0800952 SkIRect dstRect = SkIRect::MakeXYWH(clippedDstPoint.fX,
953 clippedDstPoint.fY,
954 clippedSrcRect.width(),
955 clippedSrcRect.height());
joshualitt2e3b3e32014-12-09 13:31:14 -0800956 this->drawSimpleRect(&drawState, GrColor_WHITE, dstRect);
joshualitta7024152014-11-03 14:16:35 -0800957 return true;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000958}
959
joshualitt9853cce2014-11-17 14:22:48 -0800960bool GrDrawTarget::canCopySurface(const GrSurface* dst,
961 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000962 const SkIRect& srcRect,
963 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700964 SkASSERT(dst);
965 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000966
967 SkIRect clippedSrcRect;
968 SkIPoint clippedDstPoint;
969 // If the rect is outside the src or dst then we're guaranteed success
970 if (!clip_srcrect_and_dstpoint(dst,
971 src,
972 srcRect,
973 dstPoint,
974 &clippedSrcRect,
975 &clippedDstPoint)) {
976 return true;
977 }
bsalomonf90a02b2014-11-26 12:28:00 -0800978 return this->internalCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
979}
bsalomon@google.com116ad842013-04-09 15:38:19 +0000980
bsalomonf90a02b2014-11-26 12:28:00 -0800981bool GrDrawTarget::internalCanCopySurface(const GrSurface* dst,
982 const GrSurface* src,
983 const SkIRect& clippedSrcRect,
984 const SkIPoint& clippedDstPoint) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000985 // Check that the read/write rects are contained within the src/dst bounds.
joshualitta7024152014-11-03 14:16:35 -0800986 SkASSERT(!clippedSrcRect.isEmpty());
987 SkASSERT(SkIRect::MakeWH(src->width(), src->height()).contains(clippedSrcRect));
988 SkASSERT(clippedDstPoint.fX >= 0 && clippedDstPoint.fY >= 0);
989 SkASSERT(clippedDstPoint.fX + clippedSrcRect.width() <= dst->width() &&
990 clippedDstPoint.fY + clippedSrcRect.height() <= dst->height());
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000991
bsalomonf90a02b2014-11-26 12:28:00 -0800992 // The base class can do it as a draw or the subclass may be able to handle it.
993 return ((dst != src) && dst->asRenderTarget() && src->asTexture()) ||
994 this->onCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
bsalomon@google.comeb851172013-04-15 13:51:00 +0000995}
996
bsalomon@google.combcce8922013-03-25 15:38:39 +0000997///////////////////////////////////////////////////////////////////////////////
998
bsalomon@google.comc26d94f2013-03-25 18:19:00 +0000999void GrDrawTargetCaps::reset() {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001000 fMipMapSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001001 fNPOTTextureTileSupport = false;
1002 fTwoSidedStencilSupport = false;
1003 fStencilWrapOpsSupport = false;
1004 fHWAALineSupport = false;
1005 fShaderDerivativeSupport = false;
1006 fGeometryShaderSupport = false;
skia.committer@gmail.come60ed082013-03-26 07:01:04 +00001007 fDualSourceBlendingSupport = false;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001008 fPathRenderingSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001009 fDstReadInShaderSupport = false;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001010 fDiscardRenderTargetSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001011 fReuseScratchTextures = true;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001012 fGpuTracingSupport = false;
krajcevski786978162014-07-30 11:25:44 -07001013 fCompressedTexSubImageSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001014
bsalomon63b21962014-11-05 07:05:34 -08001015 fUseDrawInsteadOfClear = false;
1016
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001017 fMapBufferFlags = kNone_MapFlags;
1018
bsalomon@google.combcce8922013-03-25 15:38:39 +00001019 fMaxRenderTargetSize = 0;
1020 fMaxTextureSize = 0;
1021 fMaxSampleCount = 0;
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001022
bsalomon17168df2014-12-09 09:00:49 -08001023 fShaderPrecisionVaries = false;
1024
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001025 memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001026 memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001027}
1028
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001029GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001030 fMipMapSupport = other.fMipMapSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001031 fNPOTTextureTileSupport = other.fNPOTTextureTileSupport;
1032 fTwoSidedStencilSupport = other.fTwoSidedStencilSupport;
1033 fStencilWrapOpsSupport = other.fStencilWrapOpsSupport;
1034 fHWAALineSupport = other.fHWAALineSupport;
1035 fShaderDerivativeSupport = other.fShaderDerivativeSupport;
1036 fGeometryShaderSupport = other.fGeometryShaderSupport;
1037 fDualSourceBlendingSupport = other.fDualSourceBlendingSupport;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001038 fPathRenderingSupport = other.fPathRenderingSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001039 fDstReadInShaderSupport = other.fDstReadInShaderSupport;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001040 fDiscardRenderTargetSupport = other.fDiscardRenderTargetSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001041 fReuseScratchTextures = other.fReuseScratchTextures;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001042 fGpuTracingSupport = other.fGpuTracingSupport;
krajcevski786978162014-07-30 11:25:44 -07001043 fCompressedTexSubImageSupport = other.fCompressedTexSubImageSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001044
bsalomon63b21962014-11-05 07:05:34 -08001045 fUseDrawInsteadOfClear = other.fUseDrawInsteadOfClear;
1046
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001047 fMapBufferFlags = other.fMapBufferFlags;
1048
bsalomon@google.combcce8922013-03-25 15:38:39 +00001049 fMaxRenderTargetSize = other.fMaxRenderTargetSize;
1050 fMaxTextureSize = other.fMaxTextureSize;
1051 fMaxSampleCount = other.fMaxSampleCount;
1052
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001053 memcpy(fConfigRenderSupport, other.fConfigRenderSupport, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001054 memcpy(fConfigTextureSupport, other.fConfigTextureSupport, sizeof(fConfigTextureSupport));
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001055
bsalomon17168df2014-12-09 09:00:49 -08001056 fShaderPrecisionVaries = other.fShaderPrecisionVaries;
1057 for (int s = 0; s < kGrShaderTypeCount; ++s) {
bsalomonc0bd6482014-12-09 10:04:14 -08001058 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
bsalomon17168df2014-12-09 09:00:49 -08001059 fFloatPrecisions[s][p] = other.fFloatPrecisions[s][p];
1060 }
1061 }
bsalomon@google.combcce8922013-03-25 15:38:39 +00001062 return *this;
1063}
1064
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001065static SkString map_flags_to_string(uint32_t flags) {
1066 SkString str;
1067 if (GrDrawTargetCaps::kNone_MapFlags == flags) {
1068 str = "none";
1069 } else {
1070 SkASSERT(GrDrawTargetCaps::kCanMap_MapFlag & flags);
1071 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kCanMap_MapFlag);
1072 str = "can_map";
1073
1074 if (GrDrawTargetCaps::kSubset_MapFlag & flags) {
1075 str.append(" partial");
1076 } else {
1077 str.append(" full");
1078 }
1079 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kSubset_MapFlag);
1080 }
1081 SkASSERT(0 == flags); // Make sure we handled all the flags.
1082 return str;
1083}
1084
bsalomon17168df2014-12-09 09:00:49 -08001085static const char* shader_type_to_string(GrShaderType type) {
1086 switch (type) {
1087 case kVertex_GrShaderType:
1088 return "vertex";
1089 case kGeometry_GrShaderType:
1090 return "geometry";
1091 case kFragment_GrShaderType:
1092 return "fragment";
1093 }
1094 return "";
1095}
1096
bsalomonc0bd6482014-12-09 10:04:14 -08001097static const char* precision_to_string(GrSLPrecision p) {
bsalomon17168df2014-12-09 09:00:49 -08001098 switch (p) {
bsalomonc0bd6482014-12-09 10:04:14 -08001099 case kLow_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001100 return "low";
bsalomonc0bd6482014-12-09 10:04:14 -08001101 case kMedium_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001102 return "medium";
bsalomonc0bd6482014-12-09 10:04:14 -08001103 case kHigh_GrSLPrecision:
bsalomon17168df2014-12-09 09:00:49 -08001104 return "high";
1105 }
1106 return "";
1107}
1108
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001109SkString GrDrawTargetCaps::dump() const {
1110 SkString r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001111 static const char* gNY[] = {"NO", "YES"};
bsalomon63b21962014-11-05 07:05:34 -08001112 r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]);
1113 r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]);
1114 r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]);
1115 r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
1116 r.appendf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]);
1117 r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]);
1118 r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
1119 r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]);
1120 r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]);
1121 r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]);
1122 r.appendf("Discard Render Target Support : %s\n", gNY[fDiscardRenderTargetSupport]);
1123 r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
1124 r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]);
1125 r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001126
bsalomon63b21962014-11-05 07:05:34 -08001127 r.appendf("Draw Instead of Clear [workaround] : %s\n", gNY[fUseDrawInsteadOfClear]);
1128
1129 r.appendf("Max Texture Size : %d\n", fMaxTextureSize);
1130 r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
1131 r.appendf("Max Sample Count : %d\n", fMaxSampleCount);
1132
1133 r.appendf("Map Buffer Support : %s\n",
1134 map_flags_to_string(fMapBufferFlags).c_str());
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001135
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001136 static const char* kConfigNames[] = {
1137 "Unknown", // kUnknown_GrPixelConfig
1138 "Alpha8", // kAlpha_8_GrPixelConfig,
1139 "Index8", // kIndex_8_GrPixelConfig,
1140 "RGB565", // kRGB_565_GrPixelConfig,
1141 "RGBA444", // kRGBA_4444_GrPixelConfig,
1142 "RGBA8888", // kRGBA_8888_GrPixelConfig,
1143 "BGRA8888", // kBGRA_8888_GrPixelConfig,
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001144 "ETC1", // kETC1_GrPixelConfig,
1145 "LATC", // kLATC_GrPixelConfig,
krajcevski238b4562014-06-30 09:09:22 -07001146 "R11EAC", // kR11_EAC_GrPixelConfig,
krajcevski7ef21622014-07-16 15:21:13 -07001147 "ASTC12x12",// kASTC_12x12_GrPixelConfig,
jvanverth28f9c602014-12-05 13:06:35 -08001148 "RGBAFloat",// kRGBA_float_GrPixelConfig
1149 "AlphaHalf",// kAlpha_half_GrPixelConfig
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001150 };
krajcevski7ef21622014-07-16 15:21:13 -07001151 GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig);
1152 GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig);
1153 GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig);
1154 GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig);
1155 GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig);
1156 GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig);
1157 GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig);
1158 GR_STATIC_ASSERT(7 == kETC1_GrPixelConfig);
1159 GR_STATIC_ASSERT(8 == kLATC_GrPixelConfig);
1160 GR_STATIC_ASSERT(9 == kR11_EAC_GrPixelConfig);
1161 GR_STATIC_ASSERT(10 == kASTC_12x12_GrPixelConfig);
1162 GR_STATIC_ASSERT(11 == kRGBA_float_GrPixelConfig);
jvanverth28f9c602014-12-05 13:06:35 -08001163 GR_STATIC_ASSERT(12 == kAlpha_half_GrPixelConfig);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001164 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt);
1165
commit-bot@chromium.org99017272013-11-08 18:45:27 +00001166 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]);
1167 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001168
1169 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1170 r.appendf("%s is renderable: %s, with MSAA: %s\n",
1171 kConfigNames[i],
1172 gNY[fConfigRenderSupport[i][0]],
1173 gNY[fConfigRenderSupport[i][1]]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001174 }
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001175
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001176 SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001177
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001178 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1179 r.appendf("%s is uploadable to a texture: %s\n",
1180 kConfigNames[i],
1181 gNY[fConfigTextureSupport[i]]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001182 }
1183
bsalomon17168df2014-12-09 09:00:49 -08001184 r.appendf("Shader Float Precisions (varies: %s):\n", gNY[fShaderPrecisionVaries]);
1185
1186 for (int s = 0; s < kGrShaderTypeCount; ++s) {
1187 GrShaderType shaderType = static_cast<GrShaderType>(s);
1188 r.appendf("\t%s:\n", shader_type_to_string(shaderType));
bsalomonc0bd6482014-12-09 10:04:14 -08001189 for (int p = 0; p < kGrSLPrecisionCount; ++p) {
bsalomon17168df2014-12-09 09:00:49 -08001190 if (fFloatPrecisions[s][p].supported()) {
bsalomonc0bd6482014-12-09 10:04:14 -08001191 GrSLPrecision precision = static_cast<GrSLPrecision>(p);
bsalomon17168df2014-12-09 09:00:49 -08001192 r.appendf("\t\t%s: log_low: %d log_high: %d bits: %d\n",
1193 precision_to_string(precision),
1194 fFloatPrecisions[s][p].fLogRangeLow,
1195 fFloatPrecisions[s][p].fLogRangeHigh,
1196 fFloatPrecisions[s][p].fBits);
1197 }
1198 }
1199 }
1200
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001201 return r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001202}
egdanielbc127a32014-09-19 12:07:43 -07001203
1204uint32_t GrDrawTargetCaps::CreateUniqueID() {
1205 static int32_t gUniqueID = SK_InvalidUniqueID;
1206 uint32_t id;
1207 do {
1208 id = static_cast<uint32_t>(sk_atomic_inc(&gUniqueID) + 1);
1209 } while (id == SK_InvalidUniqueID);
1210 return id;
1211}
1212
joshualitt2c93efe2014-11-06 12:57:13 -08001213///////////////////////////////////////////////////////////////////////////////////////////////////
1214
1215bool GrClipTarget::setupClip(const SkRect* devBounds,
1216 GrDrawState::AutoRestoreEffects* are,
1217 GrDrawState::AutoRestoreStencil* ars,
joshualitt9853cce2014-11-17 14:22:48 -08001218 GrDrawState* ds,
joshualitt2c93efe2014-11-06 12:57:13 -08001219 GrClipMaskManager::ScissorState* scissorState) {
joshualitt9853cce2014-11-17 14:22:48 -08001220 return fClipMaskManager.setupClipping(ds,
joshualitt2c93efe2014-11-06 12:57:13 -08001221 are,
1222 ars,
joshualitt9853cce2014-11-17 14:22:48 -08001223 scissorState,
1224 this->getClip(),
1225 devBounds);
joshualitt2c93efe2014-11-06 12:57:13 -08001226}