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