blob: 0d3a2390d511bad9e052bb577c7871c084f992ff [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
44 fDstCopy = di.fDstCopy;
45
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000046 return *this;
47}
48
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +000049#ifdef SK_DEBUG
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000050bool GrDrawTarget::DrawInfo::isInstanced() const {
51 if (fInstanceCount > 0) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000052 SkASSERT(0 == fIndexCount % fIndicesPerInstance);
53 SkASSERT(0 == fVertexCount % fVerticesPerInstance);
54 SkASSERT(fIndexCount / fIndicesPerInstance == fInstanceCount);
55 SkASSERT(fVertexCount / fVerticesPerInstance == fInstanceCount);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000056 // there is no way to specify a non-zero start index to drawIndexedInstances().
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000057 SkASSERT(0 == fStartIndex);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000058 return true;
59 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000060 SkASSERT(!fVerticesPerInstance);
61 SkASSERT(!fIndicesPerInstance);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000062 return false;
63 }
64}
65#endif
66
67void GrDrawTarget::DrawInfo::adjustInstanceCount(int instanceOffset) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000068 SkASSERT(this->isInstanced());
69 SkASSERT(instanceOffset + fInstanceCount >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000070 fInstanceCount += instanceOffset;
71 fVertexCount = fVerticesPerInstance * fInstanceCount;
72 fIndexCount = fIndicesPerInstance * fInstanceCount;
73}
74
75void GrDrawTarget::DrawInfo::adjustStartVertex(int vertexOffset) {
76 fStartVertex += vertexOffset;
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000077 SkASSERT(fStartVertex >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000078}
79
80void GrDrawTarget::DrawInfo::adjustStartIndex(int indexOffset) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000081 SkASSERT(this->isIndexed());
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000082 fStartIndex += indexOffset;
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000083 SkASSERT(fStartIndex >= 0);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +000084}
85
86////////////////////////////////////////////////////////////////////////////////
87
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000088#define DEBUG_INVAL_BUFFER 0xdeadcafe
89#define DEBUG_INVAL_START_IDX -1
90
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000091GrDrawTarget::GrDrawTarget(GrContext* context)
92 : fClip(NULL)
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +000093 , fContext(context)
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +000094 , fGpuTraceMarkerCount(0) {
bsalomon49f085d2014-09-05 13:34:00 -070095 SkASSERT(context);
bsalomon@google.com6e4e6502013-02-25 20:12:45 +000096
bsalomon@google.coma5d056a2012-03-27 15:59:58 +000097 fDrawState = &fDefaultDrawState;
98 // We assume that fDrawState always owns a ref to the object it points at.
99 fDefaultDrawState.ref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000100 GeometrySrcState& geoSrc = fGeoSrcStateStack.push_back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000101#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000102 geoSrc.fVertexCount = DEBUG_INVAL_START_IDX;
103 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
104 geoSrc.fIndexCount = DEBUG_INVAL_START_IDX;
105 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
reed@google.comac10a2d2010-12-22 21:39:39 +0000106#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000107 geoSrc.fVertexSrc = kNone_GeometrySrcType;
108 geoSrc.fIndexSrc = kNone_GeometrySrcType;
109}
110
111GrDrawTarget::~GrDrawTarget() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000112 SkASSERT(1 == fGeoSrcStateStack.count());
humper@google.com0e515772013-01-07 19:54:40 +0000113 SkDEBUGCODE(GeometrySrcState& geoSrc = fGeoSrcStateStack.back());
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000114 SkASSERT(kNone_GeometrySrcType == geoSrc.fIndexSrc);
115 SkASSERT(kNone_GeometrySrcType == geoSrc.fVertexSrc);
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000116 fDrawState->unref();
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000117}
118
119void GrDrawTarget::releaseGeometry() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000120 int popCnt = fGeoSrcStateStack.count() - 1;
121 while (popCnt) {
122 this->popGeometrySource();
123 --popCnt;
124 }
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000125 this->resetVertexSource();
126 this->resetIndexSource();
reed@google.comac10a2d2010-12-22 21:39:39 +0000127}
128
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000129void GrDrawTarget::setClip(const GrClipData* clip) {
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000130 clipWillBeSet(clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000131 fClip = clip;
132}
133
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000134const GrClipData* GrDrawTarget::getClip() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000135 return fClip;
136}
137
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000138void GrDrawTarget::setDrawState(GrDrawState* drawState) {
bsalomon49f085d2014-09-05 13:34:00 -0700139 SkASSERT(fDrawState);
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000140 if (NULL == drawState) {
141 drawState = &fDefaultDrawState;
142 }
143 if (fDrawState != drawState) {
144 fDrawState->unref();
145 drawState->ref();
146 fDrawState = drawState;
147 }
148}
149
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000150bool GrDrawTarget::reserveVertexSpace(size_t vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000151 int vertexCount,
152 void** vertices) {
153 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
154 bool acquired = false;
155 if (vertexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700156 SkASSERT(vertices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000157 this->releasePreviousVertexSource();
158 geoSrc.fVertexSrc = kNone_GeometrySrcType;
reed@google.comac10a2d2010-12-22 21:39:39 +0000159
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000160 acquired = this->onReserveVertexSpace(vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000161 vertexCount,
162 vertices);
reed@google.comac10a2d2010-12-22 21:39:39 +0000163 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000164 if (acquired) {
165 geoSrc.fVertexSrc = kReserved_GeometrySrcType;
166 geoSrc.fVertexCount = vertexCount;
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000167 geoSrc.fVertexSize = vertexSize;
bsalomon49f085d2014-09-05 13:34:00 -0700168 } else if (vertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000169 *vertices = NULL;
170 }
171 return acquired;
172}
173
174bool GrDrawTarget::reserveIndexSpace(int indexCount,
175 void** indices) {
176 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
177 bool acquired = false;
178 if (indexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700179 SkASSERT(indices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000180 this->releasePreviousIndexSource();
181 geoSrc.fIndexSrc = kNone_GeometrySrcType;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000182
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000183 acquired = this->onReserveIndexSpace(indexCount, indices);
184 }
185 if (acquired) {
186 geoSrc.fIndexSrc = kReserved_GeometrySrcType;
187 geoSrc.fIndexCount = indexCount;
bsalomon49f085d2014-09-05 13:34:00 -0700188 } else if (indices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000189 *indices = NULL;
190 }
191 return acquired;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000192
reed@google.comac10a2d2010-12-22 21:39:39 +0000193}
194
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000195bool GrDrawTarget::reserveVertexAndIndexSpace(int vertexCount,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000196 int indexCount,
197 void** vertices,
198 void** indices) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700199 size_t vertexStride = this->drawState()->getVertexStride();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000200 this->willReserveVertexAndIndexSpace(vertexCount, indexCount);
bsalomon@google.come3d70952012-03-13 12:40:53 +0000201 if (vertexCount) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700202 if (!this->reserveVertexSpace(vertexStride, vertexCount, vertices)) {
bsalomon@google.come3d70952012-03-13 12:40:53 +0000203 if (indexCount) {
204 this->resetIndexSource();
205 }
206 return false;
207 }
208 }
209 if (indexCount) {
210 if (!this->reserveIndexSpace(indexCount, indices)) {
211 if (vertexCount) {
212 this->resetVertexSource();
213 }
214 return false;
215 }
216 }
217 return true;
218}
219
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000220bool GrDrawTarget::geometryHints(int32_t* vertexCount,
reed@google.comac10a2d2010-12-22 21:39:39 +0000221 int32_t* indexCount) const {
bsalomon49f085d2014-09-05 13:34:00 -0700222 if (vertexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000223 *vertexCount = -1;
224 }
bsalomon49f085d2014-09-05 13:34:00 -0700225 if (indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000226 *indexCount = -1;
227 }
228 return false;
229}
230
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000231void GrDrawTarget::releasePreviousVertexSource() {
232 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
233 switch (geoSrc.fVertexSrc) {
234 case kNone_GeometrySrcType:
235 break;
236 case kArray_GeometrySrcType:
237 this->releaseVertexArray();
238 break;
239 case kReserved_GeometrySrcType:
240 this->releaseReservedVertexSpace();
241 break;
242 case kBuffer_GeometrySrcType:
243 geoSrc.fVertexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000244#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000245 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
246#endif
247 break;
248 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000249 SkFAIL("Unknown Vertex Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000250 break;
251 }
252}
253
254void GrDrawTarget::releasePreviousIndexSource() {
255 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
256 switch (geoSrc.fIndexSrc) {
257 case kNone_GeometrySrcType: // these two don't require
258 break;
259 case kArray_GeometrySrcType:
260 this->releaseIndexArray();
261 break;
262 case kReserved_GeometrySrcType:
263 this->releaseReservedIndexSpace();
264 break;
265 case kBuffer_GeometrySrcType:
266 geoSrc.fIndexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000267#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000268 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
269#endif
270 break;
271 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000272 SkFAIL("Unknown Index Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000273 break;
274 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000275}
276
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000277void GrDrawTarget::setVertexSourceToArray(const void* vertexArray,
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000278 int vertexCount) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000279 this->releasePreviousVertexSource();
280 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
281 geoSrc.fVertexSrc = kArray_GeometrySrcType;
egdaniel7b3d5ee2014-08-28 05:41:14 -0700282 geoSrc.fVertexSize = this->drawState()->getVertexStride();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000283 geoSrc.fVertexCount = vertexCount;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000284 this->onSetVertexSourceToArray(vertexArray, vertexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000285}
286
bsalomon@google.com1c13c962011-02-14 16:51:21 +0000287void GrDrawTarget::setIndexSourceToArray(const void* indexArray,
288 int indexCount) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000289 this->releasePreviousIndexSource();
290 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
291 geoSrc.fIndexSrc = kArray_GeometrySrcType;
292 geoSrc.fIndexCount = indexCount;
bsalomon@google.combcdbbe62011-04-12 15:40:00 +0000293 this->onSetIndexSourceToArray(indexArray, indexCount);
reed@google.comac10a2d2010-12-22 21:39:39 +0000294}
295
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000296void GrDrawTarget::setVertexSourceToBuffer(const GrVertexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000297 this->releasePreviousVertexSource();
298 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
299 geoSrc.fVertexSrc = kBuffer_GeometrySrcType;
300 geoSrc.fVertexBuffer = buffer;
301 buffer->ref();
egdaniel7b3d5ee2014-08-28 05:41:14 -0700302 geoSrc.fVertexSize = this->drawState()->getVertexStride();
reed@google.comac10a2d2010-12-22 21:39:39 +0000303}
304
305void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000306 this->releasePreviousIndexSource();
307 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
308 geoSrc.fIndexSrc = kBuffer_GeometrySrcType;
309 geoSrc.fIndexBuffer = buffer;
310 buffer->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000311}
312
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000313void GrDrawTarget::resetVertexSource() {
314 this->releasePreviousVertexSource();
315 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
316 geoSrc.fVertexSrc = kNone_GeometrySrcType;
317}
318
319void GrDrawTarget::resetIndexSource() {
320 this->releasePreviousIndexSource();
321 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
322 geoSrc.fIndexSrc = kNone_GeometrySrcType;
323}
324
325void GrDrawTarget::pushGeometrySource() {
326 this->geometrySourceWillPush();
327 GeometrySrcState& newState = fGeoSrcStateStack.push_back();
328 newState.fIndexSrc = kNone_GeometrySrcType;
329 newState.fVertexSrc = kNone_GeometrySrcType;
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000330#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000331 newState.fVertexCount = ~0;
332 newState.fVertexBuffer = (GrVertexBuffer*)~0;
333 newState.fIndexCount = ~0;
334 newState.fIndexBuffer = (GrIndexBuffer*)~0;
335#endif
336}
337
338void GrDrawTarget::popGeometrySource() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000339 // if popping last element then pops are unbalanced with pushes
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000340 SkASSERT(fGeoSrcStateStack.count() > 1);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000341
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000342 this->geometrySourceWillPop(fGeoSrcStateStack.fromBack(1));
343 this->releasePreviousVertexSource();
344 this->releasePreviousIndexSource();
345 fGeoSrcStateStack.pop_back();
346}
347
348////////////////////////////////////////////////////////////////////////////////
349
bsalomon@google.come8262622011-11-07 02:30:51 +0000350bool GrDrawTarget::checkDraw(GrPrimitiveType type, int startVertex,
351 int startIndex, int vertexCount,
352 int indexCount) const {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000353 const GrDrawState& drawState = this->getDrawState();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000354#ifdef SK_DEBUG
bsalomon@google.come8262622011-11-07 02:30:51 +0000355 const GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000356 int maxVertex = startVertex + vertexCount;
357 int maxValidVertex;
358 switch (geoSrc.fVertexSrc) {
359 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000360 SkFAIL("Attempting to draw without vertex src.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000361 case kReserved_GeometrySrcType: // fallthrough
362 case kArray_GeometrySrcType:
363 maxValidVertex = geoSrc.fVertexCount;
364 break;
365 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000366 maxValidVertex = static_cast<int>(geoSrc.fVertexBuffer->gpuMemorySize() / geoSrc.fVertexSize);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000367 break;
368 }
369 if (maxVertex > maxValidVertex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000370 SkFAIL("Drawing outside valid vertex range.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000371 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000372 if (indexCount > 0) {
373 int maxIndex = startIndex + indexCount;
374 int maxValidIndex;
375 switch (geoSrc.fIndexSrc) {
376 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000377 SkFAIL("Attempting to draw indexed geom without index src.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000378 case kReserved_GeometrySrcType: // fallthrough
379 case kArray_GeometrySrcType:
380 maxValidIndex = geoSrc.fIndexCount;
381 break;
382 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000383 maxValidIndex = static_cast<int>(geoSrc.fIndexBuffer->gpuMemorySize() / sizeof(uint16_t));
bsalomon@google.come8262622011-11-07 02:30:51 +0000384 break;
385 }
386 if (maxIndex > maxValidIndex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000387 SkFAIL("Index reads outside valid index range.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000388 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000389 }
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000390
bsalomon49f085d2014-09-05 13:34:00 -0700391 SkASSERT(drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000392
joshualittbd769d02014-09-04 08:56:46 -0700393 if (drawState.hasGeometryProcessor()) {
joshualitta5305a12014-10-10 17:47:00 -0700394 const GrGeometryProcessor* gp = drawState.getGeometryProcessor();
joshualittb0a8a372014-09-23 09:50:21 -0700395 int numTextures = gp->numTextures();
joshualittbd769d02014-09-04 08:56:46 -0700396 for (int t = 0; t < numTextures; ++t) {
joshualittb0a8a372014-09-23 09:50:21 -0700397 GrTexture* texture = gp->texture(t);
joshualittbd769d02014-09-04 08:56:46 -0700398 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
399 }
400 }
401
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000402 for (int s = 0; s < drawState.numColorStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700403 const GrProcessor* effect = drawState.getColorStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000404 int numTextures = effect->numTextures();
405 for (int t = 0; t < numTextures; ++t) {
406 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000407 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000408 }
409 }
410 for (int s = 0; s < drawState.numCoverageStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700411 const GrProcessor* effect = drawState.getCoverageStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000412 int numTextures = effect->numTextures();
413 for (int t = 0; t < numTextures; ++t) {
414 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000415 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000416 }
417 }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000418
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000419 SkASSERT(drawState.validateVertexAttribs());
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000420#endif
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000421 if (NULL == drawState.getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000422 return false;
423 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000424 return true;
425}
426
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000427bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
bsalomon@google.comb5158812013-05-13 18:50:25 +0000428 if (this->caps()->dstReadInShaderSupport() || !this->getDrawState().willEffectReadDstColor()) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000429 return true;
430 }
431 GrRenderTarget* rt = this->drawState()->getRenderTarget();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000432 SkIRect copyRect;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000433 const GrClipData* clip = this->getClip();
434 clip->getConservativeBounds(rt, &copyRect);
435
bsalomon49f085d2014-09-05 13:34:00 -0700436 if (drawBounds) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000437 SkIRect drawIBounds;
438 drawBounds->roundOut(&drawIBounds);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000439 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000440#ifdef SK_DEBUG
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000441 GrPrintf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n");
442#endif
443 return false;
444 }
445 } else {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000446#ifdef SK_DEBUG
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000447 //GrPrintf("No dev bounds when dst copy is made.\n");
448#endif
449 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000450
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000451 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
452 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700453 GrSurfaceDesc desc;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000454 this->initCopySurfaceDstDesc(rt, &desc);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000455 desc.fWidth = copyRect.width();
456 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000457
bsalomone3059732014-10-14 11:47:22 -0700458 SkAutoTUnref<GrTexture> copy(
459 fContext->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000460
bsalomone3059732014-10-14 11:47:22 -0700461 if (!copy) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000462 GrPrintf("Failed to create temporary copy of destination texture.\n");
463 return false;
464 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000465 SkIPoint dstPoint = {0, 0};
bsalomone3059732014-10-14 11:47:22 -0700466 if (this->copySurface(copy, rt, copyRect, dstPoint)) {
467 dstCopy->setTexture(copy);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000468 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000469 return true;
470 } else {
471 return false;
472 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000473}
474
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000475void GrDrawTarget::drawIndexed(GrPrimitiveType type,
476 int startVertex,
477 int startIndex,
478 int vertexCount,
479 int indexCount,
480 const SkRect* devBounds) {
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000481 if (indexCount > 0 && this->checkDraw(type, startVertex, startIndex, vertexCount, indexCount)) {
482 DrawInfo info;
483 info.fPrimitiveType = type;
484 info.fStartVertex = startVertex;
485 info.fStartIndex = startIndex;
486 info.fVertexCount = vertexCount;
487 info.fIndexCount = indexCount;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000488
489 info.fInstanceCount = 0;
490 info.fVerticesPerInstance = 0;
491 info.fIndicesPerInstance = 0;
492
bsalomon49f085d2014-09-05 13:34:00 -0700493 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000494 info.setDevBounds(*devBounds);
495 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000496 // TODO: We should continue with incorrect blending.
497 if (!this->setupDstReadIfNecessary(&info)) {
498 return;
499 }
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000500 this->onDraw(info);
bsalomon@google.com82145872011-08-23 14:32:40 +0000501 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000502}
503
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000504void GrDrawTarget::drawNonIndexed(GrPrimitiveType type,
505 int startVertex,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000506 int vertexCount,
507 const SkRect* devBounds) {
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000508 if (vertexCount > 0 && this->checkDraw(type, startVertex, -1, vertexCount, -1)) {
509 DrawInfo info;
510 info.fPrimitiveType = type;
511 info.fStartVertex = startVertex;
512 info.fStartIndex = 0;
513 info.fVertexCount = vertexCount;
514 info.fIndexCount = 0;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000515
516 info.fInstanceCount = 0;
517 info.fVerticesPerInstance = 0;
518 info.fIndicesPerInstance = 0;
519
bsalomon49f085d2014-09-05 13:34:00 -0700520 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000521 info.setDevBounds(*devBounds);
522 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000523 // TODO: We should continue with incorrect blending.
524 if (!this->setupDstReadIfNecessary(&info)) {
525 return;
526 }
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000527 this->onDraw(info);
bsalomon@google.com82145872011-08-23 14:32:40 +0000528 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000529}
530
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000531void GrDrawTarget::stencilPath(const GrPath* path, SkPath::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000532 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700533 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000534 SkASSERT(this->caps()->pathRenderingSupport());
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000535 SkASSERT(!SkPath::IsInverseFillType(fill));
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000536 this->onStencilPath(path, fill);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000537}
538
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000539void GrDrawTarget::drawPath(const GrPath* path, SkPath::FillType fill) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000540 // TODO: extract portions of checkDraw that are relevant to path rendering.
bsalomon49f085d2014-09-05 13:34:00 -0700541 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000542 SkASSERT(this->caps()->pathRenderingSupport());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000543 const GrDrawState* drawState = &getDrawState();
544
545 SkRect devBounds;
546 if (SkPath::IsInverseFillType(fill)) {
547 devBounds = SkRect::MakeWH(SkIntToScalar(drawState->getRenderTarget()->width()),
548 SkIntToScalar(drawState->getRenderTarget()->height()));
549 } else {
550 devBounds = path->getBounds();
551 }
552 SkMatrix viewM = drawState->getViewMatrix();
553 viewM.mapRect(&devBounds);
554
555 GrDeviceCoordTexture dstCopy;
556 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
557 return;
558 }
559
commit-bot@chromium.org32184d82013-10-09 15:14:18 +0000560 this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000561}
562
cdaltonb85a0aa2014-07-21 15:32:44 -0700563void GrDrawTarget::drawPaths(const GrPathRange* pathRange,
564 const uint32_t indices[], int count,
565 const float transforms[], PathTransformType transformsType,
566 SkPath::FillType fill) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000567 SkASSERT(this->caps()->pathRenderingSupport());
bsalomon49f085d2014-09-05 13:34:00 -0700568 SkASSERT(pathRange);
569 SkASSERT(indices);
570 SkASSERT(transforms);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000571
cdaltonb85a0aa2014-07-21 15:32:44 -0700572 // Don't compute a bounding box for setupDstReadIfNecessary(), we'll opt
573 // instead for it to just copy the entire dst. Realistically this is a moot
574 // point, because any context that supports NV_path_rendering will also
575 // support NV_blend_equation_advanced.
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000576 GrDeviceCoordTexture dstCopy;
cdaltonb85a0aa2014-07-21 15:32:44 -0700577 if (!this->setupDstReadIfNecessary(&dstCopy, NULL)) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000578 return;
579 }
580
cdaltonb85a0aa2014-07-21 15:32:44 -0700581 this->onDrawPaths(pathRange, indices, count, transforms, transformsType, fill,
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000582 dstCopy.texture() ? &dstCopy : NULL);
583}
584
egdaniel3eee3832014-06-18 13:09:11 -0700585typedef GrTraceMarkerSet::Iter TMIter;
586void GrDrawTarget::saveActiveTraceMarkers() {
587 if (this->caps()->gpuTracingSupport()) {
588 SkASSERT(0 == fStoredTraceMarkers.count());
589 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
590 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
591 this->removeGpuTraceMarker(&(*iter));
592 }
593 }
594}
595
596void GrDrawTarget::restoreActiveTraceMarkers() {
597 if (this->caps()->gpuTracingSupport()) {
598 SkASSERT(0 == fActiveTraceMarkers.count());
599 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
600 this->addGpuTraceMarker(&(*iter));
601 }
602 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
603 this->fStoredTraceMarkers.remove(*iter);
604 }
605 }
606}
607
608void GrDrawTarget::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000609 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000610 SkASSERT(fGpuTraceMarkerCount >= 0);
611 this->fActiveTraceMarkers.add(*marker);
612 this->didAddGpuTraceMarker();
613 ++fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000614 }
615}
616
egdaniel3eee3832014-06-18 13:09:11 -0700617void GrDrawTarget::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000618 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000619 SkASSERT(fGpuTraceMarkerCount >= 1);
620 this->fActiveTraceMarkers.remove(*marker);
621 this->didRemoveGpuTraceMarker();
622 --fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000623 }
624}
625
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000626////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000627
bsalomon@google.com934c5702012-03-20 21:17:58 +0000628void GrDrawTarget::drawIndexedInstances(GrPrimitiveType type,
629 int instanceCount,
630 int verticesPerInstance,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000631 int indicesPerInstance,
632 const SkRect* devBounds) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000633 if (!verticesPerInstance || !indicesPerInstance) {
634 return;
635 }
636
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000637 int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance;
638 if (!maxInstancesPerDraw) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000639 return;
640 }
641
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000642 DrawInfo info;
643 info.fPrimitiveType = type;
644 info.fStartIndex = 0;
645 info.fStartVertex = 0;
646 info.fIndicesPerInstance = indicesPerInstance;
647 info.fVerticesPerInstance = verticesPerInstance;
648
649 // Set the same bounds for all the draws.
bsalomon49f085d2014-09-05 13:34:00 -0700650 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000651 info.setDevBounds(*devBounds);
652 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000653 // TODO: We should continue with incorrect blending.
654 if (!this->setupDstReadIfNecessary(&info)) {
655 return;
656 }
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000657
bsalomon@google.com934c5702012-03-20 21:17:58 +0000658 while (instanceCount) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000659 info.fInstanceCount = SkTMin(instanceCount, maxInstancesPerDraw);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000660 info.fVertexCount = info.fInstanceCount * verticesPerInstance;
661 info.fIndexCount = info.fInstanceCount * indicesPerInstance;
662
663 if (this->checkDraw(type,
664 info.fStartVertex,
665 info.fStartIndex,
666 info.fVertexCount,
667 info.fIndexCount)) {
668 this->onDraw(info);
669 }
670 info.fStartVertex += info.fVertexCount;
671 instanceCount -= info.fInstanceCount;
bsalomon@google.com934c5702012-03-20 21:17:58 +0000672 }
673}
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000674
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000675////////////////////////////////////////////////////////////////////////////////
676
robertphillips@google.com42903302013-04-20 12:26:07 +0000677namespace {
678
679// position + (optional) texture coord
680extern const GrVertexAttrib gBWRectPosUVAttribs[] = {
681 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000682 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000683};
684
685void set_vertex_attributes(GrDrawState* drawState, bool hasUVs) {
686 if (hasUVs) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700687 drawState->setVertexAttribs<gBWRectPosUVAttribs>(2, 2 * sizeof(SkPoint));
robertphillips@google.com42903302013-04-20 12:26:07 +0000688 } else {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700689 drawState->setVertexAttribs<gBWRectPosUVAttribs>(1, sizeof(SkPoint));
robertphillips@google.com42903302013-04-20 12:26:07 +0000690 }
691}
692
693};
694
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000695void GrDrawTarget::onDrawRect(const SkRect& rect,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000696 const SkRect* localRect,
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000697 const SkMatrix* localMatrix) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000698
bsalomon49f085d2014-09-05 13:34:00 -0700699 set_vertex_attributes(this->drawState(), SkToBool(localRect));
robertphillips@google.com42903302013-04-20 12:26:07 +0000700
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000701 AutoReleaseGeometry geo(this, 4, 0);
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000702 if (!geo.succeeded()) {
703 GrPrintf("Failed to get space for vertices!\n");
704 return;
705 }
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000706
egdaniel7b3d5ee2014-08-28 05:41:14 -0700707 size_t vstride = this->drawState()->getVertexStride();
708 geo.positions()->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vstride);
bsalomon49f085d2014-09-05 13:34:00 -0700709 if (localRect) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000710 SkPoint* coords = GrTCast<SkPoint*>(GrTCast<intptr_t>(geo.vertices()) +
711 sizeof(SkPoint));
bsalomon@google.comc7818882013-03-20 19:19:53 +0000712 coords->setRectFan(localRect->fLeft, localRect->fTop,
713 localRect->fRight, localRect->fBottom,
egdaniel7b3d5ee2014-08-28 05:41:14 -0700714 vstride);
bsalomon49f085d2014-09-05 13:34:00 -0700715 if (localMatrix) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700716 localMatrix->mapPointsWithStride(coords, vstride, 4);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000717 }
718 }
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000719 SkRect bounds;
720 this->getDrawState().getViewMatrix().mapRect(&bounds, rect);
robertphillips@google.com8b129aa2012-10-05 15:37:00 +0000721
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000722 this->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4, &bounds);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000723}
724
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000725void GrDrawTarget::clipWillBeSet(const GrClipData* clipData) {
726}
727
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000728////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000729
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000730GrDrawTarget::AutoStateRestore::AutoStateRestore() {
731 fDrawTarget = NULL;
732}
reed@google.comac10a2d2010-12-22 21:39:39 +0000733
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000734GrDrawTarget::AutoStateRestore::AutoStateRestore(GrDrawTarget* target,
bsalomon@google.com137f1342013-05-29 21:27:53 +0000735 ASRInit init,
736 const SkMatrix* vm) {
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000737 fDrawTarget = NULL;
bsalomon@google.com137f1342013-05-29 21:27:53 +0000738 this->set(target, init, vm);
reed@google.comac10a2d2010-12-22 21:39:39 +0000739}
740
741GrDrawTarget::AutoStateRestore::~AutoStateRestore() {
bsalomon49f085d2014-09-05 13:34:00 -0700742 if (fDrawTarget) {
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000743 fDrawTarget->setDrawState(fSavedState);
744 fSavedState->unref();
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000745 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000746}
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000747
bsalomon@google.com137f1342013-05-29 21:27:53 +0000748void GrDrawTarget::AutoStateRestore::set(GrDrawTarget* target, ASRInit init, const SkMatrix* vm) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000749 SkASSERT(NULL == fDrawTarget);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000750 fDrawTarget = target;
751 fSavedState = target->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000752 SkASSERT(fSavedState);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000753 fSavedState->ref();
754 if (kReset_ASRInit == init) {
755 if (NULL == vm) {
756 // calls the default cons
757 fTempState.init();
758 } else {
759 SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*vm));
760 }
761 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000762 SkASSERT(kPreserve_ASRInit == init);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000763 if (NULL == vm) {
764 fTempState.set(*fSavedState);
765 } else {
766 SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*fSavedState, *vm));
767 }
768 }
769 target->setDrawState(fTempState.get());
770}
771
772bool GrDrawTarget::AutoStateRestore::setIdentity(GrDrawTarget* target, ASRInit init) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000773 SkASSERT(NULL == fDrawTarget);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000774 fDrawTarget = target;
775 fSavedState = target->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000776 SkASSERT(fSavedState);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000777 fSavedState->ref();
778 if (kReset_ASRInit == init) {
779 // calls the default cons
780 fTempState.init();
781 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000782 SkASSERT(kPreserve_ASRInit == init);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000783 // calls the copy cons
784 fTempState.set(*fSavedState);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000785 if (!fTempState.get()->setIdentityViewMatrix()) {
786 // let go of any resources held by the temp
787 fTempState.get()->reset();
788 fDrawTarget = NULL;
789 fSavedState->unref();
790 fSavedState = NULL;
791 return false;
792 }
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000793 }
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000794 target->setDrawState(fTempState.get());
bsalomon@google.com137f1342013-05-29 21:27:53 +0000795 return true;
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000796}
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000797
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000798////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000799
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,
803 int indexCount) {
804 fTarget = NULL;
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000805 this->set(target, vertexCount, indexCount);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000806}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000807
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000808GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() {
809 fTarget = NULL;
810}
811
812GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() {
813 this->reset();
814}
815
816bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000817 int vertexCount,
818 int indexCount) {
819 this->reset();
820 fTarget = target;
821 bool success = true;
bsalomon49f085d2014-09-05 13:34:00 -0700822 if (fTarget) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000823 success = target->reserveVertexAndIndexSpace(vertexCount,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000824 indexCount,
825 &fVertices,
826 &fIndices);
827 if (!success) {
828 fTarget = NULL;
829 this->reset();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000830 }
831 }
bsalomon49f085d2014-09-05 13:34:00 -0700832 SkASSERT(success == SkToBool(fTarget));
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000833 return success;
834}
835
836void GrDrawTarget::AutoReleaseGeometry::reset() {
bsalomon49f085d2014-09-05 13:34:00 -0700837 if (fTarget) {
838 if (fVertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000839 fTarget->resetVertexSource();
840 }
bsalomon49f085d2014-09-05 13:34:00 -0700841 if (fIndices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000842 fTarget->resetIndexSource();
843 }
844 fTarget = NULL;
845 }
bsalomon@google.comcb0c5ab2011-06-29 17:48:17 +0000846 fVertices = NULL;
847 fIndices = NULL;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000848}
849
bsalomon@google.com8d67c072012-12-13 20:38:14 +0000850GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) {
851 fTarget = target;
852 fClip = fTarget->getClip();
853 fStack.init();
854 fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op);
855 fReplacementClip.fClipStack = fStack.get();
856 target->setClip(&fReplacementClip);
857}
858
bsalomon@google.com116ad842013-04-09 15:38:19 +0000859namespace {
860// returns true if the read/written rect intersects the src/dst and false if not.
861bool clip_srcrect_and_dstpoint(const GrSurface* dst,
862 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000863 const SkIRect& srcRect,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000864 const SkIPoint& dstPoint,
865 SkIRect* clippedSrcRect,
866 SkIPoint* clippedDstPoint) {
867 *clippedSrcRect = srcRect;
868 *clippedDstPoint = dstPoint;
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000869
bsalomon@google.com116ad842013-04-09 15:38:19 +0000870 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary
871 if (clippedSrcRect->fLeft < 0) {
872 clippedDstPoint->fX -= clippedSrcRect->fLeft;
873 clippedSrcRect->fLeft = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000874 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000875 if (clippedDstPoint->fX < 0) {
876 clippedSrcRect->fLeft -= clippedDstPoint->fX;
877 clippedDstPoint->fX = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000878 }
879
bsalomon@google.com116ad842013-04-09 15:38:19 +0000880 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary
881 if (clippedSrcRect->fTop < 0) {
882 clippedDstPoint->fY -= clippedSrcRect->fTop;
883 clippedSrcRect->fTop = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000884 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000885 if (clippedDstPoint->fY < 0) {
886 clippedSrcRect->fTop -= clippedDstPoint->fY;
887 clippedDstPoint->fY = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000888 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000889
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000890 // clip the right edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000891 if (clippedSrcRect->fRight > src->width()) {
892 clippedSrcRect->fRight = src->width();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000893 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000894 if (clippedDstPoint->fX + clippedSrcRect->width() > dst->width()) {
895 clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000896 }
897
898 // clip the bottom edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000899 if (clippedSrcRect->fBottom > src->height()) {
900 clippedSrcRect->fBottom = src->height();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000901 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000902 if (clippedDstPoint->fY + clippedSrcRect->height() > dst->height()) {
903 clippedSrcRect->fBottom = clippedSrcRect->fTop + dst->height() - clippedDstPoint->fY;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000904 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000905
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000906 // The above clipping steps may have inverted the rect if it didn't intersect either the src or
907 // dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000908 return !clippedSrcRect->isEmpty();
909}
910}
911
912bool GrDrawTarget::copySurface(GrSurface* dst,
913 GrSurface* src,
914 const SkIRect& srcRect,
915 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700916 SkASSERT(dst);
917 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000918
919 SkIRect clippedSrcRect;
920 SkIPoint clippedDstPoint;
921 // If the rect is outside the src or dst then we've already succeeded.
922 if (!clip_srcrect_and_dstpoint(dst,
923 src,
924 srcRect,
925 dstPoint,
926 &clippedSrcRect,
927 &clippedDstPoint)) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000928 SkASSERT(this->canCopySurface(dst, src, srcRect, dstPoint));
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000929 return true;
930 }
931
932 bool result = this->onCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000933 SkASSERT(result == this->canCopySurface(dst, src, clippedSrcRect, clippedDstPoint));
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000934 return result;
935}
936
937bool GrDrawTarget::canCopySurface(GrSurface* dst,
938 GrSurface* src,
939 const SkIRect& srcRect,
940 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -0700941 SkASSERT(dst);
942 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +0000943
944 SkIRect clippedSrcRect;
945 SkIPoint clippedDstPoint;
946 // If the rect is outside the src or dst then we're guaranteed success
947 if (!clip_srcrect_and_dstpoint(dst,
948 src,
949 srcRect,
950 dstPoint,
951 &clippedSrcRect,
952 &clippedDstPoint)) {
953 return true;
954 }
955 return this->onCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint);
956}
957
958bool GrDrawTarget::onCanCopySurface(GrSurface* dst,
959 GrSurface* src,
960 const SkIRect& srcRect,
961 const SkIPoint& dstPoint) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000962 // Check that the read/write rects are contained within the src/dst bounds.
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000963 SkASSERT(!srcRect.isEmpty());
964 SkASSERT(SkIRect::MakeWH(src->width(), src->height()).contains(srcRect));
965 SkASSERT(dstPoint.fX >= 0 && dstPoint.fY >= 0);
966 SkASSERT(dstPoint.fX + srcRect.width() <= dst->width() &&
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000967 dstPoint.fY + srcRect.height() <= dst->height());
968
bsalomonafbf2d62014-09-30 12:18:44 -0700969 return !dst->surfacePriv().isSameAs(src) && dst->asRenderTarget() && src->asTexture();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000970}
971
972bool GrDrawTarget::onCopySurface(GrSurface* dst,
973 GrSurface* src,
974 const SkIRect& srcRect,
975 const SkIPoint& dstPoint) {
bsalomon@google.com116ad842013-04-09 15:38:19 +0000976 if (!GrDrawTarget::onCanCopySurface(dst, src, srcRect, dstPoint)) {
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000977 return false;
978 }
979
980 GrRenderTarget* rt = dst->asRenderTarget();
981 GrTexture* tex = src->asTexture();
982
983 GrDrawTarget::AutoStateRestore asr(this, kReset_ASRInit);
984 this->drawState()->setRenderTarget(rt);
985 SkMatrix matrix;
986 matrix.setTranslate(SkIntToScalar(srcRect.fLeft - dstPoint.fX),
987 SkIntToScalar(srcRect.fTop - dstPoint.fY));
988 matrix.postIDiv(tex->width(), tex->height());
joshualittb0a8a372014-09-23 09:50:21 -0700989 this->drawState()->addColorTextureProcessor(tex, matrix);
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000990 SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX,
991 dstPoint.fY,
992 srcRect.width(),
993 srcRect.height());
994 this->drawSimpleRect(dstRect);
995 return true;
996}
997
bsalomonf2703d82014-10-28 14:33:06 -0700998void GrDrawTarget::initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) {
bsalomon@google.comeb851172013-04-15 13:51:00 +0000999 // Make the dst of the copy be a render target because the default copySurface draws to the dst.
1000 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomonf2703d82014-10-28 14:33:06 -07001001 desc->fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
bsalomon@google.comeb851172013-04-15 13:51:00 +00001002 desc->fConfig = src->config();
1003}
1004
bsalomon@google.combcce8922013-03-25 15:38:39 +00001005///////////////////////////////////////////////////////////////////////////////
1006
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001007void GrDrawTargetCaps::reset() {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001008 fMipMapSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001009 fNPOTTextureTileSupport = false;
1010 fTwoSidedStencilSupport = false;
1011 fStencilWrapOpsSupport = false;
1012 fHWAALineSupport = false;
1013 fShaderDerivativeSupport = false;
1014 fGeometryShaderSupport = false;
skia.committer@gmail.come60ed082013-03-26 07:01:04 +00001015 fDualSourceBlendingSupport = false;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001016 fPathRenderingSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001017 fDstReadInShaderSupport = false;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001018 fDiscardRenderTargetSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001019 fReuseScratchTextures = true;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001020 fGpuTracingSupport = false;
krajcevski786978162014-07-30 11:25:44 -07001021 fCompressedTexSubImageSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001022
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001023 fMapBufferFlags = kNone_MapFlags;
1024
bsalomon@google.combcce8922013-03-25 15:38:39 +00001025 fMaxRenderTargetSize = 0;
1026 fMaxTextureSize = 0;
1027 fMaxSampleCount = 0;
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001028
1029 memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001030 memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001031}
1032
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001033GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001034 fMipMapSupport = other.fMipMapSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001035 fNPOTTextureTileSupport = other.fNPOTTextureTileSupport;
1036 fTwoSidedStencilSupport = other.fTwoSidedStencilSupport;
1037 fStencilWrapOpsSupport = other.fStencilWrapOpsSupport;
1038 fHWAALineSupport = other.fHWAALineSupport;
1039 fShaderDerivativeSupport = other.fShaderDerivativeSupport;
1040 fGeometryShaderSupport = other.fGeometryShaderSupport;
1041 fDualSourceBlendingSupport = other.fDualSourceBlendingSupport;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001042 fPathRenderingSupport = other.fPathRenderingSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001043 fDstReadInShaderSupport = other.fDstReadInShaderSupport;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001044 fDiscardRenderTargetSupport = other.fDiscardRenderTargetSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001045 fReuseScratchTextures = other.fReuseScratchTextures;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001046 fGpuTracingSupport = other.fGpuTracingSupport;
krajcevski786978162014-07-30 11:25:44 -07001047 fCompressedTexSubImageSupport = other.fCompressedTexSubImageSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001048
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001049 fMapBufferFlags = other.fMapBufferFlags;
1050
bsalomon@google.combcce8922013-03-25 15:38:39 +00001051 fMaxRenderTargetSize = other.fMaxRenderTargetSize;
1052 fMaxTextureSize = other.fMaxTextureSize;
1053 fMaxSampleCount = other.fMaxSampleCount;
1054
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001055 memcpy(fConfigRenderSupport, other.fConfigRenderSupport, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001056 memcpy(fConfigTextureSupport, other.fConfigTextureSupport, sizeof(fConfigTextureSupport));
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001057
bsalomon@google.combcce8922013-03-25 15:38:39 +00001058 return *this;
1059}
1060
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001061static SkString map_flags_to_string(uint32_t flags) {
1062 SkString str;
1063 if (GrDrawTargetCaps::kNone_MapFlags == flags) {
1064 str = "none";
1065 } else {
1066 SkASSERT(GrDrawTargetCaps::kCanMap_MapFlag & flags);
1067 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kCanMap_MapFlag);
1068 str = "can_map";
1069
1070 if (GrDrawTargetCaps::kSubset_MapFlag & flags) {
1071 str.append(" partial");
1072 } else {
1073 str.append(" full");
1074 }
1075 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kSubset_MapFlag);
1076 }
1077 SkASSERT(0 == flags); // Make sure we handled all the flags.
1078 return str;
1079}
1080
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001081SkString GrDrawTargetCaps::dump() const {
1082 SkString r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001083 static const char* gNY[] = {"NO", "YES"};
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001084 r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]);
1085 r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]);
1086 r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]);
1087 r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
1088 r.appendf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]);
1089 r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]);
1090 r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
1091 r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001092 r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]);
1093 r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]);
1094 r.appendf("Discard Render Target Support: %s\n", gNY[fDiscardRenderTargetSupport]);
1095 r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
1096 r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]);
krajcevski786978162014-07-30 11:25:44 -07001097 r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]);
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001098 r.appendf("Max Texture Size : %d\n", fMaxTextureSize);
1099 r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
1100 r.appendf("Max Sample Count : %d\n", fMaxSampleCount);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001101
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001102 r.appendf("Map Buffer Support : %s\n", map_flags_to_string(fMapBufferFlags).c_str());
1103
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001104 static const char* kConfigNames[] = {
1105 "Unknown", // kUnknown_GrPixelConfig
1106 "Alpha8", // kAlpha_8_GrPixelConfig,
1107 "Index8", // kIndex_8_GrPixelConfig,
1108 "RGB565", // kRGB_565_GrPixelConfig,
1109 "RGBA444", // kRGBA_4444_GrPixelConfig,
1110 "RGBA8888", // kRGBA_8888_GrPixelConfig,
1111 "BGRA8888", // kBGRA_8888_GrPixelConfig,
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001112 "ETC1", // kETC1_GrPixelConfig,
1113 "LATC", // kLATC_GrPixelConfig,
krajcevski238b4562014-06-30 09:09:22 -07001114 "R11EAC", // kR11_EAC_GrPixelConfig,
krajcevski7ef21622014-07-16 15:21:13 -07001115 "ASTC12x12",// kASTC_12x12_GrPixelConfig,
joshualittee5da552014-07-16 13:32:56 -07001116 "RGBAFloat", // kRGBA_float_GrPixelConfig
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001117 };
krajcevski7ef21622014-07-16 15:21:13 -07001118 GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig);
1119 GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig);
1120 GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig);
1121 GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig);
1122 GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig);
1123 GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig);
1124 GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig);
1125 GR_STATIC_ASSERT(7 == kETC1_GrPixelConfig);
1126 GR_STATIC_ASSERT(8 == kLATC_GrPixelConfig);
1127 GR_STATIC_ASSERT(9 == kR11_EAC_GrPixelConfig);
1128 GR_STATIC_ASSERT(10 == kASTC_12x12_GrPixelConfig);
1129 GR_STATIC_ASSERT(11 == kRGBA_float_GrPixelConfig);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001130 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt);
1131
commit-bot@chromium.org99017272013-11-08 18:45:27 +00001132 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]);
1133 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001134
1135 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1136 r.appendf("%s is renderable: %s, with MSAA: %s\n",
1137 kConfigNames[i],
1138 gNY[fConfigRenderSupport[i][0]],
1139 gNY[fConfigRenderSupport[i][1]]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001140 }
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001141
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001142 SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001143
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001144 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1145 r.appendf("%s is uploadable to a texture: %s\n",
1146 kConfigNames[i],
1147 gNY[fConfigTextureSupport[i]]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001148 }
1149
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001150 return r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001151}
egdanielbc127a32014-09-19 12:07:43 -07001152
1153uint32_t GrDrawTargetCaps::CreateUniqueID() {
1154 static int32_t gUniqueID = SK_InvalidUniqueID;
1155 uint32_t id;
1156 do {
1157 id = static_cast<uint32_t>(sk_atomic_inc(&gUniqueID) + 1);
1158 } while (id == SK_InvalidUniqueID);
1159 return id;
1160}
1161