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