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" |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 14 | #include "GrPath.h" |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 15 | #include "GrRenderTarget.h" |
bsalomon | 62c447d | 2014-08-08 08:08:50 -0700 | [diff] [blame] | 16 | #include "GrTemplates.h" |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 17 | #include "GrTexture.h" |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 18 | #include "GrVertexBuffer.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 19 | |
sugoi@google.com | 5f74cf8 | 2012-12-17 21:16:45 +0000 | [diff] [blame] | 20 | #include "SkStrokeRec.h" |
sugoi@google.com | 12b4e27 | 2012-12-06 20:13:11 +0000 | [diff] [blame] | 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) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 36 | SkASSERT(di.fDevBounds == &di.fDevBoundsStorage); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 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 | |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 48 | #ifdef SK_DEBUG |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 49 | bool GrDrawTarget::DrawInfo::isInstanced() const { |
| 50 | if (fInstanceCount > 0) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 51 | SkASSERT(0 == fIndexCount % fIndicesPerInstance); |
| 52 | SkASSERT(0 == fVertexCount % fVerticesPerInstance); |
| 53 | SkASSERT(fIndexCount / fIndicesPerInstance == fInstanceCount); |
| 54 | SkASSERT(fVertexCount / fVerticesPerInstance == fInstanceCount); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 55 | // there is no way to specify a non-zero start index to drawIndexedInstances(). |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 56 | SkASSERT(0 == fStartIndex); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 57 | return true; |
| 58 | } else { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 59 | SkASSERT(!fVerticesPerInstance); |
| 60 | SkASSERT(!fIndicesPerInstance); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 61 | return false; |
| 62 | } |
| 63 | } |
| 64 | #endif |
| 65 | |
| 66 | void GrDrawTarget::DrawInfo::adjustInstanceCount(int instanceOffset) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 67 | SkASSERT(this->isInstanced()); |
| 68 | SkASSERT(instanceOffset + fInstanceCount >= 0); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 69 | fInstanceCount += instanceOffset; |
| 70 | fVertexCount = fVerticesPerInstance * fInstanceCount; |
| 71 | fIndexCount = fIndicesPerInstance * fInstanceCount; |
| 72 | } |
| 73 | |
| 74 | void GrDrawTarget::DrawInfo::adjustStartVertex(int vertexOffset) { |
| 75 | fStartVertex += vertexOffset; |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 76 | SkASSERT(fStartVertex >= 0); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | void GrDrawTarget::DrawInfo::adjustStartIndex(int indexOffset) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 80 | SkASSERT(this->isIndexed()); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 81 | fStartIndex += indexOffset; |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 82 | SkASSERT(fStartIndex >= 0); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 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) |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 92 | , fContext(context) |
commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 93 | , fGpuTraceMarkerCount(0) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 94 | SkASSERT(NULL != context); |
bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 95 | |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 96 | fDrawState = &fDefaultDrawState; |
| 97 | // We assume that fDrawState always owns a ref to the object it points at. |
| 98 | fDefaultDrawState.ref(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 99 | GeometrySrcState& geoSrc = fGeoSrcStateStack.push_back(); |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 100 | #ifdef SK_DEBUG |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 101 | 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.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 105 | #endif |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 106 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
| 107 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
| 108 | } |
| 109 | |
| 110 | GrDrawTarget::~GrDrawTarget() { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 111 | SkASSERT(1 == fGeoSrcStateStack.count()); |
humper@google.com | 0e51577 | 2013-01-07 19:54:40 +0000 | [diff] [blame] | 112 | SkDEBUGCODE(GeometrySrcState& geoSrc = fGeoSrcStateStack.back()); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 113 | SkASSERT(kNone_GeometrySrcType == geoSrc.fIndexSrc); |
| 114 | SkASSERT(kNone_GeometrySrcType == geoSrc.fVertexSrc); |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 115 | fDrawState->unref(); |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | void GrDrawTarget::releaseGeometry() { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 119 | int popCnt = fGeoSrcStateStack.count() - 1; |
| 120 | while (popCnt) { |
| 121 | this->popGeometrySource(); |
| 122 | --popCnt; |
| 123 | } |
bsalomon@google.com | 4a018bb | 2011-10-28 19:50:21 +0000 | [diff] [blame] | 124 | this->resetVertexSource(); |
| 125 | this->resetIndexSource(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 126 | } |
| 127 | |
robertphillips@google.com | beb1af7 | 2012-07-26 18:52:16 +0000 | [diff] [blame] | 128 | void GrDrawTarget::setClip(const GrClipData* clip) { |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 129 | clipWillBeSet(clip); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 130 | fClip = clip; |
| 131 | } |
| 132 | |
robertphillips@google.com | beb1af7 | 2012-07-26 18:52:16 +0000 | [diff] [blame] | 133 | const GrClipData* GrDrawTarget::getClip() const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 134 | return fClip; |
| 135 | } |
| 136 | |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 137 | void GrDrawTarget::setDrawState(GrDrawState* drawState) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 138 | SkASSERT(NULL != fDrawState); |
bsalomon@google.com | a5d056a | 2012-03-27 15:59:58 +0000 | [diff] [blame] | 139 | 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.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 149 | bool GrDrawTarget::reserveVertexSpace(size_t vertexSize, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 150 | int vertexCount, |
| 151 | void** vertices) { |
| 152 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 153 | bool acquired = false; |
| 154 | if (vertexCount > 0) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 155 | SkASSERT(NULL != vertices); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 156 | this->releasePreviousVertexSource(); |
| 157 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 158 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 159 | acquired = this->onReserveVertexSpace(vertexSize, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 160 | vertexCount, |
| 161 | vertices); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 162 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 163 | if (acquired) { |
| 164 | geoSrc.fVertexSrc = kReserved_GeometrySrcType; |
| 165 | geoSrc.fVertexCount = vertexCount; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 166 | geoSrc.fVertexSize = vertexSize; |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 167 | } else if (NULL != vertices) { |
| 168 | *vertices = NULL; |
| 169 | } |
| 170 | return acquired; |
| 171 | } |
| 172 | |
| 173 | bool GrDrawTarget::reserveIndexSpace(int indexCount, |
| 174 | void** indices) { |
| 175 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 176 | bool acquired = false; |
| 177 | if (indexCount > 0) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 178 | SkASSERT(NULL != indices); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 179 | this->releasePreviousIndexSource(); |
| 180 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 181 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 182 | acquired = this->onReserveIndexSpace(indexCount, indices); |
| 183 | } |
| 184 | if (acquired) { |
| 185 | geoSrc.fIndexSrc = kReserved_GeometrySrcType; |
| 186 | geoSrc.fIndexCount = indexCount; |
| 187 | } else if (NULL != indices) { |
| 188 | *indices = NULL; |
| 189 | } |
| 190 | return acquired; |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 191 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 192 | } |
| 193 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 194 | bool GrDrawTarget::reserveVertexAndIndexSpace(int vertexCount, |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 195 | int indexCount, |
| 196 | void** vertices, |
| 197 | void** indices) { |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 198 | size_t vertexStride = this->drawState()->getVertexStride(); |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 199 | this->willReserveVertexAndIndexSpace(vertexCount, indexCount); |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 200 | if (vertexCount) { |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 201 | if (!this->reserveVertexSpace(vertexStride, vertexCount, vertices)) { |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 202 | 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.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 219 | bool GrDrawTarget::geometryHints(int32_t* vertexCount, |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 220 | int32_t* indexCount) const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 221 | if (NULL != vertexCount) { |
| 222 | *vertexCount = -1; |
| 223 | } |
| 224 | if (NULL != indexCount) { |
| 225 | *indexCount = -1; |
| 226 | } |
| 227 | return false; |
| 228 | } |
| 229 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 230 | void GrDrawTarget::releasePreviousVertexSource() { |
| 231 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 232 | switch (geoSrc.fVertexSrc) { |
| 233 | case kNone_GeometrySrcType: |
| 234 | break; |
| 235 | case kArray_GeometrySrcType: |
| 236 | this->releaseVertexArray(); |
| 237 | break; |
| 238 | case kReserved_GeometrySrcType: |
| 239 | this->releaseReservedVertexSpace(); |
| 240 | break; |
| 241 | case kBuffer_GeometrySrcType: |
| 242 | geoSrc.fVertexBuffer->unref(); |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 243 | #ifdef SK_DEBUG |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 244 | geoSrc.fVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 245 | #endif |
| 246 | break; |
| 247 | default: |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 248 | SkFAIL("Unknown Vertex Source Type."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 249 | break; |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | void GrDrawTarget::releasePreviousIndexSource() { |
| 254 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 255 | switch (geoSrc.fIndexSrc) { |
| 256 | case kNone_GeometrySrcType: // these two don't require |
| 257 | break; |
| 258 | case kArray_GeometrySrcType: |
| 259 | this->releaseIndexArray(); |
| 260 | break; |
| 261 | case kReserved_GeometrySrcType: |
| 262 | this->releaseReservedIndexSpace(); |
| 263 | break; |
| 264 | case kBuffer_GeometrySrcType: |
| 265 | geoSrc.fIndexBuffer->unref(); |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 266 | #ifdef SK_DEBUG |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 267 | geoSrc.fIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 268 | #endif |
| 269 | break; |
| 270 | default: |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 271 | SkFAIL("Unknown Index Source Type."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 272 | break; |
| 273 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 274 | } |
| 275 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 276 | void GrDrawTarget::setVertexSourceToArray(const void* vertexArray, |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 277 | int vertexCount) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 278 | this->releasePreviousVertexSource(); |
| 279 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 280 | geoSrc.fVertexSrc = kArray_GeometrySrcType; |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 281 | geoSrc.fVertexSize = this->drawState()->getVertexStride(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 282 | geoSrc.fVertexCount = vertexCount; |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 283 | this->onSetVertexSourceToArray(vertexArray, vertexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 284 | } |
| 285 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 286 | void GrDrawTarget::setIndexSourceToArray(const void* indexArray, |
| 287 | int indexCount) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 288 | this->releasePreviousIndexSource(); |
| 289 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 290 | geoSrc.fIndexSrc = kArray_GeometrySrcType; |
| 291 | geoSrc.fIndexCount = indexCount; |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 292 | this->onSetIndexSourceToArray(indexArray, indexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 293 | } |
| 294 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 295 | void GrDrawTarget::setVertexSourceToBuffer(const GrVertexBuffer* buffer) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 296 | this->releasePreviousVertexSource(); |
| 297 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 298 | geoSrc.fVertexSrc = kBuffer_GeometrySrcType; |
| 299 | geoSrc.fVertexBuffer = buffer; |
| 300 | buffer->ref(); |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 301 | geoSrc.fVertexSize = this->drawState()->getVertexStride(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 302 | } |
| 303 | |
| 304 | void GrDrawTarget::setIndexSourceToBuffer(const GrIndexBuffer* buffer) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 305 | this->releasePreviousIndexSource(); |
| 306 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 307 | geoSrc.fIndexSrc = kBuffer_GeometrySrcType; |
| 308 | geoSrc.fIndexBuffer = buffer; |
| 309 | buffer->ref(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 310 | } |
| 311 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 312 | void GrDrawTarget::resetVertexSource() { |
| 313 | this->releasePreviousVertexSource(); |
| 314 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 315 | geoSrc.fVertexSrc = kNone_GeometrySrcType; |
| 316 | } |
| 317 | |
| 318 | void GrDrawTarget::resetIndexSource() { |
| 319 | this->releasePreviousIndexSource(); |
| 320 | GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
| 321 | geoSrc.fIndexSrc = kNone_GeometrySrcType; |
| 322 | } |
| 323 | |
| 324 | void GrDrawTarget::pushGeometrySource() { |
| 325 | this->geometrySourceWillPush(); |
| 326 | GeometrySrcState& newState = fGeoSrcStateStack.push_back(); |
| 327 | newState.fIndexSrc = kNone_GeometrySrcType; |
| 328 | newState.fVertexSrc = kNone_GeometrySrcType; |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 329 | #ifdef SK_DEBUG |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 330 | newState.fVertexCount = ~0; |
| 331 | newState.fVertexBuffer = (GrVertexBuffer*)~0; |
| 332 | newState.fIndexCount = ~0; |
| 333 | newState.fIndexBuffer = (GrIndexBuffer*)~0; |
| 334 | #endif |
| 335 | } |
| 336 | |
| 337 | void GrDrawTarget::popGeometrySource() { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 338 | // if popping last element then pops are unbalanced with pushes |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 339 | SkASSERT(fGeoSrcStateStack.count() > 1); |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 340 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 341 | this->geometrySourceWillPop(fGeoSrcStateStack.fromBack(1)); |
| 342 | this->releasePreviousVertexSource(); |
| 343 | this->releasePreviousIndexSource(); |
| 344 | fGeoSrcStateStack.pop_back(); |
| 345 | } |
| 346 | |
| 347 | //////////////////////////////////////////////////////////////////////////////// |
| 348 | |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 349 | bool GrDrawTarget::checkDraw(GrPrimitiveType type, int startVertex, |
| 350 | int startIndex, int vertexCount, |
| 351 | int indexCount) const { |
bsalomon@google.com | cddaf34 | 2012-07-30 13:09:05 +0000 | [diff] [blame] | 352 | const GrDrawState& drawState = this->getDrawState(); |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 353 | #ifdef SK_DEBUG |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 354 | const GeometrySrcState& geoSrc = fGeoSrcStateStack.back(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 355 | int maxVertex = startVertex + vertexCount; |
| 356 | int maxValidVertex; |
| 357 | switch (geoSrc.fVertexSrc) { |
| 358 | case kNone_GeometrySrcType: |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 359 | SkFAIL("Attempting to draw without vertex src."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 360 | case kReserved_GeometrySrcType: // fallthrough |
| 361 | case kArray_GeometrySrcType: |
| 362 | maxValidVertex = geoSrc.fVertexCount; |
| 363 | break; |
| 364 | case kBuffer_GeometrySrcType: |
commit-bot@chromium.org | 089a780 | 2014-05-02 21:38:22 +0000 | [diff] [blame] | 365 | maxValidVertex = static_cast<int>(geoSrc.fVertexBuffer->gpuMemorySize() / geoSrc.fVertexSize); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 366 | break; |
| 367 | } |
| 368 | if (maxVertex > maxValidVertex) { |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 369 | SkFAIL("Drawing outside valid vertex range."); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 370 | } |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 371 | if (indexCount > 0) { |
| 372 | int maxIndex = startIndex + indexCount; |
| 373 | int maxValidIndex; |
| 374 | switch (geoSrc.fIndexSrc) { |
| 375 | case kNone_GeometrySrcType: |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 376 | SkFAIL("Attempting to draw indexed geom without index src."); |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 377 | case kReserved_GeometrySrcType: // fallthrough |
| 378 | case kArray_GeometrySrcType: |
| 379 | maxValidIndex = geoSrc.fIndexCount; |
| 380 | break; |
| 381 | case kBuffer_GeometrySrcType: |
commit-bot@chromium.org | 089a780 | 2014-05-02 21:38:22 +0000 | [diff] [blame] | 382 | maxValidIndex = static_cast<int>(geoSrc.fIndexBuffer->gpuMemorySize() / sizeof(uint16_t)); |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 383 | break; |
| 384 | } |
| 385 | if (maxIndex > maxValidIndex) { |
commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 386 | SkFAIL("Index reads outside valid index range."); |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 387 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 388 | } |
bsalomon@google.com | b4725b4 | 2012-03-30 17:24:17 +0000 | [diff] [blame] | 389 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 390 | SkASSERT(NULL != drawState.getRenderTarget()); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 391 | |
| 392 | for (int s = 0; s < drawState.numColorStages(); ++s) { |
bsalomon | f99f884 | 2014-07-07 11:54:23 -0700 | [diff] [blame] | 393 | const GrEffect* effect = drawState.getColorStage(s).getEffect(); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 394 | int numTextures = effect->numTextures(); |
| 395 | for (int t = 0; t < numTextures; ++t) { |
| 396 | GrTexture* texture = effect->texture(t); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 397 | SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget()); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 398 | } |
| 399 | } |
| 400 | for (int s = 0; s < drawState.numCoverageStages(); ++s) { |
bsalomon | f99f884 | 2014-07-07 11:54:23 -0700 | [diff] [blame] | 401 | const GrEffect* effect = drawState.getCoverageStage(s).getEffect(); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 402 | int numTextures = effect->numTextures(); |
| 403 | for (int t = 0; t < numTextures; ++t) { |
| 404 | GrTexture* texture = effect->texture(t); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 405 | SkASSERT(texture->asRenderTarget() != drawState.getRenderTarget()); |
bsalomon@google.com | b4725b4 | 2012-03-30 17:24:17 +0000 | [diff] [blame] | 406 | } |
| 407 | } |
commit-bot@chromium.org | ff6ea26 | 2013-03-12 12:26:08 +0000 | [diff] [blame] | 408 | |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 409 | SkASSERT(drawState.validateVertexAttribs()); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 410 | #endif |
bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 411 | if (NULL == drawState.getRenderTarget()) { |
bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 412 | return false; |
| 413 | } |
bsalomon@google.com | e826262 | 2011-11-07 02:30:51 +0000 | [diff] [blame] | 414 | return true; |
| 415 | } |
| 416 | |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 417 | bool GrDrawTarget::setupDstReadIfNecessary(GrDeviceCoordTexture* dstCopy, const SkRect* drawBounds) { |
bsalomon@google.com | b515881 | 2013-05-13 18:50:25 +0000 | [diff] [blame] | 418 | if (this->caps()->dstReadInShaderSupport() || !this->getDrawState().willEffectReadDstColor()) { |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 419 | return true; |
| 420 | } |
| 421 | GrRenderTarget* rt = this->drawState()->getRenderTarget(); |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 422 | SkIRect copyRect; |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 423 | const GrClipData* clip = this->getClip(); |
| 424 | clip->getConservativeBounds(rt, ©Rect); |
| 425 | |
| 426 | if (NULL != drawBounds) { |
| 427 | SkIRect drawIBounds; |
| 428 | drawBounds->roundOut(&drawIBounds); |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 429 | if (!copyRect.intersect(drawIBounds)) { |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 430 | #ifdef SK_DEBUG |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 431 | GrPrintf("Missed an early reject. Bailing on draw from setupDstReadIfNecessary.\n"); |
| 432 | #endif |
| 433 | return false; |
| 434 | } |
| 435 | } else { |
commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 436 | #ifdef SK_DEBUG |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 437 | //GrPrintf("No dev bounds when dst copy is made.\n"); |
| 438 | #endif |
| 439 | } |
skia.committer@gmail.com | 05a2ee0 | 2013-04-02 07:01:34 +0000 | [diff] [blame] | 440 | |
commit-bot@chromium.org | 63150af | 2013-04-11 22:00:22 +0000 | [diff] [blame] | 441 | // MSAA consideration: When there is support for reading MSAA samples in the shader we could |
| 442 | // have per-sample dst values by making the copy multisampled. |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 443 | GrTextureDesc desc; |
bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 444 | this->initCopySurfaceDstDesc(rt, &desc); |
commit-bot@chromium.org | bb5c465 | 2013-04-01 12:49:31 +0000 | [diff] [blame] | 445 | desc.fWidth = copyRect.width(); |
| 446 | desc.fHeight = copyRect.height(); |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 447 | |
| 448 | GrAutoScratchTexture ast(fContext, desc, GrContext::kApprox_ScratchTexMatch); |
| 449 | |
| 450 | if (NULL == ast.texture()) { |
| 451 | GrPrintf("Failed to create temporary copy of destination texture.\n"); |
| 452 | return false; |
| 453 | } |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 454 | SkIPoint dstPoint = {0, 0}; |
| 455 | if (this->copySurface(ast.texture(), rt, copyRect, dstPoint)) { |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 456 | dstCopy->setTexture(ast.texture()); |
| 457 | dstCopy->setOffset(copyRect.fLeft, copyRect.fTop); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 458 | return true; |
| 459 | } else { |
| 460 | return false; |
| 461 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 462 | } |
| 463 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 464 | void GrDrawTarget::drawIndexed(GrPrimitiveType type, |
| 465 | int startVertex, |
| 466 | int startIndex, |
| 467 | int vertexCount, |
| 468 | int indexCount, |
| 469 | const SkRect* devBounds) { |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 470 | if (indexCount > 0 && this->checkDraw(type, startVertex, startIndex, vertexCount, indexCount)) { |
| 471 | DrawInfo info; |
| 472 | info.fPrimitiveType = type; |
| 473 | info.fStartVertex = startVertex; |
| 474 | info.fStartIndex = startIndex; |
| 475 | info.fVertexCount = vertexCount; |
| 476 | info.fIndexCount = indexCount; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 477 | |
| 478 | info.fInstanceCount = 0; |
| 479 | info.fVerticesPerInstance = 0; |
| 480 | info.fIndicesPerInstance = 0; |
| 481 | |
| 482 | if (NULL != devBounds) { |
| 483 | info.setDevBounds(*devBounds); |
| 484 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 485 | // TODO: We should continue with incorrect blending. |
| 486 | if (!this->setupDstReadIfNecessary(&info)) { |
| 487 | return; |
| 488 | } |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 489 | this->onDraw(info); |
bsalomon@google.com | 8214587 | 2011-08-23 14:32:40 +0000 | [diff] [blame] | 490 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 491 | } |
| 492 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 493 | void GrDrawTarget::drawNonIndexed(GrPrimitiveType type, |
| 494 | int startVertex, |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 495 | int vertexCount, |
| 496 | const SkRect* devBounds) { |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 497 | if (vertexCount > 0 && this->checkDraw(type, startVertex, -1, vertexCount, -1)) { |
| 498 | DrawInfo info; |
| 499 | info.fPrimitiveType = type; |
| 500 | info.fStartVertex = startVertex; |
| 501 | info.fStartIndex = 0; |
| 502 | info.fVertexCount = vertexCount; |
| 503 | info.fIndexCount = 0; |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 504 | |
| 505 | info.fInstanceCount = 0; |
| 506 | info.fVerticesPerInstance = 0; |
| 507 | info.fIndicesPerInstance = 0; |
| 508 | |
| 509 | if (NULL != devBounds) { |
| 510 | info.setDevBounds(*devBounds); |
| 511 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 512 | // TODO: We should continue with incorrect blending. |
| 513 | if (!this->setupDstReadIfNecessary(&info)) { |
| 514 | return; |
| 515 | } |
bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 516 | this->onDraw(info); |
bsalomon@google.com | 8214587 | 2011-08-23 14:32:40 +0000 | [diff] [blame] | 517 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 518 | } |
| 519 | |
commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 520 | void GrDrawTarget::stencilPath(const GrPath* path, SkPath::FillType fill) { |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 521 | // TODO: extract portions of checkDraw that are relevant to path stenciling. |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 522 | SkASSERT(NULL != path); |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 523 | SkASSERT(this->caps()->pathRenderingSupport()); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 524 | SkASSERT(!SkPath::IsInverseFillType(fill)); |
commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 525 | this->onStencilPath(path, fill); |
bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 526 | } |
| 527 | |
commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 528 | void GrDrawTarget::drawPath(const GrPath* path, SkPath::FillType fill) { |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 529 | // TODO: extract portions of checkDraw that are relevant to path rendering. |
| 530 | SkASSERT(NULL != path); |
| 531 | SkASSERT(this->caps()->pathRenderingSupport()); |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 532 | const GrDrawState* drawState = &getDrawState(); |
| 533 | |
| 534 | SkRect devBounds; |
| 535 | if (SkPath::IsInverseFillType(fill)) { |
| 536 | devBounds = SkRect::MakeWH(SkIntToScalar(drawState->getRenderTarget()->width()), |
| 537 | SkIntToScalar(drawState->getRenderTarget()->height())); |
| 538 | } else { |
| 539 | devBounds = path->getBounds(); |
| 540 | } |
| 541 | SkMatrix viewM = drawState->getViewMatrix(); |
| 542 | viewM.mapRect(&devBounds); |
| 543 | |
| 544 | GrDeviceCoordTexture dstCopy; |
| 545 | if (!this->setupDstReadIfNecessary(&dstCopy, &devBounds)) { |
| 546 | return; |
| 547 | } |
| 548 | |
commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 549 | this->onDrawPath(path, fill, dstCopy.texture() ? &dstCopy : NULL); |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 550 | } |
| 551 | |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 552 | void GrDrawTarget::drawPaths(const GrPathRange* pathRange, |
| 553 | const uint32_t indices[], int count, |
| 554 | const float transforms[], PathTransformType transformsType, |
| 555 | SkPath::FillType fill) { |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 556 | SkASSERT(this->caps()->pathRenderingSupport()); |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 557 | SkASSERT(NULL != pathRange); |
| 558 | SkASSERT(NULL != indices); |
| 559 | SkASSERT(NULL != transforms); |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 560 | |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 561 | // Don't compute a bounding box for setupDstReadIfNecessary(), we'll opt |
| 562 | // instead for it to just copy the entire dst. Realistically this is a moot |
| 563 | // point, because any context that supports NV_path_rendering will also |
| 564 | // support NV_blend_equation_advanced. |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 565 | GrDeviceCoordTexture dstCopy; |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 566 | if (!this->setupDstReadIfNecessary(&dstCopy, NULL)) { |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 567 | return; |
| 568 | } |
| 569 | |
cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 570 | this->onDrawPaths(pathRange, indices, count, transforms, transformsType, fill, |
commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 571 | dstCopy.texture() ? &dstCopy : NULL); |
| 572 | } |
| 573 | |
egdaniel | 3eee383 | 2014-06-18 13:09:11 -0700 | [diff] [blame] | 574 | typedef GrTraceMarkerSet::Iter TMIter; |
| 575 | void GrDrawTarget::saveActiveTraceMarkers() { |
| 576 | if (this->caps()->gpuTracingSupport()) { |
| 577 | SkASSERT(0 == fStoredTraceMarkers.count()); |
| 578 | fStoredTraceMarkers.addSet(fActiveTraceMarkers); |
| 579 | for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) { |
| 580 | this->removeGpuTraceMarker(&(*iter)); |
| 581 | } |
| 582 | } |
| 583 | } |
| 584 | |
| 585 | void GrDrawTarget::restoreActiveTraceMarkers() { |
| 586 | if (this->caps()->gpuTracingSupport()) { |
| 587 | SkASSERT(0 == fActiveTraceMarkers.count()); |
| 588 | for (TMIter iter = fStoredTraceMarkers.begin(); iter != fStoredTraceMarkers.end(); ++iter) { |
| 589 | this->addGpuTraceMarker(&(*iter)); |
| 590 | } |
| 591 | for (TMIter iter = fActiveTraceMarkers.begin(); iter != fActiveTraceMarkers.end(); ++iter) { |
| 592 | this->fStoredTraceMarkers.remove(*iter); |
| 593 | } |
| 594 | } |
| 595 | } |
| 596 | |
| 597 | void GrDrawTarget::addGpuTraceMarker(const GrGpuTraceMarker* marker) { |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 598 | if (this->caps()->gpuTracingSupport()) { |
commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 599 | SkASSERT(fGpuTraceMarkerCount >= 0); |
| 600 | this->fActiveTraceMarkers.add(*marker); |
| 601 | this->didAddGpuTraceMarker(); |
| 602 | ++fGpuTraceMarkerCount; |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 603 | } |
| 604 | } |
| 605 | |
egdaniel | 3eee383 | 2014-06-18 13:09:11 -0700 | [diff] [blame] | 606 | void GrDrawTarget::removeGpuTraceMarker(const GrGpuTraceMarker* marker) { |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 607 | if (this->caps()->gpuTracingSupport()) { |
commit-bot@chromium.org | 2a05de0 | 2014-03-25 15:17:32 +0000 | [diff] [blame] | 608 | SkASSERT(fGpuTraceMarkerCount >= 1); |
| 609 | this->fActiveTraceMarkers.remove(*marker); |
| 610 | this->didRemoveGpuTraceMarker(); |
| 611 | --fGpuTraceMarkerCount; |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 612 | } |
| 613 | } |
| 614 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 615 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 616 | |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 617 | void GrDrawTarget::drawIndexedInstances(GrPrimitiveType type, |
| 618 | int instanceCount, |
| 619 | int verticesPerInstance, |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 620 | int indicesPerInstance, |
| 621 | const SkRect* devBounds) { |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 622 | if (!verticesPerInstance || !indicesPerInstance) { |
| 623 | return; |
| 624 | } |
| 625 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 626 | int maxInstancesPerDraw = this->indexCountInCurrentSource() / indicesPerInstance; |
| 627 | if (!maxInstancesPerDraw) { |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 628 | return; |
| 629 | } |
| 630 | |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 631 | DrawInfo info; |
| 632 | info.fPrimitiveType = type; |
| 633 | info.fStartIndex = 0; |
| 634 | info.fStartVertex = 0; |
| 635 | info.fIndicesPerInstance = indicesPerInstance; |
| 636 | info.fVerticesPerInstance = verticesPerInstance; |
| 637 | |
| 638 | // Set the same bounds for all the draws. |
| 639 | if (NULL != devBounds) { |
| 640 | info.setDevBounds(*devBounds); |
| 641 | } |
bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 642 | // TODO: We should continue with incorrect blending. |
| 643 | if (!this->setupDstReadIfNecessary(&info)) { |
| 644 | return; |
| 645 | } |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 646 | |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 647 | while (instanceCount) { |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 648 | info.fInstanceCount = SkTMin(instanceCount, maxInstancesPerDraw); |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 649 | info.fVertexCount = info.fInstanceCount * verticesPerInstance; |
| 650 | info.fIndexCount = info.fInstanceCount * indicesPerInstance; |
| 651 | |
| 652 | if (this->checkDraw(type, |
| 653 | info.fStartVertex, |
| 654 | info.fStartIndex, |
| 655 | info.fVertexCount, |
| 656 | info.fIndexCount)) { |
| 657 | this->onDraw(info); |
| 658 | } |
| 659 | info.fStartVertex += info.fVertexCount; |
| 660 | instanceCount -= info.fInstanceCount; |
bsalomon@google.com | 934c570 | 2012-03-20 21:17:58 +0000 | [diff] [blame] | 661 | } |
| 662 | } |
bsalomon@google.com | 3d0835b | 2011-12-08 16:12:03 +0000 | [diff] [blame] | 663 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 664 | //////////////////////////////////////////////////////////////////////////////// |
| 665 | |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 666 | namespace { |
| 667 | |
| 668 | // position + (optional) texture coord |
| 669 | extern const GrVertexAttrib gBWRectPosUVAttribs[] = { |
| 670 | {kVec2f_GrVertexAttribType, 0, kPosition_GrVertexAttribBinding}, |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 671 | {kVec2f_GrVertexAttribType, sizeof(SkPoint), kLocalCoord_GrVertexAttribBinding} |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 672 | }; |
| 673 | |
| 674 | void set_vertex_attributes(GrDrawState* drawState, bool hasUVs) { |
| 675 | if (hasUVs) { |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 676 | drawState->setVertexAttribs<gBWRectPosUVAttribs>(2, 2 * sizeof(SkPoint)); |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 677 | } else { |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 678 | drawState->setVertexAttribs<gBWRectPosUVAttribs>(1, sizeof(SkPoint)); |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 679 | } |
| 680 | } |
| 681 | |
| 682 | }; |
| 683 | |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 684 | void GrDrawTarget::onDrawRect(const SkRect& rect, |
commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 685 | const SkRect* localRect, |
bsalomon@google.com | 0406b9e | 2013-04-02 21:00:15 +0000 | [diff] [blame] | 686 | const SkMatrix* localMatrix) { |
bsalomon@google.com | d62e88e | 2013-02-01 14:19:27 +0000 | [diff] [blame] | 687 | |
robertphillips@google.com | 4290330 | 2013-04-20 12:26:07 +0000 | [diff] [blame] | 688 | set_vertex_attributes(this->drawState(), NULL != localRect); |
| 689 | |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 690 | AutoReleaseGeometry geo(this, 4, 0); |
bsalomon@google.com | 6513cd0 | 2011-08-05 20:12:30 +0000 | [diff] [blame] | 691 | if (!geo.succeeded()) { |
| 692 | GrPrintf("Failed to get space for vertices!\n"); |
| 693 | return; |
| 694 | } |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 695 | |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 696 | size_t vstride = this->drawState()->getVertexStride(); |
| 697 | geo.positions()->setRectFan(rect.fLeft, rect.fTop, rect.fRight, rect.fBottom, vstride); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 698 | if (NULL != localRect) { |
commit-bot@chromium.org | 972f9cd | 2014-03-28 17:58:28 +0000 | [diff] [blame] | 699 | SkPoint* coords = GrTCast<SkPoint*>(GrTCast<intptr_t>(geo.vertices()) + |
| 700 | sizeof(SkPoint)); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 701 | coords->setRectFan(localRect->fLeft, localRect->fTop, |
| 702 | localRect->fRight, localRect->fBottom, |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 703 | vstride); |
bsalomon@google.com | c781888 | 2013-03-20 19:19:53 +0000 | [diff] [blame] | 704 | if (NULL != localMatrix) { |
egdaniel | 7b3d5ee | 2014-08-28 05:41:14 -0700 | [diff] [blame] | 705 | localMatrix->mapPointsWithStride(coords, vstride, 4); |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 706 | } |
| 707 | } |
commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 708 | SkRect bounds; |
| 709 | this->getDrawState().getViewMatrix().mapRect(&bounds, rect); |
robertphillips@google.com | 8b129aa | 2012-10-05 15:37:00 +0000 | [diff] [blame] | 710 | |
commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 711 | this->drawNonIndexed(kTriangleFan_GrPrimitiveType, 0, 4, &bounds); |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 712 | } |
| 713 | |
bsalomon@google.com | 02ddc8b | 2013-01-28 15:35:28 +0000 | [diff] [blame] | 714 | void GrDrawTarget::clipWillBeSet(const GrClipData* clipData) { |
| 715 | } |
| 716 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 717 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 718 | |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 719 | GrDrawTarget::AutoStateRestore::AutoStateRestore() { |
| 720 | fDrawTarget = NULL; |
| 721 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 722 | |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 723 | GrDrawTarget::AutoStateRestore::AutoStateRestore(GrDrawTarget* target, |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 724 | ASRInit init, |
| 725 | const SkMatrix* vm) { |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 726 | fDrawTarget = NULL; |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 727 | this->set(target, init, vm); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 728 | } |
| 729 | |
| 730 | GrDrawTarget::AutoStateRestore::~AutoStateRestore() { |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 731 | if (NULL != fDrawTarget) { |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 732 | fDrawTarget->setDrawState(fSavedState); |
| 733 | fSavedState->unref(); |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 734 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 735 | } |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 736 | |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 737 | void GrDrawTarget::AutoStateRestore::set(GrDrawTarget* target, ASRInit init, const SkMatrix* vm) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 738 | SkASSERT(NULL == fDrawTarget); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 739 | fDrawTarget = target; |
| 740 | fSavedState = target->drawState(); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 741 | SkASSERT(fSavedState); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 742 | fSavedState->ref(); |
| 743 | if (kReset_ASRInit == init) { |
| 744 | if (NULL == vm) { |
| 745 | // calls the default cons |
| 746 | fTempState.init(); |
| 747 | } else { |
| 748 | SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*vm)); |
| 749 | } |
| 750 | } else { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 751 | SkASSERT(kPreserve_ASRInit == init); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 752 | if (NULL == vm) { |
| 753 | fTempState.set(*fSavedState); |
| 754 | } else { |
| 755 | SkNEW_IN_TLAZY(&fTempState, GrDrawState, (*fSavedState, *vm)); |
| 756 | } |
| 757 | } |
| 758 | target->setDrawState(fTempState.get()); |
| 759 | } |
| 760 | |
| 761 | bool GrDrawTarget::AutoStateRestore::setIdentity(GrDrawTarget* target, ASRInit init) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 762 | SkASSERT(NULL == fDrawTarget); |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 763 | fDrawTarget = target; |
| 764 | fSavedState = target->drawState(); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 765 | SkASSERT(fSavedState); |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 766 | fSavedState->ref(); |
| 767 | if (kReset_ASRInit == init) { |
| 768 | // calls the default cons |
| 769 | fTempState.init(); |
| 770 | } else { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 771 | SkASSERT(kPreserve_ASRInit == init); |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 772 | // calls the copy cons |
| 773 | fTempState.set(*fSavedState); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 774 | if (!fTempState.get()->setIdentityViewMatrix()) { |
| 775 | // let go of any resources held by the temp |
| 776 | fTempState.get()->reset(); |
| 777 | fDrawTarget = NULL; |
| 778 | fSavedState->unref(); |
| 779 | fSavedState = NULL; |
| 780 | return false; |
| 781 | } |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 782 | } |
bsalomon@google.com | 873ea0c | 2012-03-30 15:55:32 +0000 | [diff] [blame] | 783 | target->setDrawState(fTempState.get()); |
bsalomon@google.com | 137f134 | 2013-05-29 21:27:53 +0000 | [diff] [blame] | 784 | return true; |
bsalomon@google.com | 06afe7b | 2011-04-26 15:31:40 +0000 | [diff] [blame] | 785 | } |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 786 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 787 | //////////////////////////////////////////////////////////////////////////////// |
bsalomon@google.com | 7ac249b | 2011-06-14 18:46:24 +0000 | [diff] [blame] | 788 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 789 | GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry( |
| 790 | GrDrawTarget* target, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 791 | int vertexCount, |
| 792 | int indexCount) { |
| 793 | fTarget = NULL; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 794 | this->set(target, vertexCount, indexCount); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 795 | } |
rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 796 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 797 | GrDrawTarget::AutoReleaseGeometry::AutoReleaseGeometry() { |
| 798 | fTarget = NULL; |
| 799 | } |
| 800 | |
| 801 | GrDrawTarget::AutoReleaseGeometry::~AutoReleaseGeometry() { |
| 802 | this->reset(); |
| 803 | } |
| 804 | |
| 805 | bool GrDrawTarget::AutoReleaseGeometry::set(GrDrawTarget* target, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 806 | int vertexCount, |
| 807 | int indexCount) { |
| 808 | this->reset(); |
| 809 | fTarget = target; |
| 810 | bool success = true; |
| 811 | if (NULL != fTarget) { |
| 812 | fTarget = target; |
jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 813 | success = target->reserveVertexAndIndexSpace(vertexCount, |
bsalomon@google.com | e3d7095 | 2012-03-13 12:40:53 +0000 | [diff] [blame] | 814 | indexCount, |
| 815 | &fVertices, |
| 816 | &fIndices); |
| 817 | if (!success) { |
| 818 | fTarget = NULL; |
| 819 | this->reset(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 820 | } |
| 821 | } |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 822 | SkASSERT(success == (NULL != fTarget)); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 823 | return success; |
| 824 | } |
| 825 | |
| 826 | void GrDrawTarget::AutoReleaseGeometry::reset() { |
| 827 | if (NULL != fTarget) { |
| 828 | if (NULL != fVertices) { |
| 829 | fTarget->resetVertexSource(); |
| 830 | } |
| 831 | if (NULL != fIndices) { |
| 832 | fTarget->resetIndexSource(); |
| 833 | } |
| 834 | fTarget = NULL; |
| 835 | } |
bsalomon@google.com | cb0c5ab | 2011-06-29 17:48:17 +0000 | [diff] [blame] | 836 | fVertices = NULL; |
| 837 | fIndices = NULL; |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 838 | } |
| 839 | |
bsalomon@google.com | 8d67c07 | 2012-12-13 20:38:14 +0000 | [diff] [blame] | 840 | GrDrawTarget::AutoClipRestore::AutoClipRestore(GrDrawTarget* target, const SkIRect& newClip) { |
| 841 | fTarget = target; |
| 842 | fClip = fTarget->getClip(); |
| 843 | fStack.init(); |
| 844 | fStack.get()->clipDevRect(newClip, SkRegion::kReplace_Op); |
| 845 | fReplacementClip.fClipStack = fStack.get(); |
| 846 | target->setClip(&fReplacementClip); |
| 847 | } |
| 848 | |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 849 | namespace { |
| 850 | // returns true if the read/written rect intersects the src/dst and false if not. |
| 851 | bool clip_srcrect_and_dstpoint(const GrSurface* dst, |
| 852 | const GrSurface* src, |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 853 | const SkIRect& srcRect, |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 854 | const SkIPoint& dstPoint, |
| 855 | SkIRect* clippedSrcRect, |
| 856 | SkIPoint* clippedDstPoint) { |
| 857 | *clippedSrcRect = srcRect; |
| 858 | *clippedDstPoint = dstPoint; |
skia.committer@gmail.com | a9493a3 | 2013-04-04 07:01:12 +0000 | [diff] [blame] | 859 | |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 860 | // clip the left edge to src and dst bounds, adjusting dstPoint if necessary |
| 861 | if (clippedSrcRect->fLeft < 0) { |
| 862 | clippedDstPoint->fX -= clippedSrcRect->fLeft; |
| 863 | clippedSrcRect->fLeft = 0; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 864 | } |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 865 | if (clippedDstPoint->fX < 0) { |
| 866 | clippedSrcRect->fLeft -= clippedDstPoint->fX; |
| 867 | clippedDstPoint->fX = 0; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 868 | } |
| 869 | |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 870 | // clip the top edge to src and dst bounds, adjusting dstPoint if necessary |
| 871 | if (clippedSrcRect->fTop < 0) { |
| 872 | clippedDstPoint->fY -= clippedSrcRect->fTop; |
| 873 | clippedSrcRect->fTop = 0; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 874 | } |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 875 | if (clippedDstPoint->fY < 0) { |
| 876 | clippedSrcRect->fTop -= clippedDstPoint->fY; |
| 877 | clippedDstPoint->fY = 0; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 878 | } |
skia.committer@gmail.com | a9493a3 | 2013-04-04 07:01:12 +0000 | [diff] [blame] | 879 | |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 880 | // clip the right edge to the src and dst bounds. |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 881 | if (clippedSrcRect->fRight > src->width()) { |
| 882 | clippedSrcRect->fRight = src->width(); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 883 | } |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 884 | if (clippedDstPoint->fX + clippedSrcRect->width() > dst->width()) { |
| 885 | clippedSrcRect->fRight = clippedSrcRect->fLeft + dst->width() - clippedDstPoint->fX; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 886 | } |
| 887 | |
| 888 | // clip the bottom edge to the src and dst bounds. |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 889 | if (clippedSrcRect->fBottom > src->height()) { |
| 890 | clippedSrcRect->fBottom = src->height(); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 891 | } |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 892 | if (clippedDstPoint->fY + clippedSrcRect->height() > dst->height()) { |
| 893 | clippedSrcRect->fBottom = clippedSrcRect->fTop + dst->height() - clippedDstPoint->fY; |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 894 | } |
skia.committer@gmail.com | a9493a3 | 2013-04-04 07:01:12 +0000 | [diff] [blame] | 895 | |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 896 | // The above clipping steps may have inverted the rect if it didn't intersect either the src or |
| 897 | // dst bounds. |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 898 | return !clippedSrcRect->isEmpty(); |
| 899 | } |
| 900 | } |
| 901 | |
| 902 | bool GrDrawTarget::copySurface(GrSurface* dst, |
| 903 | GrSurface* src, |
| 904 | const SkIRect& srcRect, |
| 905 | const SkIPoint& dstPoint) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 906 | SkASSERT(NULL != dst); |
| 907 | SkASSERT(NULL != src); |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 908 | |
| 909 | SkIRect clippedSrcRect; |
| 910 | SkIPoint clippedDstPoint; |
| 911 | // If the rect is outside the src or dst then we've already succeeded. |
| 912 | if (!clip_srcrect_and_dstpoint(dst, |
| 913 | src, |
| 914 | srcRect, |
| 915 | dstPoint, |
| 916 | &clippedSrcRect, |
| 917 | &clippedDstPoint)) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 918 | SkASSERT(this->canCopySurface(dst, src, srcRect, dstPoint)); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 919 | return true; |
| 920 | } |
| 921 | |
| 922 | bool result = this->onCopySurface(dst, src, clippedSrcRect, clippedDstPoint); |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 923 | SkASSERT(result == this->canCopySurface(dst, src, clippedSrcRect, clippedDstPoint)); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 924 | return result; |
| 925 | } |
| 926 | |
| 927 | bool GrDrawTarget::canCopySurface(GrSurface* dst, |
| 928 | GrSurface* src, |
| 929 | const SkIRect& srcRect, |
| 930 | const SkIPoint& dstPoint) { |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 931 | SkASSERT(NULL != dst); |
| 932 | SkASSERT(NULL != src); |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 933 | |
| 934 | SkIRect clippedSrcRect; |
| 935 | SkIPoint clippedDstPoint; |
| 936 | // If the rect is outside the src or dst then we're guaranteed success |
| 937 | if (!clip_srcrect_and_dstpoint(dst, |
| 938 | src, |
| 939 | srcRect, |
| 940 | dstPoint, |
| 941 | &clippedSrcRect, |
| 942 | &clippedDstPoint)) { |
| 943 | return true; |
| 944 | } |
| 945 | return this->onCanCopySurface(dst, src, clippedSrcRect, clippedDstPoint); |
| 946 | } |
| 947 | |
| 948 | bool GrDrawTarget::onCanCopySurface(GrSurface* dst, |
| 949 | GrSurface* src, |
| 950 | const SkIRect& srcRect, |
| 951 | const SkIPoint& dstPoint) { |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 952 | // Check that the read/write rects are contained within the src/dst bounds. |
tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 953 | SkASSERT(!srcRect.isEmpty()); |
| 954 | SkASSERT(SkIRect::MakeWH(src->width(), src->height()).contains(srcRect)); |
| 955 | SkASSERT(dstPoint.fX >= 0 && dstPoint.fY >= 0); |
| 956 | SkASSERT(dstPoint.fX + srcRect.width() <= dst->width() && |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 957 | dstPoint.fY + srcRect.height() <= dst->height()); |
| 958 | |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 959 | return !dst->isSameAs(src) && NULL != dst->asRenderTarget() && NULL != src->asTexture(); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 960 | } |
| 961 | |
| 962 | bool GrDrawTarget::onCopySurface(GrSurface* dst, |
| 963 | GrSurface* src, |
| 964 | const SkIRect& srcRect, |
| 965 | const SkIPoint& dstPoint) { |
bsalomon@google.com | 116ad84 | 2013-04-09 15:38:19 +0000 | [diff] [blame] | 966 | if (!GrDrawTarget::onCanCopySurface(dst, src, srcRect, dstPoint)) { |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 967 | return false; |
| 968 | } |
| 969 | |
| 970 | GrRenderTarget* rt = dst->asRenderTarget(); |
| 971 | GrTexture* tex = src->asTexture(); |
| 972 | |
| 973 | GrDrawTarget::AutoStateRestore asr(this, kReset_ASRInit); |
| 974 | this->drawState()->setRenderTarget(rt); |
| 975 | SkMatrix matrix; |
| 976 | matrix.setTranslate(SkIntToScalar(srcRect.fLeft - dstPoint.fX), |
| 977 | SkIntToScalar(srcRect.fTop - dstPoint.fY)); |
| 978 | matrix.postIDiv(tex->width(), tex->height()); |
bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 979 | this->drawState()->addColorTextureEffect(tex, matrix); |
bsalomon@google.com | e4617bf | 2013-04-03 14:56:40 +0000 | [diff] [blame] | 980 | SkIRect dstRect = SkIRect::MakeXYWH(dstPoint.fX, |
| 981 | dstPoint.fY, |
| 982 | srcRect.width(), |
| 983 | srcRect.height()); |
| 984 | this->drawSimpleRect(dstRect); |
| 985 | return true; |
| 986 | } |
| 987 | |
bsalomon@google.com | eb85117 | 2013-04-15 13:51:00 +0000 | [diff] [blame] | 988 | void GrDrawTarget::initCopySurfaceDstDesc(const GrSurface* src, GrTextureDesc* desc) { |
| 989 | // Make the dst of the copy be a render target because the default copySurface draws to the dst. |
| 990 | desc->fOrigin = kDefault_GrSurfaceOrigin; |
| 991 | desc->fFlags = kRenderTarget_GrTextureFlagBit | kNoStencil_GrTextureFlagBit; |
| 992 | desc->fConfig = src->config(); |
| 993 | } |
| 994 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 995 | /////////////////////////////////////////////////////////////////////////////// |
| 996 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 997 | void GrDrawTargetCaps::reset() { |
commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 998 | fMipMapSupport = false; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 999 | fNPOTTextureTileSupport = false; |
| 1000 | fTwoSidedStencilSupport = false; |
| 1001 | fStencilWrapOpsSupport = false; |
| 1002 | fHWAALineSupport = false; |
| 1003 | fShaderDerivativeSupport = false; |
| 1004 | fGeometryShaderSupport = false; |
skia.committer@gmail.com | e60ed08 | 2013-03-26 07:01:04 +0000 | [diff] [blame] | 1005 | fDualSourceBlendingSupport = false; |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 1006 | fPathRenderingSupport = false; |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 1007 | fDstReadInShaderSupport = false; |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1008 | fDiscardRenderTargetSupport = false; |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 1009 | fReuseScratchTextures = true; |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 1010 | fGpuTracingSupport = false; |
krajcevski | 78697816 | 2014-07-30 11:25:44 -0700 | [diff] [blame] | 1011 | fCompressedTexSubImageSupport = false; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1012 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1013 | fMapBufferFlags = kNone_MapFlags; |
| 1014 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1015 | fMaxRenderTargetSize = 0; |
| 1016 | fMaxTextureSize = 0; |
| 1017 | fMaxSampleCount = 0; |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1018 | |
| 1019 | memset(fConfigRenderSupport, 0, sizeof(fConfigRenderSupport)); |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1020 | memset(fConfigTextureSupport, 0, sizeof(fConfigTextureSupport)); |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1021 | } |
| 1022 | |
bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 1023 | GrDrawTargetCaps& GrDrawTargetCaps::operator=(const GrDrawTargetCaps& other) { |
commit-bot@chromium.org | 4744231 | 2013-12-19 16:18:01 +0000 | [diff] [blame] | 1024 | fMipMapSupport = other.fMipMapSupport; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1025 | fNPOTTextureTileSupport = other.fNPOTTextureTileSupport; |
| 1026 | fTwoSidedStencilSupport = other.fTwoSidedStencilSupport; |
| 1027 | fStencilWrapOpsSupport = other.fStencilWrapOpsSupport; |
| 1028 | fHWAALineSupport = other.fHWAALineSupport; |
| 1029 | fShaderDerivativeSupport = other.fShaderDerivativeSupport; |
| 1030 | fGeometryShaderSupport = other.fGeometryShaderSupport; |
| 1031 | fDualSourceBlendingSupport = other.fDualSourceBlendingSupport; |
commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 1032 | fPathRenderingSupport = other.fPathRenderingSupport; |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 1033 | fDstReadInShaderSupport = other.fDstReadInShaderSupport; |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1034 | fDiscardRenderTargetSupport = other.fDiscardRenderTargetSupport; |
commit-bot@chromium.org | b835652 | 2013-07-18 22:26:39 +0000 | [diff] [blame] | 1035 | fReuseScratchTextures = other.fReuseScratchTextures; |
commit-bot@chromium.org | a3baf3b | 2014-02-21 18:45:30 +0000 | [diff] [blame] | 1036 | fGpuTracingSupport = other.fGpuTracingSupport; |
krajcevski | 78697816 | 2014-07-30 11:25:44 -0700 | [diff] [blame] | 1037 | fCompressedTexSubImageSupport = other.fCompressedTexSubImageSupport; |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1038 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1039 | fMapBufferFlags = other.fMapBufferFlags; |
| 1040 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1041 | fMaxRenderTargetSize = other.fMaxRenderTargetSize; |
| 1042 | fMaxTextureSize = other.fMaxTextureSize; |
| 1043 | fMaxSampleCount = other.fMaxSampleCount; |
| 1044 | |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1045 | memcpy(fConfigRenderSupport, other.fConfigRenderSupport, sizeof(fConfigRenderSupport)); |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1046 | memcpy(fConfigTextureSupport, other.fConfigTextureSupport, sizeof(fConfigTextureSupport)); |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1047 | |
bsalomon@google.com | bcce892 | 2013-03-25 15:38:39 +0000 | [diff] [blame] | 1048 | return *this; |
| 1049 | } |
| 1050 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1051 | static SkString map_flags_to_string(uint32_t flags) { |
| 1052 | SkString str; |
| 1053 | if (GrDrawTargetCaps::kNone_MapFlags == flags) { |
| 1054 | str = "none"; |
| 1055 | } else { |
| 1056 | SkASSERT(GrDrawTargetCaps::kCanMap_MapFlag & flags); |
| 1057 | SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kCanMap_MapFlag); |
| 1058 | str = "can_map"; |
| 1059 | |
| 1060 | if (GrDrawTargetCaps::kSubset_MapFlag & flags) { |
| 1061 | str.append(" partial"); |
| 1062 | } else { |
| 1063 | str.append(" full"); |
| 1064 | } |
| 1065 | SkDEBUGCODE(flags &= ~GrDrawTargetCaps::kSubset_MapFlag); |
| 1066 | } |
| 1067 | SkASSERT(0 == flags); // Make sure we handled all the flags. |
| 1068 | return str; |
| 1069 | } |
| 1070 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1071 | SkString GrDrawTargetCaps::dump() const { |
| 1072 | SkString r; |
bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 1073 | static const char* gNY[] = {"NO", "YES"}; |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1074 | r.appendf("MIP Map Support : %s\n", gNY[fMipMapSupport]); |
| 1075 | r.appendf("NPOT Texture Tile Support : %s\n", gNY[fNPOTTextureTileSupport]); |
| 1076 | r.appendf("Two Sided Stencil Support : %s\n", gNY[fTwoSidedStencilSupport]); |
| 1077 | r.appendf("Stencil Wrap Ops Support : %s\n", gNY[fStencilWrapOpsSupport]); |
| 1078 | r.appendf("HW AA Lines Support : %s\n", gNY[fHWAALineSupport]); |
| 1079 | r.appendf("Shader Derivative Support : %s\n", gNY[fShaderDerivativeSupport]); |
| 1080 | r.appendf("Geometry Shader Support : %s\n", gNY[fGeometryShaderSupport]); |
| 1081 | r.appendf("Dual Source Blending Support : %s\n", gNY[fDualSourceBlendingSupport]); |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1082 | r.appendf("Path Rendering Support : %s\n", gNY[fPathRenderingSupport]); |
| 1083 | r.appendf("Dst Read In Shader Support : %s\n", gNY[fDstReadInShaderSupport]); |
| 1084 | r.appendf("Discard Render Target Support: %s\n", gNY[fDiscardRenderTargetSupport]); |
| 1085 | r.appendf("Reuse Scratch Textures : %s\n", gNY[fReuseScratchTextures]); |
| 1086 | r.appendf("Gpu Tracing Support : %s\n", gNY[fGpuTracingSupport]); |
krajcevski | 78697816 | 2014-07-30 11:25:44 -0700 | [diff] [blame] | 1087 | r.appendf("Compressed Update Support : %s\n", gNY[fCompressedTexSubImageSupport]); |
commit-bot@chromium.org | 28361fa | 2014-03-28 16:08:05 +0000 | [diff] [blame] | 1088 | r.appendf("Max Texture Size : %d\n", fMaxTextureSize); |
| 1089 | r.appendf("Max Render Target Size : %d\n", fMaxRenderTargetSize); |
| 1090 | r.appendf("Max Sample Count : %d\n", fMaxSampleCount); |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1091 | |
commit-bot@chromium.org | 160b478 | 2014-05-05 12:32:37 +0000 | [diff] [blame] | 1092 | r.appendf("Map Buffer Support : %s\n", map_flags_to_string(fMapBufferFlags).c_str()); |
| 1093 | |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1094 | static const char* kConfigNames[] = { |
| 1095 | "Unknown", // kUnknown_GrPixelConfig |
| 1096 | "Alpha8", // kAlpha_8_GrPixelConfig, |
| 1097 | "Index8", // kIndex_8_GrPixelConfig, |
| 1098 | "RGB565", // kRGB_565_GrPixelConfig, |
| 1099 | "RGBA444", // kRGBA_4444_GrPixelConfig, |
| 1100 | "RGBA8888", // kRGBA_8888_GrPixelConfig, |
| 1101 | "BGRA8888", // kBGRA_8888_GrPixelConfig, |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1102 | "ETC1", // kETC1_GrPixelConfig, |
| 1103 | "LATC", // kLATC_GrPixelConfig, |
krajcevski | 238b456 | 2014-06-30 09:09:22 -0700 | [diff] [blame] | 1104 | "R11EAC", // kR11_EAC_GrPixelConfig, |
krajcevski | 7ef2162 | 2014-07-16 15:21:13 -0700 | [diff] [blame] | 1105 | "ASTC12x12",// kASTC_12x12_GrPixelConfig, |
joshualitt | ee5da55 | 2014-07-16 13:32:56 -0700 | [diff] [blame] | 1106 | "RGBAFloat", // kRGBA_float_GrPixelConfig |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1107 | }; |
krajcevski | 7ef2162 | 2014-07-16 15:21:13 -0700 | [diff] [blame] | 1108 | GR_STATIC_ASSERT(0 == kUnknown_GrPixelConfig); |
| 1109 | GR_STATIC_ASSERT(1 == kAlpha_8_GrPixelConfig); |
| 1110 | GR_STATIC_ASSERT(2 == kIndex_8_GrPixelConfig); |
| 1111 | GR_STATIC_ASSERT(3 == kRGB_565_GrPixelConfig); |
| 1112 | GR_STATIC_ASSERT(4 == kRGBA_4444_GrPixelConfig); |
| 1113 | GR_STATIC_ASSERT(5 == kRGBA_8888_GrPixelConfig); |
| 1114 | GR_STATIC_ASSERT(6 == kBGRA_8888_GrPixelConfig); |
| 1115 | GR_STATIC_ASSERT(7 == kETC1_GrPixelConfig); |
| 1116 | GR_STATIC_ASSERT(8 == kLATC_GrPixelConfig); |
| 1117 | GR_STATIC_ASSERT(9 == kR11_EAC_GrPixelConfig); |
| 1118 | GR_STATIC_ASSERT(10 == kASTC_12x12_GrPixelConfig); |
| 1119 | GR_STATIC_ASSERT(11 == kRGBA_float_GrPixelConfig); |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1120 | GR_STATIC_ASSERT(SK_ARRAY_COUNT(kConfigNames) == kGrPixelConfigCnt); |
| 1121 | |
commit-bot@chromium.org | 9901727 | 2013-11-08 18:45:27 +0000 | [diff] [blame] | 1122 | SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][0]); |
| 1123 | SkASSERT(!fConfigRenderSupport[kUnknown_GrPixelConfig][1]); |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1124 | |
| 1125 | for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) { |
| 1126 | r.appendf("%s is renderable: %s, with MSAA: %s\n", |
| 1127 | kConfigNames[i], |
| 1128 | gNY[fConfigRenderSupport[i][0]], |
| 1129 | gNY[fConfigRenderSupport[i][1]]); |
commit-bot@chromium.org | 7388051 | 2013-10-14 15:33:45 +0000 | [diff] [blame] | 1130 | } |
commit-bot@chromium.org | 42dc813 | 2014-05-27 19:26:59 +0000 | [diff] [blame] | 1131 | |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1132 | SkASSERT(!fConfigTextureSupport[kUnknown_GrPixelConfig]); |
commit-bot@chromium.org | 42dc813 | 2014-05-27 19:26:59 +0000 | [diff] [blame] | 1133 | |
commit-bot@chromium.org | 6e7ddaa | 2014-05-30 13:55:58 +0000 | [diff] [blame] | 1134 | for (size_t i = 1; i < SK_ARRAY_COUNT(kConfigNames); ++i) { |
| 1135 | r.appendf("%s is uploadable to a texture: %s\n", |
| 1136 | kConfigNames[i], |
| 1137 | gNY[fConfigTextureSupport[i]]); |
commit-bot@chromium.org | 42dc813 | 2014-05-27 19:26:59 +0000 | [diff] [blame] | 1138 | } |
| 1139 | |
commit-bot@chromium.org | 8b656c6 | 2013-11-21 15:23:15 +0000 | [diff] [blame] | 1140 | return r; |
bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 1141 | } |