blob: 89300f7e5f0b93b81d7ed27e204940771b1bdc5f [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.coma5d056a2012-03-27 15:59:58 +000096 fDrawState = &fDefaultDrawState;
97 // We assume that fDrawState always owns a ref to the object it points at.
98 fDefaultDrawState.ref();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +000099 GeometrySrcState& geoSrc = fGeoSrcStateStack.push_back();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000100#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000101 geoSrc.fVertexCount = DEBUG_INVAL_START_IDX;
102 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
103 geoSrc.fIndexCount = DEBUG_INVAL_START_IDX;
104 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
reed@google.comac10a2d2010-12-22 21:39:39 +0000105#endif
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000106 geoSrc.fVertexSrc = kNone_GeometrySrcType;
107 geoSrc.fIndexSrc = kNone_GeometrySrcType;
108}
109
110GrDrawTarget::~GrDrawTarget() {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000111 SkASSERT(1 == fGeoSrcStateStack.count());
humper@google.com0e515772013-01-07 19:54:40 +0000112 SkDEBUGCODE(GeometrySrcState& geoSrc = fGeoSrcStateStack.back());
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000113 SkASSERT(kNone_GeometrySrcType == geoSrc.fIndexSrc);
114 SkASSERT(kNone_GeometrySrcType == geoSrc.fVertexSrc);
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000115 fDrawState->unref();
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000116}
117
118void GrDrawTarget::releaseGeometry() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000119 int popCnt = fGeoSrcStateStack.count() - 1;
120 while (popCnt) {
121 this->popGeometrySource();
122 --popCnt;
123 }
bsalomon@google.com4a018bb2011-10-28 19:50:21 +0000124 this->resetVertexSource();
125 this->resetIndexSource();
reed@google.comac10a2d2010-12-22 21:39:39 +0000126}
127
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000128void GrDrawTarget::setClip(const GrClipData* clip) {
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000129 clipWillBeSet(clip);
reed@google.comac10a2d2010-12-22 21:39:39 +0000130 fClip = clip;
131}
132
robertphillips@google.combeb1af72012-07-26 18:52:16 +0000133const GrClipData* GrDrawTarget::getClip() const {
reed@google.comac10a2d2010-12-22 21:39:39 +0000134 return fClip;
135}
136
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000137void GrDrawTarget::setDrawState(GrDrawState* drawState) {
bsalomon49f085d2014-09-05 13:34:00 -0700138 SkASSERT(fDrawState);
bsalomon@google.coma5d056a2012-03-27 15:59:58 +0000139 if (NULL == drawState) {
140 drawState = &fDefaultDrawState;
141 }
142 if (fDrawState != drawState) {
143 fDrawState->unref();
144 drawState->ref();
145 fDrawState = drawState;
146 }
147}
148
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000149bool GrDrawTarget::reserveVertexSpace(size_t vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000150 int vertexCount,
151 void** vertices) {
152 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
153 bool acquired = false;
154 if (vertexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700155 SkASSERT(vertices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000156 this->releasePreviousVertexSource();
157 geoSrc.fVertexSrc = kNone_GeometrySrcType;
reed@google.comac10a2d2010-12-22 21:39:39 +0000158
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000159 acquired = this->onReserveVertexSpace(vertexSize,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000160 vertexCount,
161 vertices);
reed@google.comac10a2d2010-12-22 21:39:39 +0000162 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000163 if (acquired) {
164 geoSrc.fVertexSrc = kReserved_GeometrySrcType;
165 geoSrc.fVertexCount = vertexCount;
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000166 geoSrc.fVertexSize = vertexSize;
bsalomon49f085d2014-09-05 13:34:00 -0700167 } else if (vertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000168 *vertices = NULL;
169 }
170 return acquired;
171}
172
173bool GrDrawTarget::reserveIndexSpace(int indexCount,
174 void** indices) {
175 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
176 bool acquired = false;
177 if (indexCount > 0) {
bsalomon49f085d2014-09-05 13:34:00 -0700178 SkASSERT(indices);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000179 this->releasePreviousIndexSource();
180 geoSrc.fIndexSrc = kNone_GeometrySrcType;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000181
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000182 acquired = this->onReserveIndexSpace(indexCount, indices);
183 }
184 if (acquired) {
185 geoSrc.fIndexSrc = kReserved_GeometrySrcType;
186 geoSrc.fIndexCount = indexCount;
bsalomon49f085d2014-09-05 13:34:00 -0700187 } else if (indices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000188 *indices = NULL;
189 }
190 return acquired;
rmistry@google.comd6176b02012-08-23 18:14:13 +0000191
reed@google.comac10a2d2010-12-22 21:39:39 +0000192}
193
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000194bool GrDrawTarget::reserveVertexAndIndexSpace(int vertexCount,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000195 int indexCount,
196 void** vertices,
197 void** indices) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700198 size_t vertexStride = this->drawState()->getVertexStride();
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000199 this->willReserveVertexAndIndexSpace(vertexCount, indexCount);
bsalomon@google.come3d70952012-03-13 12:40:53 +0000200 if (vertexCount) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700201 if (!this->reserveVertexSpace(vertexStride, vertexCount, vertices)) {
bsalomon@google.come3d70952012-03-13 12:40:53 +0000202 if (indexCount) {
203 this->resetIndexSource();
204 }
205 return false;
206 }
207 }
208 if (indexCount) {
209 if (!this->reserveIndexSpace(indexCount, indices)) {
210 if (vertexCount) {
211 this->resetVertexSource();
212 }
213 return false;
214 }
215 }
216 return true;
217}
218
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000219bool GrDrawTarget::geometryHints(int32_t* vertexCount,
reed@google.comac10a2d2010-12-22 21:39:39 +0000220 int32_t* indexCount) const {
bsalomon49f085d2014-09-05 13:34:00 -0700221 if (vertexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000222 *vertexCount = -1;
223 }
bsalomon49f085d2014-09-05 13:34:00 -0700224 if (indexCount) {
reed@google.comac10a2d2010-12-22 21:39:39 +0000225 *indexCount = -1;
226 }
227 return false;
228}
229
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000230void GrDrawTarget::releasePreviousVertexSource() {
231 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
232 switch (geoSrc.fVertexSrc) {
233 case kNone_GeometrySrcType:
234 break;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000235 case kReserved_GeometrySrcType:
236 this->releaseReservedVertexSpace();
237 break;
238 case kBuffer_GeometrySrcType:
239 geoSrc.fVertexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000240#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000241 geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER;
242#endif
243 break;
244 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000245 SkFAIL("Unknown Vertex Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000246 break;
247 }
248}
249
250void GrDrawTarget::releasePreviousIndexSource() {
251 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
252 switch (geoSrc.fIndexSrc) {
253 case kNone_GeometrySrcType: // these two don't require
254 break;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000255 case kReserved_GeometrySrcType:
256 this->releaseReservedIndexSpace();
257 break;
258 case kBuffer_GeometrySrcType:
259 geoSrc.fIndexBuffer->unref();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000260#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000261 geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER;
262#endif
263 break;
264 default:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000265 SkFAIL("Unknown Index Source Type.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000266 break;
267 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000268}
269
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000270void GrDrawTarget::setVertexSourceToBuffer(const GrVertexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000271 this->releasePreviousVertexSource();
272 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
273 geoSrc.fVertexSrc = kBuffer_GeometrySrcType;
274 geoSrc.fVertexBuffer = buffer;
275 buffer->ref();
egdaniel7b3d5ee2014-08-28 05:41:14 -0700276 geoSrc.fVertexSize = this->drawState()->getVertexStride();
reed@google.comac10a2d2010-12-22 21:39:39 +0000277}
278
279void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000280 this->releasePreviousIndexSource();
281 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
282 geoSrc.fIndexSrc = kBuffer_GeometrySrcType;
283 geoSrc.fIndexBuffer = buffer;
284 buffer->ref();
reed@google.comac10a2d2010-12-22 21:39:39 +0000285}
286
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000287void GrDrawTarget::resetVertexSource() {
288 this->releasePreviousVertexSource();
289 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
290 geoSrc.fVertexSrc = kNone_GeometrySrcType;
291}
292
293void GrDrawTarget::resetIndexSource() {
294 this->releasePreviousIndexSource();
295 GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
296 geoSrc.fIndexSrc = kNone_GeometrySrcType;
297}
298
299void GrDrawTarget::pushGeometrySource() {
300 this->geometrySourceWillPush();
301 GeometrySrcState& newState = fGeoSrcStateStack.push_back();
302 newState.fIndexSrc = kNone_GeometrySrcType;
303 newState.fVertexSrc = kNone_GeometrySrcType;
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000304#ifdef SK_DEBUG
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000305 newState.fVertexCount = ~0;
306 newState.fVertexBuffer = (GrVertexBuffer*)~0;
307 newState.fIndexCount = ~0;
308 newState.fIndexBuffer = (GrIndexBuffer*)~0;
309#endif
310}
311
312void GrDrawTarget::popGeometrySource() {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000313 // if popping last element then pops are unbalanced with pushes
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000314 SkASSERT(fGeoSrcStateStack.count() > 1);
rmistry@google.comd6176b02012-08-23 18:14:13 +0000315
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000316 this->geometrySourceWillPop(fGeoSrcStateStack.fromBack(1));
317 this->releasePreviousVertexSource();
318 this->releasePreviousIndexSource();
319 fGeoSrcStateStack.pop_back();
320}
321
322////////////////////////////////////////////////////////////////////////////////
323
bsalomon@google.come8262622011-11-07 02:30:51 +0000324bool GrDrawTarget::checkDraw(GrPrimitiveType type, int startVertex,
325 int startIndex, int vertexCount,
326 int indexCount) const {
bsalomon@google.comcddaf342012-07-30 13:09:05 +0000327 const GrDrawState& drawState = this->getDrawState();
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000328#ifdef SK_DEBUG
bsalomon@google.come8262622011-11-07 02:30:51 +0000329 const GeometrySrcState& geoSrc = fGeoSrcStateStack.back();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000330 int maxVertex = startVertex + vertexCount;
331 int maxValidVertex;
332 switch (geoSrc.fVertexSrc) {
333 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000334 SkFAIL("Attempting to draw without vertex src.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000335 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000336 maxValidVertex = geoSrc.fVertexCount;
337 break;
338 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000339 maxValidVertex = static_cast<int>(geoSrc.fVertexBuffer->gpuMemorySize() / geoSrc.fVertexSize);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000340 break;
341 }
342 if (maxVertex > maxValidVertex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000343 SkFAIL("Drawing outside valid vertex range.");
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000344 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000345 if (indexCount > 0) {
346 int maxIndex = startIndex + indexCount;
347 int maxValidIndex;
348 switch (geoSrc.fIndexSrc) {
349 case kNone_GeometrySrcType:
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000350 SkFAIL("Attempting to draw indexed geom without index src.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000351 case kReserved_GeometrySrcType: // fallthrough
bsalomon@google.come8262622011-11-07 02:30:51 +0000352 maxValidIndex = geoSrc.fIndexCount;
353 break;
354 case kBuffer_GeometrySrcType:
commit-bot@chromium.org089a7802014-05-02 21:38:22 +0000355 maxValidIndex = static_cast<int>(geoSrc.fIndexBuffer->gpuMemorySize() / sizeof(uint16_t));
bsalomon@google.come8262622011-11-07 02:30:51 +0000356 break;
357 }
358 if (maxIndex > maxValidIndex) {
commit-bot@chromium.org88cb22b2014-04-30 14:17:00 +0000359 SkFAIL("Index reads outside valid index range.");
bsalomon@google.come8262622011-11-07 02:30:51 +0000360 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000361 }
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000362
bsalomon49f085d2014-09-05 13:34:00 -0700363 SkASSERT(drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000364
joshualittbd769d02014-09-04 08:56:46 -0700365 if (drawState.hasGeometryProcessor()) {
joshualitta5305a12014-10-10 17:47:00 -0700366 const GrGeometryProcessor* gp = drawState.getGeometryProcessor();
joshualittb0a8a372014-09-23 09:50:21 -0700367 int numTextures = gp->numTextures();
joshualittbd769d02014-09-04 08:56:46 -0700368 for (int t = 0; t < numTextures; ++t) {
joshualittb0a8a372014-09-23 09:50:21 -0700369 GrTexture* texture = gp->texture(t);
joshualittbd769d02014-09-04 08:56:46 -0700370 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
371 }
372 }
373
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000374 for (int s = 0; s < drawState.numColorStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700375 const GrProcessor* effect = drawState.getColorStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000376 int numTextures = effect->numTextures();
377 for (int t = 0; t < numTextures; ++t) {
378 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000379 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000380 }
381 }
382 for (int s = 0; s < drawState.numCoverageStages(); ++s) {
joshualittb0a8a372014-09-23 09:50:21 -0700383 const GrProcessor* effect = drawState.getCoverageStage(s).getProcessor();
bsalomon@google.comeb6879f2013-06-13 19:34:18 +0000384 int numTextures = effect->numTextures();
385 for (int t = 0; t < numTextures; ++t) {
386 GrTexture* texture = effect->texture(t);
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000387 SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget());
bsalomon@google.comb4725b42012-03-30 17:24:17 +0000388 }
389 }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000390
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000391 SkASSERT(drawState.validateVertexAttribs());
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000392#endif
bsalomon@google.com8f9cbd62011-12-09 15:55:34 +0000393 if (NULL == drawState.getRenderTarget()) {
bsalomon@google.com0ba52fc2011-11-10 22:16:06 +0000394 return false;
395 }
bsalomon@google.come8262622011-11-07 02:30:51 +0000396 return true;
397}
398
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000399bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) {
bsalomon@google.comb5158812013-05-13 18:50:25 +0000400 if (this->caps()->dstReadInShaderSupport() || !this->getDrawState().willEffectReadDstColor()) {
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000401 return true;
402 }
403 GrRenderTarget* rt = this->drawState()->getRenderTarget();
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000404 SkIRect copyRect;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000405 const GrClipData* clip = this->getClip();
406 clip->getConservativeBounds(rt, &copyRect);
407
bsalomon49f085d2014-09-05 13:34:00 -0700408 if (drawBounds) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000409 SkIRect drawIBounds;
410 drawBounds->roundOut(&drawIBounds);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000411 if (!copyRect.intersect(drawIBounds)) {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000412#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700413 SkDebugf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000414#endif
415 return false;
416 }
417 } else {
commit-bot@chromium.org515dcd32013-08-28 14:17:03 +0000418#ifdef SK_DEBUG
tfarina38406c82014-10-31 07:11:12 -0700419 //SkDebugf("No dev bounds when dst copy is made.\n");
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000420#endif
421 }
skia.committer@gmail.com05a2ee02013-04-02 07:01:34 +0000422
commit-bot@chromium.org63150af2013-04-11 22:00:22 +0000423 // MSAA consideration: When there is support for reading MSAA samples in the shader we could
424 // have per-sample dst values by making the copy multisampled.
bsalomonf2703d82014-10-28 14:33:06 -0700425 GrSurfaceDesc desc;
bsalomon@google.comeb851172013-04-15 13:51:00 +0000426 this->initCopySurfaceDstDesc(rt, &desc);
commit-bot@chromium.orgbb5c4652013-04-01 12:49:31 +0000427 desc.fWidth = copyRect.width();
428 desc.fHeight = copyRect.height();
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000429
bsalomone3059732014-10-14 11:47:22 -0700430 SkAutoTUnref<GrTexture> copy(
431 fContext->refScratchTexture(desc, GrContext::kApprox_ScratchTexMatch));
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000432
bsalomone3059732014-10-14 11:47:22 -0700433 if (!copy) {
tfarina38406c82014-10-31 07:11:12 -0700434 SkDebugf("Failed to create temporary copy of destination texture.\n");
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000435 return false;
436 }
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000437 SkIPoint dstPoint = {0, 0};
bsalomone3059732014-10-14 11:47:22 -0700438 if (this->copySurface(copy, rt, copyRect, dstPoint)) {
439 dstCopy->setTexture(copy);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000440 dstCopy->setOffset(copyRect.fLeft, copyRect.fTop);
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000441 return true;
442 } else {
443 return false;
444 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000445}
446
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000447void GrDrawTarget::drawIndexed(GrPrimitiveType type,
448 int startVertex,
449 int startIndex,
450 int vertexCount,
451 int indexCount,
452 const SkRect* devBounds) {
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000453 if (indexCount > 0 && this->checkDraw(type, startVertex, startIndex, vertexCount, indexCount)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800454 // Setup clip
455 GrClipMaskManager::ScissorState scissorState;
456 GrDrawState::AutoRestoreEffects are;
457 GrDrawState::AutoRestoreStencil ars;
458 if (!this->setupClip(devBounds, &are, &ars, &scissorState)) {
459 return;
460 }
461
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000462 DrawInfo info;
463 info.fPrimitiveType = type;
464 info.fStartVertex = startVertex;
465 info.fStartIndex = startIndex;
466 info.fVertexCount = vertexCount;
467 info.fIndexCount = indexCount;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000468
469 info.fInstanceCount = 0;
470 info.fVerticesPerInstance = 0;
471 info.fIndicesPerInstance = 0;
472
bsalomon49f085d2014-09-05 13:34:00 -0700473 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000474 info.setDevBounds(*devBounds);
475 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000476 // TODO: We should continue with incorrect blending.
477 if (!this->setupDstReadIfNecessary(&info)) {
478 return;
479 }
joshualitt2c93efe2014-11-06 12:57:13 -0800480 this->onDraw(info, scissorState);
bsalomon@google.com82145872011-08-23 14:32:40 +0000481 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000482}
483
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000484void GrDrawTarget::drawNonIndexed(GrPrimitiveType type,
485 int startVertex,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000486 int vertexCount,
487 const SkRect* devBounds) {
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000488 if (vertexCount > 0 && this->checkDraw(type, startVertex, -1, vertexCount, -1)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800489 // Setup clip
490 GrClipMaskManager::ScissorState scissorState;
491 GrDrawState::AutoRestoreEffects are;
492 GrDrawState::AutoRestoreStencil ars;
493 if (!this->setupClip(devBounds, &are, &ars, &scissorState)) {
494 return;
495 }
496
bsalomon@google.com74749cd2013-01-30 16:12:41 +0000497 DrawInfo info;
498 info.fPrimitiveType = type;
499 info.fStartVertex = startVertex;
500 info.fStartIndex = 0;
501 info.fVertexCount = vertexCount;
502 info.fIndexCount = 0;
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000503
504 info.fInstanceCount = 0;
505 info.fVerticesPerInstance = 0;
506 info.fIndicesPerInstance = 0;
507
bsalomon49f085d2014-09-05 13:34:00 -0700508 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000509 info.setDevBounds(*devBounds);
510 }
joshualitt2c93efe2014-11-06 12:57:13 -0800511
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000512 // TODO: We should continue with incorrect blending.
513 if (!this->setupDstReadIfNecessary(&info)) {
514 return;
515 }
joshualitt2c93efe2014-11-06 12:57:13 -0800516 this->onDraw(info, scissorState);
bsalomon@google.com82145872011-08-23 14:32:40 +0000517 }
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000518}
519
joshualitt2c93efe2014-11-06 12:57:13 -0800520static const GrStencilSettings& winding_path_stencil_settings() {
521 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
522 kIncClamp_StencilOp,
523 kIncClamp_StencilOp,
524 kAlwaysIfInClip_StencilFunc,
525 0xFFFF, 0xFFFF, 0xFFFF);
526 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
527}
528
529static const GrStencilSettings& even_odd_path_stencil_settings() {
530 GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings,
531 kInvert_StencilOp,
532 kInvert_StencilOp,
533 kAlwaysIfInClip_StencilFunc,
534 0xFFFF, 0xFFFF, 0xFFFF);
535 return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings);
536}
537
538void GrDrawTarget::getPathStencilSettingsForFilltype(GrPathRendering::FillType fill,
539 GrStencilSettings* outStencilSettings) {
540
541 switch (fill) {
542 default:
543 SkFAIL("Unexpected path fill.");
544 case GrPathRendering::kWinding_FillType:
545 *outStencilSettings = winding_path_stencil_settings();
546 break;
547 case GrPathRendering::kEvenOdd_FillType:
548 *outStencilSettings = even_odd_path_stencil_settings();
549 break;
550 }
551 this->clipMaskManager()->adjustPathStencilParams(outStencilSettings);
552}
553
joshualitt92e496f2014-10-31 13:56:50 -0700554void GrDrawTarget::stencilPath(const GrPath* path, GrPathRendering::FillType fill) {
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000555 // TODO: extract portions of checkDraw that are relevant to path stenciling.
bsalomon49f085d2014-09-05 13:34:00 -0700556 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000557 SkASSERT(this->caps()->pathRenderingSupport());
joshualitt2c93efe2014-11-06 12:57:13 -0800558
559 // Setup clip
560 GrClipMaskManager::ScissorState scissorState;
561 GrDrawState::AutoRestoreEffects are;
562 GrDrawState::AutoRestoreStencil ars;
563 if (!this->setupClip(NULL, &are, &ars, &scissorState)) {
564 return;
565 }
566
567 // set stencil settings for path
568 GrStencilSettings stencilSettings;
569 this->getPathStencilSettingsForFilltype(fill, &stencilSettings);
570
571 this->onStencilPath(path, scissorState, stencilSettings);
bsalomon@google.com64aef2b2012-06-11 15:36:13 +0000572}
573
joshualitt92e496f2014-10-31 13:56:50 -0700574void GrDrawTarget::drawPath(const GrPath* path, GrPathRendering::FillType fill) {
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000575 // TODO: extract portions of checkDraw that are relevant to path rendering.
bsalomon49f085d2014-09-05 13:34:00 -0700576 SkASSERT(path);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000577 SkASSERT(this->caps()->pathRenderingSupport());
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000578
joshualitt92e496f2014-10-31 13:56:50 -0700579 SkRect devBounds = path->getBounds();
580 SkMatrix viewM = this->drawState()->getViewMatrix();
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000581 viewM.mapRect(&devBounds);
582
joshualitt2c93efe2014-11-06 12:57:13 -0800583 // Setup clip
584 GrClipMaskManager::ScissorState scissorState;
585 GrDrawState::AutoRestoreEffects are;
586 GrDrawState::AutoRestoreStencil ars;
587 if (!this->setupClip(&devBounds, &are, &ars, &scissorState)) {
588 return;
589 }
590
591 // set stencil settings for path
592 GrStencilSettings stencilSettings;
593 this->getPathStencilSettingsForFilltype(fill, &stencilSettings);
594
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000595 GrDeviceCoordTexture dstCopy;
596 if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) {
597 return;
598 }
599
joshualitt2c93efe2014-11-06 12:57:13 -0800600 this->onDrawPath(path, scissorState, stencilSettings, dstCopy.texture() ? &dstCopy : NULL);
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +0000601}
602
cdaltonb85a0aa2014-07-21 15:32:44 -0700603void GrDrawTarget::drawPaths(const GrPathRange* pathRange,
604 const uint32_t indices[], int count,
605 const float transforms[], PathTransformType transformsType,
joshualitt92e496f2014-10-31 13:56:50 -0700606 GrPathRendering::FillType fill) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000607 SkASSERT(this->caps()->pathRenderingSupport());
bsalomon49f085d2014-09-05 13:34:00 -0700608 SkASSERT(pathRange);
609 SkASSERT(indices);
610 SkASSERT(transforms);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000611
joshualitt2c93efe2014-11-06 12:57:13 -0800612 // Setup clip
613 GrClipMaskManager::ScissorState scissorState;
614 GrDrawState::AutoRestoreEffects are;
615 GrDrawState::AutoRestoreStencil ars;
616
617 if (!this->setupClip(NULL, &are, &ars, &scissorState)) {
618 return;
619 }
620
621 // set stencil settings for path
622 GrStencilSettings stencilSettings;
623 this->getPathStencilSettingsForFilltype(fill, &stencilSettings);
624
cdaltonb85a0aa2014-07-21 15:32:44 -0700625 // Don't compute a bounding box for setupDstReadIfNecessary(), we'll opt
626 // instead for it to just copy the entire dst. Realistically this is a moot
627 // point, because any context that supports NV_path_rendering will also
628 // support NV_blend_equation_advanced.
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000629 GrDeviceCoordTexture dstCopy;
cdaltonb85a0aa2014-07-21 15:32:44 -0700630 if (!this->setupDstReadIfNecessary(&dstCopy, NULL)) {
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000631 return;
632 }
633
joshualitt2c93efe2014-11-06 12:57:13 -0800634 this->onDrawPaths(pathRange, indices, count, transforms, transformsType, scissorState,
635 stencilSettings, dstCopy.texture() ? &dstCopy : NULL);
commit-bot@chromium.org9b62aa12014-03-25 11:59:40 +0000636}
637
bsalomon63b21962014-11-05 07:05:34 -0800638void GrDrawTarget::clear(const SkIRect* rect, GrColor color, bool canIgnoreRect,
639 GrRenderTarget* renderTarget) {
640 if (fCaps->useDrawInsteadOfClear()) {
641 // This works around a driver bug with clear by drawing a rect instead.
642 // The driver will ignore a clear if it is the only thing rendered to a
643 // target before the target is read.
644 SkIRect rtRect = SkIRect::MakeWH(renderTarget->width(), renderTarget->height());
645 if (NULL == rect || canIgnoreRect || rect->contains(rtRect)) {
646 rect = &rtRect;
647 // We first issue a discard() since that may help tilers.
648 this->discard(renderTarget);
649 }
650 AutoStateRestore asr(this, kReset_ASRInit, &SkMatrix::I());
651
652 this->drawState()->setColor(color);
653 this->drawState()->disableState(GrDrawState::kClip_StateBit);
654 this->drawState()->disableState(GrDrawState::kHWAntialias_StateBit);
655 this->drawState()->setRenderTarget(renderTarget);
656
657 this->drawSimpleRect(*rect);
658 } else {
659 this->onClear(rect, color, canIgnoreRect, renderTarget);
660 }
661}
662
egdaniel3eee3832014-06-18 13:09:11 -0700663typedef GrTraceMarkerSet::Iter TMIter;
664void GrDrawTarget::saveActiveTraceMarkers() {
665 if (this->caps()->gpuTracingSupport()) {
666 SkASSERT(0 == fStoredTraceMarkers.count());
667 fStoredTraceMarkers.addSet(fActiveTraceMarkers);
668 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
669 this->removeGpuTraceMarker(&(*iter));
670 }
671 }
672}
673
674void GrDrawTarget::restoreActiveTraceMarkers() {
675 if (this->caps()->gpuTracingSupport()) {
676 SkASSERT(0 == fActiveTraceMarkers.count());
677 for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) {
678 this->addGpuTraceMarker(&(*iter));
679 }
680 for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) {
681 this->fStoredTraceMarkers.remove(*iter);
682 }
683 }
684}
685
686void GrDrawTarget::addGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000687 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000688 SkASSERT(fGpuTraceMarkerCount >= 0);
689 this->fActiveTraceMarkers.add(*marker);
690 this->didAddGpuTraceMarker();
691 ++fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000692 }
693}
694
egdaniel3eee3832014-06-18 13:09:11 -0700695void GrDrawTarget::removeGpuTraceMarker(const GrGpuTraceMarker* marker) {
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000696 if (this->caps()->gpuTracingSupport()) {
commit-bot@chromium.org2a05de02014-03-25 15:17:32 +0000697 SkASSERT(fGpuTraceMarkerCount >= 1);
698 this->fActiveTraceMarkers.remove(*marker);
699 this->didRemoveGpuTraceMarker();
700 --fGpuTraceMarkerCount;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +0000701 }
702}
703
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000704////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000705
bsalomon@google.com934c5702012-03-20 21:17:58 +0000706void GrDrawTarget::drawIndexedInstances(GrPrimitiveType type,
707 int instanceCount,
708 int verticesPerInstance,
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000709 int indicesPerInstance,
710 const SkRect* devBounds) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000711 if (!verticesPerInstance || !indicesPerInstance) {
712 return;
713 }
714
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000715 int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance;
716 if (!maxInstancesPerDraw) {
bsalomon@google.com934c5702012-03-20 21:17:58 +0000717 return;
718 }
719
joshualitt2c93efe2014-11-06 12:57:13 -0800720 // Setup clip
721 GrClipMaskManager::ScissorState scissorState;
722 GrDrawState::AutoRestoreEffects are;
723 GrDrawState::AutoRestoreStencil ars;
724 if (!this->setupClip(devBounds, &are, &ars, &scissorState)) {
725 return;
726 }
727
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000728 DrawInfo info;
729 info.fPrimitiveType = type;
730 info.fStartIndex = 0;
731 info.fStartVertex = 0;
732 info.fIndicesPerInstance = indicesPerInstance;
733 info.fVerticesPerInstance = verticesPerInstance;
734
735 // Set the same bounds for all the draws.
bsalomon49f085d2014-09-05 13:34:00 -0700736 if (devBounds) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000737 info.setDevBounds(*devBounds);
738 }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000739 // TODO: We should continue with incorrect blending.
740 if (!this->setupDstReadIfNecessary(&info)) {
741 return;
742 }
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000743
bsalomon@google.com934c5702012-03-20 21:17:58 +0000744 while (instanceCount) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000745 info.fInstanceCount = SkTMin(instanceCount, maxInstancesPerDraw);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000746 info.fVertexCount = info.fInstanceCount * verticesPerInstance;
747 info.fIndexCount = info.fInstanceCount * indicesPerInstance;
748
749 if (this->checkDraw(type,
750 info.fStartVertex,
751 info.fStartIndex,
752 info.fVertexCount,
753 info.fIndexCount)) {
joshualitt2c93efe2014-11-06 12:57:13 -0800754 this->onDraw(info, scissorState);
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000755 }
756 info.fStartVertex += info.fVertexCount;
757 instanceCount -= info.fInstanceCount;
bsalomon@google.com934c5702012-03-20 21:17:58 +0000758 }
759}
bsalomon@google.com3d0835b2011-12-08 16:12:03 +0000760
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000761////////////////////////////////////////////////////////////////////////////////
762
robertphillips@google.com42903302013-04-20 12:26:07 +0000763namespace {
764
765// position + (optional) texture coord
766extern const GrVertexAttrib gBWRectPosUVAttribs[] = {
767 {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding},
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000768 {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding}
robertphillips@google.com42903302013-04-20 12:26:07 +0000769};
770
771void set_vertex_attributes(GrDrawState* drawState, bool hasUVs) {
772 if (hasUVs) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700773 drawState->setVertexAttribs<gBWRectPosUVAttribs>(2, 2 * sizeof(SkPoint));
robertphillips@google.com42903302013-04-20 12:26:07 +0000774 } else {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700775 drawState->setVertexAttribs<gBWRectPosUVAttribs>(1, sizeof(SkPoint));
robertphillips@google.com42903302013-04-20 12:26:07 +0000776 }
777}
778
779};
780
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000781void GrDrawTarget::onDrawRect(const SkRect& rect,
commit-bot@chromium.orgfd03d4a2013-07-17 21:39:42 +0000782 const SkRect* localRect,
bsalomon@google.com0406b9e2013-04-02 21:00:15 +0000783 const SkMatrix* localMatrix) {
bsalomon@google.comd62e88e2013-02-01 14:19:27 +0000784
bsalomon49f085d2014-09-05 13:34:00 -0700785 set_vertex_attributes(this->drawState(), SkToBool(localRect));
robertphillips@google.com42903302013-04-20 12:26:07 +0000786
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000787 AutoReleaseGeometry geo(this, 4, 0);
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000788 if (!geo.succeeded()) {
tfarina38406c82014-10-31 07:11:12 -0700789 SkDebugf("Failed to get space for vertices!\n");
bsalomon@google.com6513cd02011-08-05 20:12:30 +0000790 return;
791 }
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000792
egdaniel7b3d5ee2014-08-28 05:41:14 -0700793 size_t vstride = this->drawState()->getVertexStride();
794 geo.positions()->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vstride);
bsalomon49f085d2014-09-05 13:34:00 -0700795 if (localRect) {
commit-bot@chromium.org972f9cd2014-03-28 17:58:28 +0000796 SkPoint* coords = GrTCast<SkPoint*>(GrTCast<intptr_t>(geo.vertices()) +
797 sizeof(SkPoint));
bsalomon@google.comc7818882013-03-20 19:19:53 +0000798 coords->setRectFan(localRect->fLeft, localRect->fTop,
799 localRect->fRight, localRect->fBottom,
egdaniel7b3d5ee2014-08-28 05:41:14 -0700800 vstride);
bsalomon49f085d2014-09-05 13:34:00 -0700801 if (localMatrix) {
egdaniel7b3d5ee2014-08-28 05:41:14 -0700802 localMatrix->mapPointsWithStride(coords, vstride, 4);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000803 }
804 }
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000805 SkRect bounds;
806 this->getDrawState().getViewMatrix().mapRect(&bounds, rect);
robertphillips@google.com8b129aa2012-10-05 15:37:00 +0000807
commit-bot@chromium.org3ae0e6c2014-02-11 18:24:25 +0000808 this->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4, &bounds);
bsalomon@google.com86afc2a2011-02-16 16:12:19 +0000809}
810
bsalomon@google.com02ddc8b2013-01-28 15:35:28 +0000811void GrDrawTarget::clipWillBeSet(const GrClipData* clipData) {
812}
813
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000814////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000815
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000816GrDrawTarget::AutoStateRestore::AutoStateRestore() {
817 fDrawTarget = NULL;
818}
reed@google.comac10a2d2010-12-22 21:39:39 +0000819
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000820GrDrawTarget::AutoStateRestore::AutoStateRestore(GrDrawTarget* target,
bsalomon@google.com137f1342013-05-29 21:27:53 +0000821 ASRInit init,
822 const SkMatrix* vm) {
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000823 fDrawTarget = NULL;
bsalomon@google.com137f1342013-05-29 21:27:53 +0000824 this->set(target, init, vm);
reed@google.comac10a2d2010-12-22 21:39:39 +0000825}
826
827GrDrawTarget::AutoStateRestore::~AutoStateRestore() {
bsalomon49f085d2014-09-05 13:34:00 -0700828 if (fDrawTarget) {
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000829 fDrawTarget->setDrawState(fSavedState);
830 fSavedState->unref();
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000831 }
reed@google.comac10a2d2010-12-22 21:39:39 +0000832}
bsalomon@google.com7d34d2e2011-01-24 17:41:47 +0000833
bsalomon@google.com137f1342013-05-29 21:27:53 +0000834void GrDrawTarget::AutoStateRestore::set(GrDrawTarget* target, ASRInit init, const SkMatrix* vm) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000835 SkASSERT(NULL == fDrawTarget);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000836 fDrawTarget = target;
837 fSavedState = target->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000838 SkASSERT(fSavedState);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000839 fSavedState->ref();
840 if (kReset_ASRInit == init) {
841 if (NULL == vm) {
842 // calls the default cons
843 fTempState.init();
844 } else {
845 SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*vm));
846 }
847 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000848 SkASSERT(kPreserve_ASRInit == init);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000849 if (NULL == vm) {
850 fTempState.set(*fSavedState);
851 } else {
852 SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*fSavedState, *vm));
853 }
854 }
855 target->setDrawState(fTempState.get());
856}
857
858bool GrDrawTarget::AutoStateRestore::setIdentity(GrDrawTarget* target, ASRInit init) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000859 SkASSERT(NULL == fDrawTarget);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000860 fDrawTarget = target;
861 fSavedState = target->drawState();
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000862 SkASSERT(fSavedState);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000863 fSavedState->ref();
864 if (kReset_ASRInit == init) {
865 // calls the default cons
866 fTempState.init();
867 } else {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000868 SkASSERT(kPreserve_ASRInit == init);
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000869 // calls the copy cons
870 fTempState.set(*fSavedState);
bsalomon@google.com137f1342013-05-29 21:27:53 +0000871 if (!fTempState.get()->setIdentityViewMatrix()) {
872 // let go of any resources held by the temp
873 fTempState.get()->reset();
874 fDrawTarget = NULL;
875 fSavedState->unref();
876 fSavedState = NULL;
877 return false;
878 }
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000879 }
bsalomon@google.com873ea0c2012-03-30 15:55:32 +0000880 target->setDrawState(fTempState.get());
bsalomon@google.com137f1342013-05-29 21:27:53 +0000881 return true;
bsalomon@google.com06afe7b2011-04-26 15:31:40 +0000882}
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000883
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000884////////////////////////////////////////////////////////////////////////////////
bsalomon@google.com7ac249b2011-06-14 18:46:24 +0000885
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000886GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry(
887 GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000888 int vertexCount,
889 int indexCount) {
890 fTarget = NULL;
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000891 this->set(target, vertexCount, indexCount);
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000892}
rmistry@google.comd6176b02012-08-23 18:14:13 +0000893
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000894GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() {
895 fTarget = NULL;
896}
897
898GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() {
899 this->reset();
900}
901
902bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target,
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000903 int vertexCount,
904 int indexCount) {
905 this->reset();
906 fTarget = target;
907 bool success = true;
bsalomon49f085d2014-09-05 13:34:00 -0700908 if (fTarget) {
jvanverth@google.comb75b0a02013-02-05 20:33:30 +0000909 success = target->reserveVertexAndIndexSpace(vertexCount,
bsalomon@google.come3d70952012-03-13 12:40:53 +0000910 indexCount,
911 &fVertices,
912 &fIndices);
913 if (!success) {
914 fTarget = NULL;
915 this->reset();
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000916 }
917 }
bsalomon49f085d2014-09-05 13:34:00 -0700918 SkASSERT(success == SkToBool(fTarget));
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000919 return success;
920}
921
922void GrDrawTarget::AutoReleaseGeometry::reset() {
bsalomon49f085d2014-09-05 13:34:00 -0700923 if (fTarget) {
924 if (fVertices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000925 fTarget->resetVertexSource();
926 }
bsalomon49f085d2014-09-05 13:34:00 -0700927 if (fIndices) {
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000928 fTarget->resetIndexSource();
929 }
930 fTarget = NULL;
931 }
bsalomon@google.comcb0c5ab2011-06-29 17:48:17 +0000932 fVertices = NULL;
933 fIndices = NULL;
bsalomon@google.com25fb21f2011-06-21 18:17:25 +0000934}
935
bsalomon@google.com8d67c072012-12-13 20:38:14 +0000936GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) {
937 fTarget = target;
938 fClip = fTarget->getClip();
939 fStack.init();
940 fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op);
941 fReplacementClip.fClipStack = fStack.get();
942 target->setClip(&fReplacementClip);
943}
944
bsalomon@google.com116ad842013-04-09 15:38:19 +0000945namespace {
946// returns true if the read/written rect intersects the src/dst and false if not.
947bool clip_srcrect_and_dstpoint(const GrSurface* dst,
948 const GrSurface* src,
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000949 const SkIRect& srcRect,
bsalomon@google.com116ad842013-04-09 15:38:19 +0000950 const SkIPoint& dstPoint,
951 SkIRect* clippedSrcRect,
952 SkIPoint* clippedDstPoint) {
953 *clippedSrcRect = srcRect;
954 *clippedDstPoint = dstPoint;
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000955
bsalomon@google.com116ad842013-04-09 15:38:19 +0000956 // clip the left edge to src and dst bounds, adjusting dstPoint if necessary
957 if (clippedSrcRect->fLeft < 0) {
958 clippedDstPoint->fX -= clippedSrcRect->fLeft;
959 clippedSrcRect->fLeft = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000960 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000961 if (clippedDstPoint->fX < 0) {
962 clippedSrcRect->fLeft -= clippedDstPoint->fX;
963 clippedDstPoint->fX = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000964 }
965
bsalomon@google.com116ad842013-04-09 15:38:19 +0000966 // clip the top edge to src and dst bounds, adjusting dstPoint if necessary
967 if (clippedSrcRect->fTop < 0) {
968 clippedDstPoint->fY -= clippedSrcRect->fTop;
969 clippedSrcRect->fTop = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000970 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000971 if (clippedDstPoint->fY < 0) {
972 clippedSrcRect->fTop -= clippedDstPoint->fY;
973 clippedDstPoint->fY = 0;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000974 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000975
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000976 // clip the right edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000977 if (clippedSrcRect->fRight > src->width()) {
978 clippedSrcRect->fRight = src->width();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000979 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000980 if (clippedDstPoint->fX + clippedSrcRect->width() > dst->width()) {
981 clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000982 }
983
984 // clip the bottom edge to the src and dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000985 if (clippedSrcRect->fBottom > src->height()) {
986 clippedSrcRect->fBottom = src->height();
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000987 }
bsalomon@google.com116ad842013-04-09 15:38:19 +0000988 if (clippedDstPoint->fY + clippedSrcRect->height() > dst->height()) {
989 clippedSrcRect->fBottom = clippedSrcRect->fTop + dst->height() - clippedDstPoint->fY;
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000990 }
skia.committer@gmail.coma9493a32013-04-04 07:01:12 +0000991
bsalomon@google.come4617bf2013-04-03 14:56:40 +0000992 // The above clipping steps may have inverted the rect if it didn't intersect either the src or
993 // dst bounds.
bsalomon@google.com116ad842013-04-09 15:38:19 +0000994 return !clippedSrcRect->isEmpty();
995}
996}
997
998bool GrDrawTarget::copySurface(GrSurface* dst,
999 GrSurface* src,
1000 const SkIRect& srcRect,
1001 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -07001002 SkASSERT(dst);
1003 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +00001004
1005 SkIRect clippedSrcRect;
1006 SkIPoint clippedDstPoint;
1007 // If the rect is outside the src or dst then we've already succeeded.
1008 if (!clip_srcrect_and_dstpoint(dst,
1009 src,
1010 srcRect,
1011 dstPoint,
1012 &clippedSrcRect,
1013 &clippedDstPoint)) {
joshualitta7024152014-11-03 14:16:35 -08001014 SkASSERT(GrDrawTarget::canCopySurface(dst, src, srcRect, dstPoint));
bsalomon@google.come4617bf2013-04-03 14:56:40 +00001015 return true;
1016 }
1017
joshualitta7024152014-11-03 14:16:35 -08001018 if (!GrDrawTarget::canCopySurface(dst, src, clippedSrcRect, clippedDstPoint)) {
1019 return false;
1020 }
1021
1022 GrRenderTarget* rt = dst->asRenderTarget();
1023 GrTexture* tex = src->asTexture();
1024
1025 GrDrawTarget::AutoStateRestore asr(this, kReset_ASRInit);
1026 this->drawState()->setRenderTarget(rt);
1027 SkMatrix matrix;
1028 matrix.setTranslate(SkIntToScalar(clippedSrcRect.fLeft - clippedDstPoint.fX),
1029 SkIntToScalar(clippedSrcRect.fTop - clippedDstPoint.fY));
1030 matrix.postIDiv(tex->width(), tex->height());
1031 this->drawState()->addColorTextureProcessor(tex, matrix);
1032 SkIRect dstRect = SkIRect::MakeXYWH(clippedDstPoint.fX,
1033 clippedDstPoint.fY,
1034 clippedSrcRect.width(),
1035 clippedSrcRect.height());
1036 this->drawSimpleRect(dstRect);
1037 return true;
bsalomon@google.come4617bf2013-04-03 14:56:40 +00001038}
1039
1040bool GrDrawTarget::canCopySurface(GrSurface* dst,
1041 GrSurface* src,
1042 const SkIRect& srcRect,
1043 const SkIPoint& dstPoint) {
bsalomon49f085d2014-09-05 13:34:00 -07001044 SkASSERT(dst);
1045 SkASSERT(src);
bsalomon@google.com116ad842013-04-09 15:38:19 +00001046
1047 SkIRect clippedSrcRect;
1048 SkIPoint clippedDstPoint;
1049 // If the rect is outside the src or dst then we're guaranteed success
1050 if (!clip_srcrect_and_dstpoint(dst,
1051 src,
1052 srcRect,
1053 dstPoint,
1054 &clippedSrcRect,
1055 &clippedDstPoint)) {
1056 return true;
1057 }
bsalomon@google.com116ad842013-04-09 15:38:19 +00001058
bsalomon@google.come4617bf2013-04-03 14:56:40 +00001059 // Check that the read/write rects are contained within the src/dst bounds.
joshualitta7024152014-11-03 14:16:35 -08001060 SkASSERT(!clippedSrcRect.isEmpty());
1061 SkASSERT(SkIRect::MakeWH(src->width(), src->height()).contains(clippedSrcRect));
1062 SkASSERT(clippedDstPoint.fX >= 0 && clippedDstPoint.fY >= 0);
1063 SkASSERT(clippedDstPoint.fX + clippedSrcRect.width() <= dst->width() &&
1064 clippedDstPoint.fY + clippedSrcRect.height() <= dst->height());
bsalomon@google.come4617bf2013-04-03 14:56:40 +00001065
bsalomonafbf2d62014-09-30 12:18:44 -07001066 return !dst->surfacePriv().isSameAs(src) && dst->asRenderTarget() && src->asTexture();
bsalomon@google.come4617bf2013-04-03 14:56:40 +00001067}
1068
bsalomonf2703d82014-10-28 14:33:06 -07001069void GrDrawTarget::initCopySurfaceDstDesc(const GrSurface* src, GrSurfaceDesc* desc) {
bsalomon@google.comeb851172013-04-15 13:51:00 +00001070 // Make the dst of the copy be a render target because the default copySurface draws to the dst.
1071 desc->fOrigin = kDefault_GrSurfaceOrigin;
bsalomonf2703d82014-10-28 14:33:06 -07001072 desc->fFlags = kRenderTarget_GrSurfaceFlag | kNoStencil_GrSurfaceFlag;
bsalomon@google.comeb851172013-04-15 13:51:00 +00001073 desc->fConfig = src->config();
1074}
1075
bsalomon@google.combcce8922013-03-25 15:38:39 +00001076///////////////////////////////////////////////////////////////////////////////
1077
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001078void GrDrawTargetCaps::reset() {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001079 fMipMapSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001080 fNPOTTextureTileSupport = false;
1081 fTwoSidedStencilSupport = false;
1082 fStencilWrapOpsSupport = false;
1083 fHWAALineSupport = false;
1084 fShaderDerivativeSupport = false;
1085 fGeometryShaderSupport = false;
skia.committer@gmail.come60ed082013-03-26 07:01:04 +00001086 fDualSourceBlendingSupport = false;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001087 fPathRenderingSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001088 fDstReadInShaderSupport = false;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001089 fDiscardRenderTargetSupport = false;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001090 fReuseScratchTextures = true;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001091 fGpuTracingSupport = false;
krajcevski786978162014-07-30 11:25:44 -07001092 fCompressedTexSubImageSupport = false;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001093
bsalomon63b21962014-11-05 07:05:34 -08001094 fUseDrawInsteadOfClear = false;
1095
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001096 fMapBufferFlags = kNone_MapFlags;
1097
bsalomon@google.combcce8922013-03-25 15:38:39 +00001098 fMaxRenderTargetSize = 0;
1099 fMaxTextureSize = 0;
1100 fMaxSampleCount = 0;
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001101
1102 memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001103 memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport));
bsalomon@google.combcce8922013-03-25 15:38:39 +00001104}
1105
bsalomon@google.comc26d94f2013-03-25 18:19:00 +00001106GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) {
commit-bot@chromium.org47442312013-12-19 16:18:01 +00001107 fMipMapSupport = other.fMipMapSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001108 fNPOTTextureTileSupport = other.fNPOTTextureTileSupport;
1109 fTwoSidedStencilSupport = other.fTwoSidedStencilSupport;
1110 fStencilWrapOpsSupport = other.fStencilWrapOpsSupport;
1111 fHWAALineSupport = other.fHWAALineSupport;
1112 fShaderDerivativeSupport = other.fShaderDerivativeSupport;
1113 fGeometryShaderSupport = other.fGeometryShaderSupport;
1114 fDualSourceBlendingSupport = other.fDualSourceBlendingSupport;
commit-bot@chromium.orgc4dc0ad2013-10-09 14:11:33 +00001115 fPathRenderingSupport = other.fPathRenderingSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001116 fDstReadInShaderSupport = other.fDstReadInShaderSupport;
commit-bot@chromium.org28361fa2014-03-28 16:08:05 +00001117 fDiscardRenderTargetSupport = other.fDiscardRenderTargetSupport;
commit-bot@chromium.orgb8356522013-07-18 22:26:39 +00001118 fReuseScratchTextures = other.fReuseScratchTextures;
commit-bot@chromium.orga3baf3b2014-02-21 18:45:30 +00001119 fGpuTracingSupport = other.fGpuTracingSupport;
krajcevski786978162014-07-30 11:25:44 -07001120 fCompressedTexSubImageSupport = other.fCompressedTexSubImageSupport;
bsalomon@google.combcce8922013-03-25 15:38:39 +00001121
bsalomon63b21962014-11-05 07:05:34 -08001122 fUseDrawInsteadOfClear = other.fUseDrawInsteadOfClear;
1123
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001124 fMapBufferFlags = other.fMapBufferFlags;
1125
bsalomon@google.combcce8922013-03-25 15:38:39 +00001126 fMaxRenderTargetSize = other.fMaxRenderTargetSize;
1127 fMaxTextureSize = other.fMaxTextureSize;
1128 fMaxSampleCount = other.fMaxSampleCount;
1129
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001130 memcpy(fConfigRenderSupport, other.fConfigRenderSupport, sizeof(fConfigRenderSupport));
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001131 memcpy(fConfigTextureSupport, other.fConfigTextureSupport, sizeof(fConfigTextureSupport));
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001132
bsalomon@google.combcce8922013-03-25 15:38:39 +00001133 return *this;
1134}
1135
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001136static SkString map_flags_to_string(uint32_t flags) {
1137 SkString str;
1138 if (GrDrawTargetCaps::kNone_MapFlags == flags) {
1139 str = "none";
1140 } else {
1141 SkASSERT(GrDrawTargetCaps::kCanMap_MapFlag & flags);
1142 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kCanMap_MapFlag);
1143 str = "can_map";
1144
1145 if (GrDrawTargetCaps::kSubset_MapFlag & flags) {
1146 str.append(" partial");
1147 } else {
1148 str.append(" full");
1149 }
1150 SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kSubset_MapFlag);
1151 }
1152 SkASSERT(0 == flags); // Make sure we handled all the flags.
1153 return str;
1154}
1155
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001156SkString GrDrawTargetCaps::dump() const {
1157 SkString r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001158 static const char* gNY[] = {"NO", "YES"};
bsalomon63b21962014-11-05 07:05:34 -08001159 r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]);
1160 r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]);
1161 r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]);
1162 r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]);
1163 r.appendf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]);
1164 r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]);
1165 r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]);
1166 r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]);
1167 r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]);
1168 r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]);
1169 r.appendf("Discard Render Target Support : %s\n", gNY[fDiscardRenderTargetSupport]);
1170 r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]);
1171 r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]);
1172 r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001173
bsalomon63b21962014-11-05 07:05:34 -08001174 r.appendf("Draw Instead of Clear [workaround] : %s\n", gNY[fUseDrawInsteadOfClear]);
1175
1176 r.appendf("Max Texture Size : %d\n", fMaxTextureSize);
1177 r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize);
1178 r.appendf("Max Sample Count : %d\n", fMaxSampleCount);
1179
1180 r.appendf("Map Buffer Support : %s\n",
1181 map_flags_to_string(fMapBufferFlags).c_str());
commit-bot@chromium.org160b4782014-05-05 12:32:37 +00001182
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001183 static const char* kConfigNames[] = {
1184 "Unknown", // kUnknown_GrPixelConfig
1185 "Alpha8", // kAlpha_8_GrPixelConfig,
1186 "Index8", // kIndex_8_GrPixelConfig,
1187 "RGB565", // kRGB_565_GrPixelConfig,
1188 "RGBA444", // kRGBA_4444_GrPixelConfig,
1189 "RGBA8888", // kRGBA_8888_GrPixelConfig,
1190 "BGRA8888", // kBGRA_8888_GrPixelConfig,
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001191 "ETC1", // kETC1_GrPixelConfig,
1192 "LATC", // kLATC_GrPixelConfig,
krajcevski238b4562014-06-30 09:09:22 -07001193 "R11EAC", // kR11_EAC_GrPixelConfig,
krajcevski7ef21622014-07-16 15:21:13 -07001194 "ASTC12x12",// kASTC_12x12_GrPixelConfig,
joshualittee5da552014-07-16 13:32:56 -07001195 "RGBAFloat", // kRGBA_float_GrPixelConfig
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001196 };
krajcevski7ef21622014-07-16 15:21:13 -07001197 GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig);
1198 GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig);
1199 GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig);
1200 GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig);
1201 GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig);
1202 GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig);
1203 GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig);
1204 GR_STATIC_ASSERT(7 == kETC1_GrPixelConfig);
1205 GR_STATIC_ASSERT(8 == kLATC_GrPixelConfig);
1206 GR_STATIC_ASSERT(9 == kR11_EAC_GrPixelConfig);
1207 GR_STATIC_ASSERT(10 == kASTC_12x12_GrPixelConfig);
1208 GR_STATIC_ASSERT(11 == kRGBA_float_GrPixelConfig);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001209 GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt);
1210
commit-bot@chromium.org99017272013-11-08 18:45:27 +00001211 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]);
1212 SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]);
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001213
1214 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1215 r.appendf("%s is renderable: %s, with MSAA: %s\n",
1216 kConfigNames[i],
1217 gNY[fConfigRenderSupport[i][0]],
1218 gNY[fConfigRenderSupport[i][1]]);
commit-bot@chromium.org73880512013-10-14 15:33:45 +00001219 }
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001220
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001221 SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001222
commit-bot@chromium.org6e7ddaa2014-05-30 13:55:58 +00001223 for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) {
1224 r.appendf("%s is uploadable to a texture: %s\n",
1225 kConfigNames[i],
1226 gNY[fConfigTextureSupport[i]]);
commit-bot@chromium.org42dc8132014-05-27 19:26:59 +00001227 }
1228
commit-bot@chromium.org8b656c62013-11-21 15:23:15 +00001229 return r;
bsalomon@google.com18c9c192011-09-22 21:01:31 +00001230}
egdanielbc127a32014-09-19 12:07:43 -07001231
1232uint32_t GrDrawTargetCaps::CreateUniqueID() {
1233 static int32_t gUniqueID = SK_InvalidUniqueID;
1234 uint32_t id;
1235 do {
1236 id = static_cast<uint32_t>(sk_atomic_inc(&gUniqueID) + 1);
1237 } while (id == SK_InvalidUniqueID);
1238 return id;
1239}
1240
joshualitt2c93efe2014-11-06 12:57:13 -08001241///////////////////////////////////////////////////////////////////////////////////////////////////
1242
1243bool GrClipTarget::setupClip(const SkRect* devBounds,
1244 GrDrawState::AutoRestoreEffects* are,
1245 GrDrawState::AutoRestoreStencil* ars,
1246 GrClipMaskManager::ScissorState* scissorState) {
1247 return fClipMaskManager.setupClipping(this->getClip(),
1248 devBounds,
1249 are,
1250 ars,
1251 scissorState);
1252}