| 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 | |
| epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 10 | #include "GrGpu.h" |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 11 | |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 12 | #include "GrBufferAllocPool.h" |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 13 | #include "GrContext.h" |
| bsalomon@google.com | c26d94f | 2013-03-25 18:19:00 +0000 | [diff] [blame] | 14 | #include "GrDrawTargetCaps.h" |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 15 | #include "GrIndexBuffer.h" |
| tomhudson@google.com | dd182cb | 2012-02-10 21:01:00 +0000 | [diff] [blame] | 16 | #include "GrStencilBuffer.h" |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 17 | #include "GrVertexBuffer.h" |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 18 | |
| 19 | // probably makes no sense for this to be less than a page |
| bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 20 | static const size_t VERTEX_POOL_VB_SIZE = 1 << 18; |
| 21 | static const int VERTEX_POOL_VB_COUNT = 4; |
| bsalomon@google.com | 25fd36c | 2011-07-06 17:41:08 +0000 | [diff] [blame] | 22 | static const size_t INDEX_POOL_IB_SIZE = 1 << 16; |
| 23 | static const int INDEX_POOL_IB_COUNT = 4; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 24 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 25 | //////////////////////////////////////////////////////////////////////////////// |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 26 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 27 | #define DEBUG_INVAL_BUFFER 0xdeadcafe |
| 28 | #define DEBUG_INVAL_START_IDX -1 |
| 29 | |
| bsalomon@google.com | 6e4e650 | 2013-02-25 20:12:45 +0000 | [diff] [blame] | 30 | GrGpu::GrGpu(GrContext* context) |
| 31 | : GrDrawTarget(context) |
| bsalomon@google.com | 979432b | 2011-11-05 21:38:22 +0000 | [diff] [blame] | 32 | , fResetTimestamp(kExpiredTimestamp+1) |
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 33 | , fResetBits(kAll_GrBackendState) |
| bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 34 | , fVertexPool(NULL) |
| 35 | , fIndexPool(NULL) |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 36 | , fVertexPoolUseCnt(0) |
| 37 | , fIndexPoolUseCnt(0) |
| bsalomon@google.com | 0a208a1 | 2013-06-28 18:57:35 +0000 | [diff] [blame] | 38 | , fQuadIndexBuffer(NULL) { |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 39 | |
| robertphillips@google.com | 5d8d186 | 2012-08-15 14:36:41 +0000 | [diff] [blame] | 40 | fClipMaskManager.setGpu(this); |
| 41 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 42 | fGeomPoolStateStack.push_back(); |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 43 | #ifdef SK_DEBUG |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 44 | GeometryPoolState& poolState = fGeomPoolStateStack.back(); |
| 45 | poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 46 | poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX; |
| 47 | poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 48 | poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX; |
| 49 | #endif |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| bsalomon | 1d89ddc | 2014-08-19 14:20:58 -0700 | [diff] [blame^] | 52 | GrGpu::~GrGpu() { |
| 53 | this->releaseResources(); |
| 54 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 55 | |
| bsalomon | 1d89ddc | 2014-08-19 14:20:58 -0700 | [diff] [blame^] | 56 | void GrGpu::abandonResources() { |
| 57 | |
| 58 | fClipMaskManager.releaseResources(); |
| 59 | |
| 60 | while (NULL != fObjectList.head()) { |
| 61 | fObjectList.head()->abandon(); |
| 62 | } |
| 63 | |
| 64 | SkASSERT(NULL == fQuadIndexBuffer || fQuadIndexBuffer->wasDestroyed()); |
| 65 | SkSafeSetNull(fQuadIndexBuffer); |
| 66 | delete fVertexPool; |
| 67 | fVertexPool = NULL; |
| 68 | delete fIndexPool; |
| 69 | fIndexPool = NULL; |
| 70 | } |
| 71 | |
| 72 | void GrGpu::releaseResources() { |
| 73 | |
| 74 | fClipMaskManager.releaseResources(); |
| 75 | |
| 76 | while (NULL != fObjectList.head()) { |
| 77 | fObjectList.head()->release(); |
| 78 | } |
| 79 | |
| 80 | SkASSERT(NULL == fQuadIndexBuffer || fQuadIndexBuffer->wasDestroyed()); |
| 81 | SkSafeSetNull(fQuadIndexBuffer); |
| 82 | delete fVertexPool; |
| 83 | fVertexPool = NULL; |
| 84 | delete fIndexPool; |
| 85 | fIndexPool = NULL; |
| 86 | } |
| 87 | |
| 88 | void GrGpu::insertObject(GrGpuResource* object) { |
| 89 | SkASSERT(NULL != object); |
| 90 | SkASSERT(this == object->getGpu()); |
| 91 | |
| 92 | fObjectList.addToHead(object); |
| 93 | } |
| 94 | |
| 95 | void GrGpu::removeObject(GrGpuResource* object) { |
| 96 | SkASSERT(NULL != object); |
| 97 | SkASSERT(this == object->getGpu()); |
| 98 | |
| 99 | fObjectList.remove(object); |
| 100 | } |
| 101 | |
| 102 | |
| 103 | void GrGpu::unimpl(const char msg[]) { |
| 104 | #ifdef SK_DEBUG |
| 105 | GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg); |
| 106 | #endif |
| 107 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 108 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 109 | //////////////////////////////////////////////////////////////////////////////// |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 110 | |
| bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 111 | GrTexture* GrGpu::createTexture(const GrTextureDesc& desc, |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 112 | const void* srcData, size_t rowBytes) { |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 113 | if (!this->caps()->isConfigTexturable(desc.fConfig)) { |
| robertphillips@google.com | d3eb336 | 2012-10-31 13:56:35 +0000 | [diff] [blame] | 114 | return NULL; |
| 115 | } |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 116 | |
| commit-bot@chromium.org | 6b7938f | 2013-10-15 14:18:16 +0000 | [diff] [blame] | 117 | if ((desc.fFlags & kRenderTarget_GrTextureFlagBit) && |
| 118 | !this->caps()->isConfigRenderable(desc.fConfig, desc.fSampleCnt > 0)) { |
| 119 | return NULL; |
| 120 | } |
| robertphillips@google.com | d3eb336 | 2012-10-31 13:56:35 +0000 | [diff] [blame] | 121 | |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 122 | GrTexture *tex = NULL; |
| 123 | if (GrPixelConfigIsCompressed(desc.fConfig)) { |
| 124 | // We shouldn't be rendering into this |
| 125 | SkASSERT((desc.fFlags & kRenderTarget_GrTextureFlagBit) == 0); |
| 126 | |
| 127 | if (!this->caps()->npotTextureTileSupport() && |
| tfarina | f9dae78 | 2014-06-06 06:35:28 -0700 | [diff] [blame] | 128 | (!SkIsPow2(desc.fWidth) || !SkIsPow2(desc.fHeight))) { |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 129 | return NULL; |
| 130 | } |
| tfarina | f9dae78 | 2014-06-06 06:35:28 -0700 | [diff] [blame] | 131 | |
| krajcevski | 9c0e629 | 2014-06-02 07:38:14 -0700 | [diff] [blame] | 132 | this->handleDirtyContext(); |
| 133 | tex = this->onCreateCompressedTexture(desc, srcData); |
| 134 | } else { |
| 135 | this->handleDirtyContext(); |
| 136 | tex = this->onCreateTexture(desc, srcData, rowBytes); |
| 137 | if (NULL != tex && |
| 138 | (kRenderTarget_GrTextureFlagBit & desc.fFlags) && |
| 139 | !(kNoStencil_GrTextureFlagBit & desc.fFlags)) { |
| 140 | SkASSERT(NULL != tex->asRenderTarget()); |
| 141 | // TODO: defer this and attach dynamically |
| 142 | if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { |
| 143 | tex->unref(); |
| 144 | return NULL; |
| 145 | } |
| 146 | } |
| bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 147 | } |
| 148 | return tex; |
| 149 | } |
| 150 | |
| 151 | bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 152 | SkASSERT(NULL == rt->getStencilBuffer()); |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 153 | GrStencilBuffer* sb = |
| robertphillips@google.com | 9fbcad0 | 2012-09-09 14:44:15 +0000 | [diff] [blame] | 154 | this->getContext()->findStencilBuffer(rt->width(), |
| 155 | rt->height(), |
| 156 | rt->numSamples()); |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 157 | if (NULL != sb) { |
| 158 | rt->setStencilBuffer(sb); |
| 159 | bool attached = this->attachStencilBufferToRenderTarget(sb, rt); |
| 160 | if (!attached) { |
| 161 | rt->setStencilBuffer(NULL); |
| 162 | } |
| 163 | return attached; |
| 164 | } |
| bsalomon@google.com | 9962108 | 2011-11-15 16:47:16 +0000 | [diff] [blame] | 165 | if (this->createStencilBufferForRenderTarget(rt, |
| 166 | rt->width(), rt->height())) { |
| bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 167 | // Right now we're clearing the stencil buffer here after it is |
| 168 | // attached to an RT for the first time. When we start matching |
| 169 | // stencil buffers with smaller color targets this will no longer |
| 170 | // be correct because it won't be guaranteed to clear the entire |
| 171 | // sb. |
| 172 | // We used to clear down in the GL subclass using a special purpose |
| 173 | // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported |
| 174 | // FBO status. |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 175 | GrDrawState::AutoRenderTargetRestore artr(this->drawState(), rt); |
| bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 176 | this->clearStencil(); |
| bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 177 | return true; |
| 178 | } else { |
| 179 | return false; |
| bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 180 | } |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 181 | } |
| 182 | |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 183 | GrTexture* GrGpu::wrapBackendTexture(const GrBackendTextureDesc& desc) { |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 184 | this->handleDirtyContext(); |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 185 | GrTexture* tex = this->onWrapBackendTexture(desc); |
| bsalomon@google.com | a14dd6d | 2012-01-03 21:08:12 +0000 | [diff] [blame] | 186 | if (NULL == tex) { |
| 187 | return NULL; |
| 188 | } |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 189 | // TODO: defer this and attach dynamically |
| 190 | GrRenderTarget* tgt = tex->asRenderTarget(); |
| 191 | if (NULL != tgt && |
| 192 | !this->attachStencilBufferToRenderTarget(tgt)) { |
| 193 | tex->unref(); |
| 194 | return NULL; |
| 195 | } else { |
| 196 | return tex; |
| 197 | } |
| 198 | } |
| 199 | |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 200 | GrRenderTarget* GrGpu::wrapBackendRenderTarget(const GrBackendRenderTargetDesc& desc) { |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 201 | this->handleDirtyContext(); |
| bsalomon@google.com | 16e3dde | 2012-10-25 18:43:28 +0000 | [diff] [blame] | 202 | return this->onWrapBackendRenderTarget(desc); |
| bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 203 | } |
| 204 | |
| robertphillips@google.com | adacc70 | 2013-10-14 21:53:24 +0000 | [diff] [blame] | 205 | GrVertexBuffer* GrGpu::createVertexBuffer(size_t size, bool dynamic) { |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 206 | this->handleDirtyContext(); |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 207 | return this->onCreateVertexBuffer(size, dynamic); |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 208 | } |
| 209 | |
| robertphillips@google.com | adacc70 | 2013-10-14 21:53:24 +0000 | [diff] [blame] | 210 | GrIndexBuffer* GrGpu::createIndexBuffer(size_t size, bool dynamic) { |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 211 | this->handleDirtyContext(); |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 212 | return this->onCreateIndexBuffer(size, dynamic); |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 213 | } |
| 214 | |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 215 | GrPath* GrGpu::createPath(const SkPath& path, const SkStrokeRec& stroke) { |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 216 | SkASSERT(this->caps()->pathRenderingSupport()); |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 217 | this->handleDirtyContext(); |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 218 | return this->onCreatePath(path, stroke); |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 219 | } |
| 220 | |
| cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 221 | GrPathRange* GrGpu::createPathRange(size_t size, const SkStrokeRec& stroke) { |
| 222 | SkASSERT(this->caps()->pathRenderingSupport()); |
| 223 | this->handleDirtyContext(); |
| 224 | return this->onCreatePathRange(size, stroke); |
| 225 | } |
| 226 | |
| commit-bot@chromium.org | fd03d4a | 2013-07-17 21:39:42 +0000 | [diff] [blame] | 227 | void GrGpu::clear(const SkIRect* rect, |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 228 | GrColor color, |
| robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 229 | bool canIgnoreRect, |
| robertphillips@google.com | c82a8b7 | 2012-06-21 20:15:48 +0000 | [diff] [blame] | 230 | GrRenderTarget* renderTarget) { |
| bsalomon@google.com | 2e60206 | 2012-09-28 21:40:15 +0000 | [diff] [blame] | 231 | GrDrawState::AutoRenderTargetRestore art; |
| 232 | if (NULL != renderTarget) { |
| 233 | art.set(this->drawState(), renderTarget); |
| robertphillips@google.com | c82a8b7 | 2012-06-21 20:15:48 +0000 | [diff] [blame] | 234 | } |
| bsalomon@google.com | 8f9cbd6 | 2011-12-09 15:55:34 +0000 | [diff] [blame] | 235 | if (NULL == this->getDrawState().getRenderTarget()) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 236 | SkASSERT(0); |
| bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 237 | return; |
| 238 | } |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 239 | this->handleDirtyContext(); |
| robertphillips@google.com | 56ce48a | 2013-10-31 21:44:25 +0000 | [diff] [blame] | 240 | this->onClear(rect, color, canIgnoreRect); |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 241 | } |
| 242 | |
| bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 243 | bool GrGpu::readPixels(GrRenderTarget* target, |
| 244 | int left, int top, int width, int height, |
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 245 | GrPixelConfig config, void* buffer, |
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 246 | size_t rowBytes) { |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 247 | this->handleDirtyContext(); |
| bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 248 | return this->onReadPixels(target, left, top, width, height, |
| senorblanco@chromium.org | 3cb406b | 2013-02-05 19:50:46 +0000 | [diff] [blame] | 249 | config, buffer, rowBytes); |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 250 | } |
| 251 | |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 252 | bool GrGpu::writeTexturePixels(GrTexture* texture, |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 253 | int left, int top, int width, int height, |
| 254 | GrPixelConfig config, const void* buffer, |
| 255 | size_t rowBytes) { |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 256 | this->handleDirtyContext(); |
| bsalomon@google.com | 9c68058 | 2013-02-06 18:17:50 +0000 | [diff] [blame] | 257 | return this->onWriteTexturePixels(texture, left, top, width, height, |
| 258 | config, buffer, rowBytes); |
| bsalomon@google.com | 6f37951 | 2011-11-16 20:36:03 +0000 | [diff] [blame] | 259 | } |
| 260 | |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 261 | void GrGpu::resolveRenderTarget(GrRenderTarget* target) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 262 | SkASSERT(target); |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 263 | this->handleDirtyContext(); |
| 264 | this->onResolveRenderTarget(target); |
| 265 | } |
| 266 | |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 267 | static const GrStencilSettings& winding_path_stencil_settings() { |
| 268 | GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings, |
| 269 | kIncClamp_StencilOp, |
| 270 | kIncClamp_StencilOp, |
| 271 | kAlwaysIfInClip_StencilFunc, |
| 272 | 0xFFFF, 0xFFFF, 0xFFFF); |
| 273 | return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings); |
| 274 | } |
| 275 | |
| 276 | static const GrStencilSettings& even_odd_path_stencil_settings() { |
| 277 | GR_STATIC_CONST_SAME_STENCIL_STRUCT(gSettings, |
| 278 | kInvert_StencilOp, |
| 279 | kInvert_StencilOp, |
| 280 | kAlwaysIfInClip_StencilFunc, |
| 281 | 0xFFFF, 0xFFFF, 0xFFFF); |
| 282 | return *GR_CONST_STENCIL_SETTINGS_PTR_FROM_STRUCT_PTR(&gSettings); |
| 283 | } |
| 284 | |
| 285 | void GrGpu::getPathStencilSettingsForFillType(SkPath::FillType fill, GrStencilSettings* outStencilSettings) { |
| 286 | |
| 287 | switch (fill) { |
| 288 | default: |
| commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 289 | SkFAIL("Unexpected path fill."); |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 290 | /* fallthrough */; |
| 291 | case SkPath::kWinding_FillType: |
| 292 | case SkPath::kInverseWinding_FillType: |
| 293 | *outStencilSettings = winding_path_stencil_settings(); |
| 294 | break; |
| 295 | case SkPath::kEvenOdd_FillType: |
| 296 | case SkPath::kInverseEvenOdd_FillType: |
| 297 | *outStencilSettings = even_odd_path_stencil_settings(); |
| 298 | break; |
| 299 | } |
| 300 | fClipMaskManager.adjustPathStencilParams(outStencilSettings); |
| 301 | } |
| 302 | |
| bsalomon@google.com | 75f9f25 | 2012-01-31 13:35:56 +0000 | [diff] [blame] | 303 | |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 304 | //////////////////////////////////////////////////////////////////////////////// |
| 305 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 306 | static const int MAX_QUADS = 1 << 12; // max possible: (1 << 14) - 1; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 307 | |
| reed@google.com | 8195f67 | 2011-01-12 18:14:28 +0000 | [diff] [blame] | 308 | GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 309 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 310 | static inline void fill_indices(uint16_t* indices, int quadCount) { |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 311 | for (int i = 0; i < quadCount; ++i) { |
| 312 | indices[6 * i + 0] = 4 * i + 0; |
| 313 | indices[6 * i + 1] = 4 * i + 1; |
| 314 | indices[6 * i + 2] = 4 * i + 2; |
| 315 | indices[6 * i + 3] = 4 * i + 0; |
| 316 | indices[6 * i + 4] = 4 * i + 2; |
| 317 | indices[6 * i + 5] = 4 * i + 3; |
| 318 | } |
| 319 | } |
| 320 | |
| bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 321 | const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const { |
| bsalomon | 1d89ddc | 2014-08-19 14:20:58 -0700 | [diff] [blame^] | 322 | if (NULL == fQuadIndexBuffer) { |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 323 | static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS; |
| 324 | GrGpu* me = const_cast<GrGpu*>(this); |
| 325 | fQuadIndexBuffer = me->createIndexBuffer(SIZE, false); |
| 326 | if (NULL != fQuadIndexBuffer) { |
| commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 327 | uint16_t* indices = (uint16_t*)fQuadIndexBuffer->map(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 328 | if (NULL != indices) { |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 329 | fill_indices(indices, MAX_QUADS); |
| commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 330 | fQuadIndexBuffer->unmap(); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 331 | } else { |
| reed@google.com | 939ca7c | 2013-09-26 19:56:51 +0000 | [diff] [blame] | 332 | indices = (uint16_t*)sk_malloc_throw(SIZE); |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 333 | fill_indices(indices, MAX_QUADS); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 334 | if (!fQuadIndexBuffer->updateData(indices, SIZE)) { |
| 335 | fQuadIndexBuffer->unref(); |
| 336 | fQuadIndexBuffer = NULL; |
| commit-bot@chromium.org | 88cb22b | 2014-04-30 14:17:00 +0000 | [diff] [blame] | 337 | SkFAIL("Can't get indices into buffer!"); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 338 | } |
| reed@google.com | 939ca7c | 2013-09-26 19:56:51 +0000 | [diff] [blame] | 339 | sk_free(indices); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 340 | } |
| 341 | } |
| 342 | } |
| 343 | |
| 344 | return fQuadIndexBuffer; |
| 345 | } |
| 346 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 347 | //////////////////////////////////////////////////////////////////////////////// |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 348 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 349 | bool GrGpu::setupClipAndFlushState(DrawType type, const GrDeviceCoordTexture* dstCopy, |
| commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 350 | GrDrawState::AutoRestoreEffects* are, |
| 351 | const SkRect* devBounds) { |
| 352 | if (!fClipMaskManager.setupClipping(this->getClip(), are, devBounds)) { |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 353 | return false; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 354 | } |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 355 | |
| bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 356 | if (!this->flushGraphicsState(type, dstCopy)) { |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 357 | return false; |
| 358 | } |
| robertphillips@google.com | 730ebe5 | 2012-04-16 16:33:13 +0000 | [diff] [blame] | 359 | |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 360 | return true; |
| 361 | } |
| 362 | |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 363 | //////////////////////////////////////////////////////////////////////////////// |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 364 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 365 | void GrGpu::geometrySourceWillPush() { |
| 366 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 367 | if (kArray_GeometrySrcType == geoSrc.fVertexSrc || |
| 368 | kReserved_GeometrySrcType == geoSrc.fVertexSrc) { |
| 369 | this->finalizeReservedVertices(); |
| 370 | } |
| 371 | if (kArray_GeometrySrcType == geoSrc.fIndexSrc || |
| 372 | kReserved_GeometrySrcType == geoSrc.fIndexSrc) { |
| 373 | this->finalizeReservedIndices(); |
| 374 | } |
| 375 | GeometryPoolState& newState = fGeomPoolStateStack.push_back(); |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 376 | #ifdef SK_DEBUG |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 377 | newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 378 | newState.fPoolStartVertex = DEBUG_INVAL_START_IDX; |
| 379 | newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 380 | newState.fPoolStartIndex = DEBUG_INVAL_START_IDX; |
| humper@google.com | 0e51577 | 2013-01-07 19:54:40 +0000 | [diff] [blame] | 381 | #else |
| 382 | (void) newState; // silence compiler warning |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 383 | #endif |
| 384 | } |
| 385 | |
| 386 | void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) { |
| 387 | // if popping last entry then pops are unbalanced with pushes |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 388 | SkASSERT(fGeomPoolStateStack.count() > 1); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 389 | fGeomPoolStateStack.pop_back(); |
| 390 | } |
| 391 | |
| bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 392 | void GrGpu::onDraw(const DrawInfo& info) { |
| bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 393 | this->handleDirtyContext(); |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 394 | GrDrawState::AutoRestoreEffects are; |
| bsalomon@google.com | 26e18b5 | 2013-03-29 19:22:36 +0000 | [diff] [blame] | 395 | if (!this->setupClipAndFlushState(PrimTypeToDrawType(info.primitiveType()), |
| commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 396 | info.getDstCopy(), &are, info.getDevBounds())) { |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 397 | return; |
| 398 | } |
| bsalomon@google.com | 74749cd | 2013-01-30 16:12:41 +0000 | [diff] [blame] | 399 | this->onGpuDraw(info); |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 400 | } |
| 401 | |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 402 | void GrGpu::onStencilPath(const GrPath* path, SkPath::FillType fill) { |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 403 | this->handleDirtyContext(); |
| 404 | |
| bsalomon@google.com | eb6879f | 2013-06-13 19:34:18 +0000 | [diff] [blame] | 405 | GrDrawState::AutoRestoreEffects are; |
| commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 406 | if (!this->setupClipAndFlushState(kStencilPath_DrawType, NULL, &are, NULL)) { |
| bsalomon@google.com | 64aef2b | 2012-06-11 15:36:13 +0000 | [diff] [blame] | 407 | return; |
| 408 | } |
| 409 | |
| 410 | this->onGpuStencilPath(path, fill); |
| 411 | } |
| 412 | |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 413 | |
| 414 | void GrGpu::onDrawPath(const GrPath* path, SkPath::FillType fill, |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 415 | const GrDeviceCoordTexture* dstCopy) { |
| 416 | this->handleDirtyContext(); |
| 417 | |
| 418 | drawState()->setDefaultVertexAttribs(); |
| 419 | |
| 420 | GrDrawState::AutoRestoreEffects are; |
| commit-bot@chromium.org | 3ae0e6c | 2014-02-11 18:24:25 +0000 | [diff] [blame] | 421 | if (!this->setupClipAndFlushState(kDrawPath_DrawType, dstCopy, &are, NULL)) { |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 422 | return; |
| 423 | } |
| 424 | |
| commit-bot@chromium.org | 32184d8 | 2013-10-09 15:14:18 +0000 | [diff] [blame] | 425 | this->onGpuDrawPath(path, fill); |
| commit-bot@chromium.org | c4dc0ad | 2013-10-09 14:11:33 +0000 | [diff] [blame] | 426 | } |
| 427 | |
| cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 428 | void GrGpu::onDrawPaths(const GrPathRange* pathRange, |
| 429 | const uint32_t indices[], int count, |
| 430 | const float transforms[], PathTransformType transformsType, |
| 431 | SkPath::FillType fill, const GrDeviceCoordTexture* dstCopy) { |
| commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 432 | this->handleDirtyContext(); |
| 433 | |
| 434 | drawState()->setDefaultVertexAttribs(); |
| 435 | |
| 436 | GrDrawState::AutoRestoreEffects are; |
| 437 | if (!this->setupClipAndFlushState(kDrawPaths_DrawType, dstCopy, &are, NULL)) { |
| 438 | return; |
| 439 | } |
| 440 | |
| cdalton | b85a0aa | 2014-07-21 15:32:44 -0700 | [diff] [blame] | 441 | this->onGpuDrawPaths(pathRange, indices, count, transforms, transformsType, fill); |
| commit-bot@chromium.org | 9b62aa1 | 2014-03-25 11:59:40 +0000 | [diff] [blame] | 442 | } |
| 443 | |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 444 | void GrGpu::finalizeReservedVertices() { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 445 | SkASSERT(NULL != fVertexPool); |
| commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 446 | fVertexPool->unmap(); |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 447 | } |
| 448 | |
| 449 | void GrGpu::finalizeReservedIndices() { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 450 | SkASSERT(NULL != fIndexPool); |
| commit-bot@chromium.org | 8341eb7 | 2014-05-07 20:51:05 +0000 | [diff] [blame] | 451 | fIndexPool->unmap(); |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | void GrGpu::prepareVertexPool() { |
| 455 | if (NULL == fVertexPool) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 456 | SkASSERT(0 == fVertexPoolUseCnt); |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 457 | fVertexPool = SkNEW_ARGS(GrVertexBufferAllocPool, (this, true, |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 458 | VERTEX_POOL_VB_SIZE, |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 459 | VERTEX_POOL_VB_COUNT)); |
| bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 460 | fVertexPool->releaseGpuRef(); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 461 | } else if (!fVertexPoolUseCnt) { |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 462 | // the client doesn't have valid data in the pool |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 463 | fVertexPool->reset(); |
| 464 | } |
| 465 | } |
| 466 | |
| 467 | void GrGpu::prepareIndexPool() { |
| senorblanco@chromium.org | 9d18b78 | 2011-03-28 20:47:09 +0000 | [diff] [blame] | 468 | if (NULL == fIndexPool) { |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 469 | SkASSERT(0 == fIndexPoolUseCnt); |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 470 | fIndexPool = SkNEW_ARGS(GrIndexBufferAllocPool, (this, true, |
| bsalomon@google.com | 25fd36c | 2011-07-06 17:41:08 +0000 | [diff] [blame] | 471 | INDEX_POOL_IB_SIZE, |
| tomhudson@google.com | c377baf | 2012-07-09 20:17:56 +0000 | [diff] [blame] | 472 | INDEX_POOL_IB_COUNT)); |
| bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 473 | fIndexPool->releaseGpuRef(); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 474 | } else if (!fIndexPoolUseCnt) { |
| bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 475 | // the client doesn't have valid data in the pool |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 476 | fIndexPool->reset(); |
| 477 | } |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 478 | } |
| 479 | |
| jvanverth@google.com | a633898 | 2013-01-31 21:34:25 +0000 | [diff] [blame] | 480 | bool GrGpu::onReserveVertexSpace(size_t vertexSize, |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 481 | int vertexCount, |
| 482 | void** vertices) { |
| 483 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 484 | |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 485 | SkASSERT(vertexCount > 0); |
| 486 | SkASSERT(NULL != vertices); |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 487 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 488 | this->prepareVertexPool(); |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 489 | |
| jvanverth@google.com | a633898 | 2013-01-31 21:34:25 +0000 | [diff] [blame] | 490 | *vertices = fVertexPool->makeSpace(vertexSize, |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 491 | vertexCount, |
| 492 | &geomPoolState.fPoolVertexBuffer, |
| 493 | &geomPoolState.fPoolStartVertex); |
| 494 | if (NULL == *vertices) { |
| 495 | return false; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 496 | } |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 497 | ++fVertexPoolUseCnt; |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 498 | return true; |
| 499 | } |
| 500 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 501 | bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) { |
| 502 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| rmistry@google.com | d6176b0 | 2012-08-23 18:14:13 +0000 | [diff] [blame] | 503 | |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 504 | SkASSERT(indexCount > 0); |
| 505 | SkASSERT(NULL != indices); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 506 | |
| 507 | this->prepareIndexPool(); |
| 508 | |
| 509 | *indices = fIndexPool->makeSpace(indexCount, |
| 510 | &geomPoolState.fPoolIndexBuffer, |
| 511 | &geomPoolState.fPoolStartIndex); |
| 512 | if (NULL == *indices) { |
| 513 | return false; |
| 514 | } |
| 515 | ++fIndexPoolUseCnt; |
| 516 | return true; |
| 517 | } |
| 518 | |
| 519 | void GrGpu::releaseReservedVertexSpace() { |
| 520 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 521 | SkASSERT(kReserved_GeometrySrcType == geoSrc.fVertexSrc); |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 522 | size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 523 | fVertexPool->putBack(bytes); |
| 524 | --fVertexPoolUseCnt; |
| 525 | } |
| 526 | |
| 527 | void GrGpu::releaseReservedIndexSpace() { |
| 528 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 529 | SkASSERT(kReserved_GeometrySrcType == geoSrc.fIndexSrc); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 530 | size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); |
| 531 | fIndexPool->putBack(bytes); |
| 532 | --fIndexPoolUseCnt; |
| 533 | } |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 534 | |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 535 | void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) { |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 536 | this->prepareVertexPool(); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 537 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 538 | #ifdef SK_DEBUG |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 539 | bool success = |
| 540 | #endif |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 541 | fVertexPool->appendVertices(this->getVertexSize(), |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 542 | vertexCount, |
| 543 | vertexArray, |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 544 | &geomPoolState.fPoolVertexBuffer, |
| 545 | &geomPoolState.fPoolStartVertex); |
| 546 | ++fVertexPoolUseCnt; |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 547 | GR_DEBUGASSERT(success); |
| 548 | } |
| 549 | |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 550 | void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) { |
| bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 551 | this->prepareIndexPool(); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 552 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| commit-bot@chromium.org | 515dcd3 | 2013-08-28 14:17:03 +0000 | [diff] [blame] | 553 | #ifdef SK_DEBUG |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 554 | bool success = |
| 555 | #endif |
| 556 | fIndexPool->appendIndices(indexCount, |
| 557 | indexArray, |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 558 | &geomPoolState.fPoolIndexBuffer, |
| 559 | &geomPoolState.fPoolStartIndex); |
| 560 | ++fIndexPoolUseCnt; |
| bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 561 | GR_DEBUGASSERT(success); |
| reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 562 | } |
| 563 | |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 564 | void GrGpu::releaseVertexArray() { |
| 565 | // if vertex source was array, we stowed data in the pool |
| 566 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 567 | SkASSERT(kArray_GeometrySrcType == geoSrc.fVertexSrc); |
| jvanverth@google.com | b75b0a0 | 2013-02-05 20:33:30 +0000 | [diff] [blame] | 568 | size_t bytes = geoSrc.fVertexCount * geoSrc.fVertexSize; |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 569 | fVertexPool->putBack(bytes); |
| 570 | --fVertexPoolUseCnt; |
| 571 | } |
| 572 | |
| 573 | void GrGpu::releaseIndexArray() { |
| 574 | // if index source was array, we stowed data in the pool |
| 575 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| tfarina@chromium.org | f6de475 | 2013-08-17 00:02:59 +0000 | [diff] [blame] | 576 | SkASSERT(kArray_GeometrySrcType == geoSrc.fIndexSrc); |
| bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 577 | size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); |
| 578 | fIndexPool->putBack(bytes); |
| 579 | --fIndexPoolUseCnt; |
| 580 | } |