epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * 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.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 10 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 11 | #include "GrDrawTarget.h" |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 12 | #include "GrContext.h" |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 13 | #include "GrDrawTargetCaps.h" |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 14 | #include "GrRenderTarget.h" |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 15 | #include "GrTexture.h" |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 16 | #include "GrVertexBuffer.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 17 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 18 | #include "SkStrokeRec.h" |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 19 | |
reed@google.com | fa35e3d | 2012-06-26 20:16:17 +0000 | [diff] [blame] | 20 | SK_DEFINE_INST_COUNT(GrDrawTarget) |
| 21 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 22 | //////////////////////////////////////////////////////////////////////////////// |
| 23 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 24 | GrDrawTarget::DrawInfo& GrDrawTarget::DrawInfo::operator =(const DrawInfo& di) { |
| 25 | fPrimitiveType = di.fPrimitiveType; |
| 26 | fStartVertex = di.fStartVertex; |
| 27 | fStartIndex = di.fStartIndex; |
| 28 | fVertexCount = di.fVertexCount; |
| 29 | fIndexCount = di.fIndexCount; |
| 30 | |
| 31 | fInstanceCount = di.fInstanceCount; |
| 32 | fVerticesPerInstance = di.fVerticesPerInstance; |
| 33 | fIndicesPerInstance = di.fIndicesPerInstance; |
| 34 | |
| 35 | if (NULL != di.fDevBounds) { |
| 36 | GrAssert(di.fDevBounds == &di.fDevBoundsStorage); |
| 37 | fDevBoundsStorage = di.fDevBoundsStorage; |
| 38 | fDevBounds = &fDevBoundsStorage; |
| 39 | } else { |
| 40 | fDevBounds = NULL; |
| 41 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 42 | |
| 43 | fDstCopy = di.fDstCopy; |
| 44 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 45 | return *this; |
| 46 | } |
| 47 | |
| 48 | #if GR_DEBUG |
| 49 | bool GrDrawTarget::DrawInfo::isInstanced() const { |
| 50 | if (fInstanceCount > 0) { |
| 51 | GrAssert(0 == fIndexCount % fIndicesPerInstance); |
| 52 | GrAssert(0 == fVertexCount % fVerticesPerInstance); |
| 53 | GrAssert(fIndexCount / fIndicesPerInstance == fInstanceCount); |
| 54 | GrAssert(fVertexCount / fVerticesPerInstance == fInstanceCount); |
| 55 | // there is no way to specify a non-zero start index to drawIndexedInstances(). |
| 56 | GrAssert(0 == fStartIndex); |
| 57 | return true; |
| 58 | } else { |
| 59 | GrAssert(!fVerticesPerInstance); |
| 60 | GrAssert(!fIndicesPerInstance); |
| 61 | return false; |
| 62 | } |
| 63 | } |
| 64 | #endif |
| 65 | |
| 66 | void GrDrawTarget::DrawInfo::adjustInstanceCount(int instanceOffset) { |
| 67 | GrAssert(this->isInstanced()); |
| 68 | GrAssert(instanceOffset + fInstanceCount >= 0); |
| 69 | fInstanceCount += instanceOffset; |
| 70 | fVertexCount = fVerticesPerInstance * fInstanceCount; |
| 71 | fIndexCount = fIndicesPerInstance * fInstanceCount; |
| 72 | } |
| 73 | |
| 74 | void GrDrawTarget::DrawInfo::adjustStartVertex(int vertexOffset) { |
| 75 | fStartVertex += vertexOffset; |
| 76 | GrAssert(fStartVertex >= 0); |
| 77 | } |
| 78 | |
| 79 | void GrDrawTarget::DrawInfo::adjustStartIndex(int indexOffset) { |
| 80 | GrAssert(this->isIndexed()); |
| 81 | fStartIndex += indexOffset; |
| 82 | GrAssert(fStartIndex >= 0); |
| 83 | } |
| 84 | |
| 85 | //////////////////////////////////////////////////////////////////////////////// |
| 86 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 87 | #define DEBUG_INVAL_BUFFER 0xdeadcafe |
| 88 | #define DEBUG_INVAL_START_IDX -1 |
| 89 | |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 90 | GrDrawTarget::GrDrawTarget(GrContext* context) |
| 91 | : fClip(NULL) |
| 92 | , fContext(context) { |
| 93 | GrAssert(NULL != context); |
| 94 | |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 95 | fDrawState = &fDefaultDrawState; |
| 96 | // We assume that fDrawState always owns a ref to the object it points at. |
| 97 | fDefaultDrawState.ref(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 98 | GeometrySrcState& geoSrc = fGeoSrcStateStack.push_back(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 99 | #if GR_DEBUG |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 100 | geoSrc.fVertexCount = DEBUG_INVAL_START_IDX; |
| 101 | geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 102 | geoSrc.fIndexCount = DEBUG_INVAL_START_IDX; |
| 103 | geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 104 | #endif |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 105 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
| 106 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
| 107 | } |
| 108 | |
| 109 | GrDrawTarget::~GrDrawTarget() { |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 110 | GrAssert(1 == fGeoSrcStateStack.count()); |
humper@google.com | 0e51577 | 2013-01-07 19:54:40 +0000 | [diff] [blame] | 111 | SkDEBUGCODE(GeometrySrcState& geoSrc = fGeoSrcStateStack.back()); |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 112 | GrAssert(kNone_GeometrySrcType == geoSrc.fIndexSrc); |
| 113 | GrAssert(kNone_GeometrySrcType == geoSrc.fVertexSrc); |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 114 | fDrawState->unref(); |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 115 | } |
| 116 | |
| 117 | void GrDrawTarget::releaseGeometry() { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 118 | int popCnt = fGeoSrcStateStack.count() - 1; |
| 119 | while (popCnt) { |
| 120 | this->popGeometrySource(); |
| 121 | --popCnt; |
| 122 | } |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 123 | this->resetVertexSource(); |
| 124 | this->resetIndexSource(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 125 | } |
| 126 | |
robertphillips@google.com | beb1af7 | 2012-07-26 18:52:16 +0000 | [diff] [blame] | 127 | void GrDrawTarget::setClip(const GrClipData* clip) { |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 128 | clipWillBeSet(clip); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 129 | fClip = clip; |
| 130 | } |
| 131 | |
robertphillips@google.com | beb1af7 | 2012-07-26 18:52:16 +0000 | [diff] [blame] | 132 | const GrClipData* GrDrawTarget::getClip() const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 133 | return fClip; |
| 134 | } |
| 135 | |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 136 | void GrDrawTarget::setDrawState(GrDrawState* drawState) { |
| 137 | GrAssert(NULL != fDrawState); |
| 138 | if (NULL == drawState) { |
| 139 | drawState = &fDefaultDrawState; |
| 140 | } |
| 141 | if (fDrawState != drawState) { |
| 142 | fDrawState->unref(); |
| 143 | drawState->ref(); |
| 144 | fDrawState = drawState; |
| 145 | } |
| 146 | } |
| 147 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 148 | bool GrDrawTarget::reserveVertexSpace(size_t vertexSize, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 149 | int vertexCount, |
| 150 | void** vertices) { |
| 151 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 152 | bool acquired = false; |
| 153 | if (vertexCount > 0) { |
| 154 | GrAssert(NULL != vertices); |
| 155 | this->releasePreviousVertexSource(); |
| 156 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 157 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 158 | acquired = this->onReserveVertexSpace(vertexSize, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 159 | vertexCount, |
| 160 | vertices); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 161 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 162 | if (acquired) { |
| 163 | geoSrc.fVertexSrc = kReserved_GeometrySrcType; |
| 164 | geoSrc.fVertexCount = vertexCount; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 165 | geoSrc.fVertexSize = vertexSize; |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 166 | } else if (NULL != vertices) { |
| 167 | *vertices = NULL; |
| 168 | } |
| 169 | return acquired; |
| 170 | } |
| 171 | |
| 172 | bool GrDrawTarget::reserveIndexSpace(int indexCount, |
| 173 | void** indices) { |
| 174 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 175 | bool acquired = false; |
| 176 | if (indexCount > 0) { |
| 177 | GrAssert(NULL != indices); |
| 178 | this->releasePreviousIndexSource(); |
| 179 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 180 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 181 | acquired = this->onReserveIndexSpace(indexCount, indices); |
| 182 | } |
| 183 | if (acquired) { |
| 184 | geoSrc.fIndexSrc = kReserved_GeometrySrcType; |
| 185 | geoSrc.fIndexCount = indexCount; |
| 186 | } else if (NULL != indices) { |
| 187 | *indices = NULL; |
| 188 | } |
| 189 | return acquired; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 190 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 191 | } |
| 192 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 193 | bool GrDrawTarget::reserveVertexAndIndexSpace(int vertexCount, |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 194 | int indexCount, |
| 195 | void** vertices, |
| 196 | void** indices) { |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 197 | size_t vertexSize = this->drawState()->getVertexSize(); |
| 198 | this->willReserveVertexAndIndexSpace(vertexCount, indexCount); |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 199 | if (vertexCount) { |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 200 | if (!this->reserveVertexSpace(vertexSize, vertexCount, vertices)) { |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 201 | if (indexCount) { |
| 202 | this->resetIndexSource(); |
| 203 | } |
| 204 | return false; |
| 205 | } |
| 206 | } |
| 207 | if (indexCount) { |
| 208 | if (!this->reserveIndexSpace(indexCount, indices)) { |
| 209 | if (vertexCount) { |
| 210 | this->resetVertexSource(); |
| 211 | } |
| 212 | return false; |
| 213 | } |
| 214 | } |
| 215 | return true; |
| 216 | } |
| 217 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 218 | bool GrDrawTarget::geometryHints(int32_t* vertexCount, |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 219 | int32_t* indexCount) const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 220 | if (NULL != vertexCount) { |
| 221 | *vertexCount = -1; |
| 222 | } |
| 223 | if (NULL != indexCount) { |
| 224 | *indexCount = -1; |
| 225 | } |
| 226 | return false; |
| 227 | } |
| 228 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 229 | void GrDrawTarget::releasePreviousVertexSource() { |
| 230 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 231 | switch (geoSrc.fVertexSrc) { |
| 232 | case kNone_GeometrySrcType: |
| 233 | break; |
| 234 | case kArray_GeometrySrcType: |
| 235 | this->releaseVertexArray(); |
| 236 | break; |
| 237 | case kReserved_GeometrySrcType: |
| 238 | this->releaseReservedVertexSpace(); |
| 239 | break; |
| 240 | case kBuffer_GeometrySrcType: |
| 241 | geoSrc.fVertexBuffer->unref(); |
| 242 | #if GR_DEBUG |
| 243 | geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 244 | #endif |
| 245 | break; |
| 246 | default: |
| 247 | GrCrash("Unknown Vertex Source Type."); |
| 248 | break; |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | void GrDrawTarget::releasePreviousIndexSource() { |
| 253 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 254 | switch (geoSrc.fIndexSrc) { |
| 255 | case kNone_GeometrySrcType: // these two don't require |
| 256 | break; |
| 257 | case kArray_GeometrySrcType: |
| 258 | this->releaseIndexArray(); |
| 259 | break; |
| 260 | case kReserved_GeometrySrcType: |
| 261 | this->releaseReservedIndexSpace(); |
| 262 | break; |
| 263 | case kBuffer_GeometrySrcType: |
| 264 | geoSrc.fIndexBuffer->unref(); |
| 265 | #if GR_DEBUG |
| 266 | geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 267 | #endif |
| 268 | break; |
| 269 | default: |
| 270 | GrCrash("Unknown Index Source Type."); |
| 271 | break; |
| 272 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 273 | } |
| 274 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 275 | void GrDrawTarget::setVertexSourceToArray(const void* vertexArray, |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 276 | int vertexCount) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 277 | this->releasePreviousVertexSource(); |
| 278 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 279 | geoSrc.fVertexSrc = kArray_GeometrySrcType; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 280 | geoSrc.fVertexSize = this->drawState()->getVertexSize(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 281 | geoSrc.fVertexCount = vertexCount; |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 282 | this->onSetVertexSourceToArray(vertexArray, vertexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 283 | } |
| 284 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 285 | void GrDrawTarget::setIndexSourceToArray(const void* indexArray, |
| 286 | int indexCount) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 287 | this->releasePreviousIndexSource(); |
| 288 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 289 | geoSrc.fIndexSrc = kArray_GeometrySrcType; |
| 290 | geoSrc.fIndexCount = indexCount; |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 291 | this->onSetIndexSourceToArray(indexArray, indexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 292 | } |
| 293 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 294 | void GrDrawTarget::setVertexSourceToBuffer(const GrVertexBuffer* buffer) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 295 | this->releasePreviousVertexSource(); |
| 296 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 297 | geoSrc.fVertexSrc = kBuffer_GeometrySrcType; |
| 298 | geoSrc.fVertexBuffer = buffer; |
| 299 | buffer->ref(); |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 300 | geoSrc.fVertexSize = this->drawState()->getVertexSize(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 301 | } |
| 302 | |
| 303 | void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 304 | this->releasePreviousIndexSource(); |
| 305 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 306 | geoSrc.fIndexSrc = kBuffer_GeometrySrcType; |
| 307 | geoSrc.fIndexBuffer = buffer; |
| 308 | buffer->ref(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 309 | } |
| 310 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 311 | void GrDrawTarget::resetVertexSource() { |
| 312 | this->releasePreviousVertexSource(); |
| 313 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 314 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
| 315 | } |
| 316 | |
| 317 | void GrDrawTarget::resetIndexSource() { |
| 318 | this->releasePreviousIndexSource(); |
| 319 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 320 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
| 321 | } |
| 322 | |
| 323 | void GrDrawTarget::pushGeometrySource() { |
| 324 | this->geometrySourceWillPush(); |
| 325 | GeometrySrcState& newState = fGeoSrcStateStack.push_back(); |
| 326 | newState.fIndexSrc = kNone_GeometrySrcType; |
| 327 | newState.fVertexSrc = kNone_GeometrySrcType; |
| 328 | #if GR_DEBUG |
| 329 | newState.fVertexCount = ~0; |
| 330 | newState.fVertexBuffer = (GrVertexBuffer*)~0; |
| 331 | newState.fIndexCount = ~0; |
| 332 | newState.fIndexBuffer = (GrIndexBuffer*)~0; |
| 333 | #endif |
| 334 | } |
| 335 | |
| 336 | void GrDrawTarget::popGeometrySource() { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 337 | // if popping last element then pops are unbalanced with pushes |
| 338 | GrAssert(fGeoSrcStateStack.count() > 1); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 339 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 340 | this->geometrySourceWillPop(fGeoSrcStateStack.fromBack(1)); |
| 341 | this->releasePreviousVertexSource(); |
| 342 | this->releasePreviousIndexSource(); |
| 343 | fGeoSrcStateStack.pop_back(); |
| 344 | } |
| 345 | |
| 346 | //////////////////////////////////////////////////////////////////////////////// |
| 347 | |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 348 | bool GrDrawTarget::checkDraw(GrPrimitiveType type, int startVertex, |
| 349 | int startIndex, int vertexCount, |
| 350 | int indexCount) const { |
bsalomon@google.com | cddaf34 | 2012-07-30 13:09:05 +0000 | [diff] [blame] | 351 | const GrDrawState& drawState = this->getDrawState(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 352 | #if GR_DEBUG |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 353 | const GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 354 | int maxVertex = startVertex + vertexCount; |
| 355 | int maxValidVertex; |
| 356 | switch (geoSrc.fVertexSrc) { |
| 357 | case kNone_GeometrySrcType: |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 358 | GrCrash("Attempting to draw without vertex src."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 359 | case kReserved_GeometrySrcType: // fallthrough |
| 360 | case kArray_GeometrySrcType: |
| 361 | maxValidVertex = geoSrc.fVertexCount; |
| 362 | break; |
| 363 | case kBuffer_GeometrySrcType: |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 364 | maxValidVertex = geoSrc.fVertexBuffer->sizeInBytes() / geoSrc.fVertexSize; |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 365 | break; |
| 366 | } |
| 367 | if (maxVertex > maxValidVertex) { |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 368 | GrCrash("Drawing outside valid vertex range."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 369 | } |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 370 | if (indexCount > 0) { |
| 371 | int maxIndex = startIndex + indexCount; |
| 372 | int maxValidIndex; |
| 373 | switch (geoSrc.fIndexSrc) { |
| 374 | case kNone_GeometrySrcType: |
| 375 | GrCrash("Attempting to draw indexed geom without index src."); |
| 376 | case kReserved_GeometrySrcType: // fallthrough |
| 377 | case kArray_GeometrySrcType: |
| 378 | maxValidIndex = geoSrc.fIndexCount; |
| 379 | break; |
| 380 | case kBuffer_GeometrySrcType: |
| 381 | maxValidIndex = geoSrc.fIndexBuffer->sizeInBytes() / sizeof(uint16_t); |
| 382 | break; |
| 383 | } |
| 384 | if (maxIndex > maxValidIndex) { |
| 385 | GrCrash("Index reads outside valid index range."); |
| 386 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 387 | } |
bsalomon@google.com | b4725b4 | 2012-03-30 17:24:17 +0000 | [diff] [blame] | 388 | |
bsalomon@google.com | cddaf34 | 2012-07-30 13:09:05 +0000 | [diff] [blame] | 389 | GrAssert(NULL != drawState.getRenderTarget()); |
| 390 | for (int s = 0; s < GrDrawState::kNumStages; ++s) { |
| 391 | if (drawState.isStageEnabled(s)) { |
bsalomon@google.com | 6340a41 | 2013-01-22 19:55:59 +0000 | [diff] [blame] | 392 | const GrEffectRef& effect = *drawState.getStage(s).getEffect(); |
bsalomon@google.com | 021fc73 | 2012-10-25 12:47:42 +0000 | [diff] [blame] | 393 | int numTextures = effect->numTextures(); |
bsalomon@google.com | cddaf34 | 2012-07-30 13:09:05 +0000 | [diff] [blame] | 394 | for (int t = 0; t < numTextures; ++t) { |
bsalomon@google.com | 021fc73 | 2012-10-25 12:47:42 +0000 | [diff] [blame] | 395 | GrTexture* texture = effect->texture(t); |
bsalomon@google.com | cddaf34 | 2012-07-30 13:09:05 +0000 | [diff] [blame] | 396 | GrAssert(texture->asRenderTarget() != drawState.getRenderTarget()); |
| 397 | } |
bsalomon@google.com | b4725b4 | 2012-03-30 17:24:17 +0000 | [diff] [blame] | 398 | } |
| 399 | } |
commit-bot@chromium.org | ff6ea26 | 2013-03-12 12:26:08 +0000 | [diff] [blame] | 400 | |
| 401 | GrAssert(drawState.validateVertexAttribs()); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 402 | #endif |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 403 | if (NULL == drawState.getRenderTarget()) { |
bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 404 | return false; |
| 405 | } |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 406 | return true; |
| 407 | } |
| 408 | |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 409 | bool GrDrawTarget::setupDstReadIfNecessary(DrawInfo* info) { |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 410 | if (!this->getDrawState().willEffectReadDst()) { |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 411 | return true; |
| 412 | } |
| 413 | GrRenderTarget* rt = this->drawState()->getRenderTarget(); |
| 414 | // If the dst is not a texture then we don't currently have a way of copying the |
| 415 | // texture. TODO: make copying RT->Tex (or Surface->Surface) a GrDrawTarget operation that can |
| 416 | // be built on top of GL/D3D APIs. |
| 417 | if (NULL == rt->asTexture()) { |
| 418 | GrPrintf("Reading Dst of non-texture render target is not currently supported.\n"); |
| 419 | return false; |
| 420 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 421 | |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 422 | const GrClipData* clip = this->getClip(); |
| 423 | GrIRect copyRect; |
| 424 | clip->getConservativeBounds(this->getDrawState().getRenderTarget(), ©Rect); |
| 425 | SkIRect drawIBounds; |
| 426 | if (info->getDevIBounds(&drawIBounds)) { |
| 427 | if (!copyRect.intersect(drawIBounds)) { |
| 428 | #if GR_DEBUG |
| 429 | GrPrintf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n"); |
| 430 | #endif |
| 431 | return false; |
| 432 | } |
| 433 | } else { |
| 434 | #if GR_DEBUG |
| 435 | //GrPrintf("No dev bounds when dst copy is made.\n"); |
| 436 | #endif |
| 437 | } |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 438 | |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 439 | GrDrawTarget::AutoGeometryAndStatePush agasp(this, kReset_ASRInit); |
| 440 | |
| 441 | // The draw will resolve dst if it has MSAA. Two things to consider in the future: |
| 442 | // 1) to make the dst values be pre-resolve we'd need to be able to copy to MSAA |
| 443 | // texture and sample it correctly in the shader. 2) If 1 isn't available then we |
| 444 | // should just resolve and use the resolved texture directly rather than making a |
| 445 | // copy of it. |
| 446 | GrTextureDesc desc; |
| 447 | desc.fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit; |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 448 | desc.fWidth = copyRect.width(); |
| 449 | desc.fHeight = copyRect.height(); |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 450 | desc.fSampleCnt = 0; |
| 451 | desc.fConfig = rt->config(); |
| 452 | |
| 453 | GrAutoScratchTexture ast(fContext, desc, GrContext::kApprox_ScratchTexMatch); |
| 454 | |
| 455 | if (NULL == ast.texture()) { |
| 456 | GrPrintf("Failed to create temporary copy of destination texture.\n"); |
| 457 | return false; |
| 458 | } |
| 459 | this->drawState()->disableState(GrDrawState::kClip_StateBit); |
| 460 | this->drawState()->setRenderTarget(ast.texture()->asRenderTarget()); |
| 461 | static const int kTextureStage = 0; |
| 462 | SkMatrix matrix; |
| 463 | matrix.setIDiv(rt->width(), rt->height()); |
| 464 | this->drawState()->createTextureEffect(kTextureStage, rt->asTexture(), matrix); |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 465 | |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 466 | SkRect srcRect = SkRect::MakeFromIRect(copyRect); |
| 467 | SkRect dstRect = SkRect::MakeWH(SkIntToScalar(copyRect.width()), |
| 468 | SkIntToScalar(copyRect.height())); |
| 469 | this->drawRect(dstRect, NULL, &srcRect, NULL); |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 470 | |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 471 | info->fDstCopy.setTexture(ast.texture()); |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 472 | info->fDstCopy.setOffset(copyRect.fLeft, copyRect.fTop); |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 473 | return true; |
| 474 | } |
| 475 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 476 | void GrDrawTarget::drawIndexed(GrPrimitiveType type, |
| 477 | int startVertex, |
| 478 | int startIndex, |
| 479 | int vertexCount, |
| 480 | int indexCount, |
| 481 | const SkRect* devBounds) { |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 482 | if (indexCount > 0 && this->checkDraw(type, startVertex, startIndex, vertexCount, indexCount)) { |
| 483 | DrawInfo info; |
| 484 | info.fPrimitiveType = type; |
| 485 | info.fStartVertex = startVertex; |
| 486 | info.fStartIndex = startIndex; |
| 487 | info.fVertexCount = vertexCount; |
| 488 | info.fIndexCount = indexCount; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 489 | |
| 490 | info.fInstanceCount = 0; |
| 491 | info.fVerticesPerInstance = 0; |
| 492 | info.fIndicesPerInstance = 0; |
| 493 | |
| 494 | if (NULL != devBounds) { |
| 495 | info.setDevBounds(*devBounds); |
| 496 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 497 | // TODO: We should continue with incorrect blending. |
| 498 | if (!this->setupDstReadIfNecessary(&info)) { |
| 499 | return; |
| 500 | } |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 501 | this->onDraw(info); |
bsalomon@google.com | 8214587 | 2011-08-23 14:32:40 +0000 | [diff] [blame] | 502 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 503 | } |
| 504 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 505 | void GrDrawTarget::drawNonIndexed(GrPrimitiveType type, |
| 506 | int startVertex, |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 507 | int vertexCount, |
| 508 | const SkRect* devBounds) { |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 509 | if (vertexCount > 0 && this->checkDraw(type, startVertex, -1, vertexCount, -1)) { |
| 510 | DrawInfo info; |
| 511 | info.fPrimitiveType = type; |
| 512 | info.fStartVertex = startVertex; |
| 513 | info.fStartIndex = 0; |
| 514 | info.fVertexCount = vertexCount; |
| 515 | info.fIndexCount = 0; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 516 | |
| 517 | info.fInstanceCount = 0; |
| 518 | info.fVerticesPerInstance = 0; |
| 519 | info.fIndicesPerInstance = 0; |
| 520 | |
| 521 | if (NULL != devBounds) { |
| 522 | info.setDevBounds(*devBounds); |
| 523 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 524 | // TODO: We should continue with incorrect blending. |
| 525 | if (!this->setupDstReadIfNecessary(&info)) { |
| 526 | return; |
| 527 | } |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 528 | this->onDraw(info); |
bsalomon@google.com | 8214587 | 2011-08-23 14:32:40 +0000 | [diff] [blame] | 529 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 530 | } |
| 531 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 532 | void GrDrawTarget::stencilPath(const GrPath* path, const SkStrokeRec& stroke, SkPath::FillType fill) { |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 533 | // TODO: extract portions of checkDraw that are relevant to path stenciling. |
bsalomon@google.com | ded4f4b | 2012-06-28 18:48:06 +0000 | [diff] [blame] | 534 | GrAssert(NULL != path); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 535 | GrAssert(this->caps()->pathStencilingSupport()); |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 536 | GrAssert(!stroke.isHairlineStyle()); |
| 537 | GrAssert(!SkPath::IsInverseFillType(fill)); |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 538 | this->onStencilPath(path, stroke, fill); |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 539 | } |
| 540 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 541 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 542 | |
bsalomon@google.com | 86c1f71 | 2011-10-12 14:54:26 +0000 | [diff] [blame] | 543 | bool GrDrawTarget::willUseHWAALines() const { |
bsalomon@google.com | 2b44673 | 2013-02-12 16:47:41 +0000 | [diff] [blame] | 544 | // There is a conflict between using smooth lines and our use of premultiplied alpha. Smooth |
| 545 | // lines tweak the incoming alpha value but not in a premul-alpha way. So we only use them when |
| 546 | // our alpha is 0xff and tweaking the color for partial coverage is OK |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 547 | if (!this->caps()->hwAALineSupport() || |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 548 | !this->getDrawState().isHWAntialiasState()) { |
bsalomon@google.com | 86c1f71 | 2011-10-12 14:54:26 +0000 | [diff] [blame] | 549 | return false; |
| 550 | } |
bsalomon@google.com | 2b44673 | 2013-02-12 16:47:41 +0000 | [diff] [blame] | 551 | GrDrawState::BlendOptFlags opts = this->getDrawState().getBlendOpts(); |
| 552 | return (GrDrawState::kDisableBlend_BlendOptFlag & opts) && |
| 553 | (GrDrawState::kCoverageAsAlpha_BlendOptFlag & opts); |
bsalomon@google.com | d46e242 | 2011-09-23 17:40:07 +0000 | [diff] [blame] | 554 | } |
| 555 | |
| 556 | bool GrDrawTarget::canApplyCoverage() const { |
bsalomon@google.com | 86c1f71 | 2011-10-12 14:54:26 +0000 | [diff] [blame] | 557 | // we can correctly apply coverage if a) we have dual source blending |
| 558 | // or b) one of our blend optimizations applies. |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 559 | return this->caps()->dualSourceBlendingSupport() || |
bsalomon@google.com | 2b44673 | 2013-02-12 16:47:41 +0000 | [diff] [blame] | 560 | GrDrawState::kNone_BlendOpt != this->getDrawState().getBlendOpts(true); |
bsalomon@google.com | 471d471 | 2011-08-23 15:45:25 +0000 | [diff] [blame] | 561 | } |
| 562 | |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 563 | //////////////////////////////////////////////////////////////////////////////// |
| 564 | |
| 565 | void GrDrawTarget::drawIndexedInstances(GrPrimitiveType type, |
| 566 | int instanceCount, |
| 567 | int verticesPerInstance, |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 568 | int indicesPerInstance, |
| 569 | const SkRect* devBounds) { |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 570 | if (!verticesPerInstance || !indicesPerInstance) { |
| 571 | return; |
| 572 | } |
| 573 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 574 | int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance; |
| 575 | if (!maxInstancesPerDraw) { |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 576 | return; |
| 577 | } |
| 578 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 579 | DrawInfo info; |
| 580 | info.fPrimitiveType = type; |
| 581 | info.fStartIndex = 0; |
| 582 | info.fStartVertex = 0; |
| 583 | info.fIndicesPerInstance = indicesPerInstance; |
| 584 | info.fVerticesPerInstance = verticesPerInstance; |
| 585 | |
| 586 | // Set the same bounds for all the draws. |
| 587 | if (NULL != devBounds) { |
| 588 | info.setDevBounds(*devBounds); |
| 589 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 590 | // TODO: We should continue with incorrect blending. |
| 591 | if (!this->setupDstReadIfNecessary(&info)) { |
| 592 | return; |
| 593 | } |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 594 | |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 595 | while (instanceCount) { |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 596 | info.fInstanceCount = GrMin(instanceCount, maxInstancesPerDraw); |
| 597 | info.fVertexCount = info.fInstanceCount * verticesPerInstance; |
| 598 | info.fIndexCount = info.fInstanceCount * indicesPerInstance; |
| 599 | |
| 600 | if (this->checkDraw(type, |
| 601 | info.fStartVertex, |
| 602 | info.fStartIndex, |
| 603 | info.fVertexCount, |
| 604 | info.fIndexCount)) { |
| 605 | this->onDraw(info); |
| 606 | } |
| 607 | info.fStartVertex += info.fVertexCount; |
| 608 | instanceCount -= info.fInstanceCount; |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 609 | } |
| 610 | } |
bsalomon@google.com | 3d0835b | 2011-12-08 16:12:03 +0000 | [diff] [blame] | 611 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 612 | //////////////////////////////////////////////////////////////////////////////// |
| 613 | |
bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame^] | 614 | void GrDrawTarget::onDrawRect(const GrRect& rect, |
| 615 | const SkMatrix* matrix, |
| 616 | const GrRect* localRect, |
| 617 | const SkMatrix* localMatrix) { |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 618 | // position + (optional) texture coord |
| 619 | static const GrVertexAttrib kAttribs[] = { |
jvanverth@google.com | 054ae99 | 2013-04-01 20:06:51 +0000 | [diff] [blame] | 620 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
| 621 | {kVec2f_GrVertexAttribType, sizeof(GrPoint), kLocalCoord_GrVertexAttribBinding} |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 622 | }; |
| 623 | int attribCount = 1; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 624 | |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 625 | if (NULL != localRect) { |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 626 | attribCount = 2; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 627 | } |
| 628 | |
| 629 | GrDrawState::AutoViewMatrixRestore avmr; |
| 630 | if (NULL != matrix) { |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 631 | avmr.set(this->drawState(), *matrix); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 632 | } |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 633 | |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 634 | this->drawState()->setVertexAttribs(kAttribs, attribCount); |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 635 | AutoReleaseGeometry geo(this, 4, 0); |
bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 636 | if (!geo.succeeded()) { |
| 637 | GrPrintf("Failed to get space for vertices!\n"); |
| 638 | return; |
| 639 | } |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 640 | |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 641 | size_t vsize = this->drawState()->getVertexSize(); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 642 | geo.positions()->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vsize); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 643 | if (NULL != localRect) { |
jvanverth@google.com | 9b855c7 | 2013-03-01 18:21:22 +0000 | [diff] [blame] | 644 | GrAssert(attribCount == 2); |
| 645 | GrPoint* coords = GrTCast<GrPoint*>(GrTCast<intptr_t>(geo.vertices()) + |
| 646 | kAttribs[1].fOffset); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 647 | coords->setRectFan(localRect->fLeft, localRect->fTop, |
| 648 | localRect->fRight, localRect->fBottom, |
| 649 | vsize); |
| 650 | if (NULL != localMatrix) { |
| 651 | localMatrix->mapPointsWithStride(coords, vsize, 4); |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 652 | } |
| 653 | } |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 654 | SkTLazy<SkRect> bounds; |
| 655 | if (this->getDrawState().willEffectReadDst()) { |
| 656 | bounds.init(); |
| 657 | this->getDrawState().getViewMatrix().mapRect(bounds.get(), rect); |
| 658 | } |
robertphillips@google.com | 8b129aa | 2012-10-05 15:37:00 +0000 | [diff] [blame] | 659 | |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 660 | this->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4, bounds.getMaybeNull()); |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 661 | } |
| 662 | |
bsalomon@google.com | 02ddc8b | 2013-01-28 15:35:28 +0000 | [diff] [blame] | 663 | void GrDrawTarget::clipWillBeSet(const GrClipData* clipData) { |
| 664 | } |
| 665 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 666 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 667 | |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 668 | GrDrawTarget::AutoStateRestore::AutoStateRestore() { |
| 669 | fDrawTarget = NULL; |
| 670 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 671 | |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 672 | GrDrawTarget::AutoStateRestore::AutoStateRestore(GrDrawTarget* target, |
| 673 | ASRInit init) { |
| 674 | fDrawTarget = NULL; |
| 675 | this->set(target, init); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 676 | } |
| 677 | |
| 678 | GrDrawTarget::AutoStateRestore::~AutoStateRestore() { |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 679 | if (NULL != fDrawTarget) { |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 680 | fDrawTarget->setDrawState(fSavedState); |
| 681 | fSavedState->unref(); |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 682 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 683 | } |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 684 | |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 685 | void GrDrawTarget::AutoStateRestore::set(GrDrawTarget* target, ASRInit init) { |
| 686 | GrAssert(NULL == fDrawTarget); |
| 687 | fDrawTarget = target; |
| 688 | fSavedState = target->drawState(); |
| 689 | GrAssert(fSavedState); |
| 690 | fSavedState->ref(); |
| 691 | if (kReset_ASRInit == init) { |
| 692 | // calls the default cons |
| 693 | fTempState.init(); |
| 694 | } else { |
| 695 | GrAssert(kPreserve_ASRInit == init); |
| 696 | // calls the copy cons |
| 697 | fTempState.set(*fSavedState); |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 698 | } |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 699 | target->setDrawState(fTempState.get()); |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 700 | } |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 701 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 702 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 703 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 704 | GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry( |
| 705 | GrDrawTarget* target, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 706 | int vertexCount, |
| 707 | int indexCount) { |
| 708 | fTarget = NULL; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 709 | this->set(target, vertexCount, indexCount); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 710 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 711 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 712 | GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() { |
| 713 | fTarget = NULL; |
| 714 | } |
| 715 | |
| 716 | GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() { |
| 717 | this->reset(); |
| 718 | } |
| 719 | |
| 720 | bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 721 | int vertexCount, |
| 722 | int indexCount) { |
| 723 | this->reset(); |
| 724 | fTarget = target; |
| 725 | bool success = true; |
| 726 | if (NULL != fTarget) { |
| 727 | fTarget = target; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 728 | success = target->reserveVertexAndIndexSpace(vertexCount, |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 729 | indexCount, |
| 730 | &fVertices, |
| 731 | &fIndices); |
| 732 | if (!success) { |
| 733 | fTarget = NULL; |
| 734 | this->reset(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 735 | } |
| 736 | } |
| 737 | GrAssert(success == (NULL != fTarget)); |
| 738 | return success; |
| 739 | } |
| 740 | |
| 741 | void GrDrawTarget::AutoReleaseGeometry::reset() { |
| 742 | if (NULL != fTarget) { |
| 743 | if (NULL != fVertices) { |
| 744 | fTarget->resetVertexSource(); |
| 745 | } |
| 746 | if (NULL != fIndices) { |
| 747 | fTarget->resetIndexSource(); |
| 748 | } |
| 749 | fTarget = NULL; |
| 750 | } |
bsalomon@google.com | cb0c5ab | 2011-06-29 17:48:17 +0000 | [diff] [blame] | 751 | fVertices = NULL; |
| 752 | fIndices = NULL; |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 753 | } |
| 754 | |
bsalomon@google.com | 8d67c07 | 2012-12-13 20:38:14 +0000 | [diff] [blame] | 755 | GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) { |
| 756 | fTarget = target; |
| 757 | fClip = fTarget->getClip(); |
| 758 | fStack.init(); |
| 759 | fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op); |
| 760 | fReplacementClip.fClipStack = fStack.get(); |
| 761 | target->setClip(&fReplacementClip); |
| 762 | } |
| 763 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 764 | /////////////////////////////////////////////////////////////////////////////// |
| 765 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 766 | SK_DEFINE_INST_COUNT(GrDrawTargetCaps) |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 767 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 768 | void GrDrawTargetCaps::reset() { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 769 | f8BitPaletteSupport = false; |
| 770 | fNPOTTextureTileSupport = false; |
| 771 | fTwoSidedStencilSupport = false; |
| 772 | fStencilWrapOpsSupport = false; |
| 773 | fHWAALineSupport = false; |
| 774 | fShaderDerivativeSupport = false; |
| 775 | fGeometryShaderSupport = false; |
skia.committer@gmail.com | e60ed08 | 2013-03-26 07:01:04 +0000 | [diff] [blame] | 776 | fDualSourceBlendingSupport = false; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 777 | fBufferLockSupport = false; |
| 778 | fPathStencilingSupport = false; |
| 779 | |
| 780 | fMaxRenderTargetSize = 0; |
| 781 | fMaxTextureSize = 0; |
| 782 | fMaxSampleCount = 0; |
| 783 | } |
| 784 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 785 | GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) { |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 786 | f8BitPaletteSupport = other.f8BitPaletteSupport; |
| 787 | fNPOTTextureTileSupport = other.fNPOTTextureTileSupport; |
| 788 | fTwoSidedStencilSupport = other.fTwoSidedStencilSupport; |
| 789 | fStencilWrapOpsSupport = other.fStencilWrapOpsSupport; |
| 790 | fHWAALineSupport = other.fHWAALineSupport; |
| 791 | fShaderDerivativeSupport = other.fShaderDerivativeSupport; |
| 792 | fGeometryShaderSupport = other.fGeometryShaderSupport; |
| 793 | fDualSourceBlendingSupport = other.fDualSourceBlendingSupport; |
| 794 | fBufferLockSupport = other.fBufferLockSupport; |
| 795 | fPathStencilingSupport = other.fPathStencilingSupport; |
| 796 | |
| 797 | fMaxRenderTargetSize = other.fMaxRenderTargetSize; |
| 798 | fMaxTextureSize = other.fMaxTextureSize; |
| 799 | fMaxSampleCount = other.fMaxSampleCount; |
| 800 | |
| 801 | return *this; |
| 802 | } |
| 803 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 804 | void GrDrawTargetCaps::print() const { |
bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 805 | static const char* gNY[] = {"NO", "YES"}; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 806 | GrPrintf("8 Bit Palette Support : %s\n", gNY[f8BitPaletteSupport]); |
| 807 | GrPrintf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]); |
| 808 | GrPrintf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]); |
| 809 | GrPrintf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]); |
| 810 | GrPrintf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]); |
| 811 | GrPrintf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]); |
| 812 | GrPrintf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]); |
| 813 | GrPrintf("Dual Source Blending Support: %s\n", gNY[fDualSourceBlendingSupport]); |
| 814 | GrPrintf("Buffer Lock Support : %s\n", gNY[fBufferLockSupport]); |
| 815 | GrPrintf("Path Stenciling Support : %s\n", gNY[fPathStencilingSupport]); |
| 816 | GrPrintf("Max Texture Size : %d\n", fMaxTextureSize); |
| 817 | GrPrintf("Max Render Target Size : %d\n", fMaxRenderTargetSize); |
| 818 | GrPrintf("Max Sample Count : %d\n", fMaxSampleCount); |
bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 819 | } |