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" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 13 | #include "GrClipIterator.h" |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 14 | #include "GrContext.h" |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 15 | #include "GrIndexBuffer.h" |
bsalomon@google.com | 4043ae2 | 2011-08-02 14:19:11 +0000 | [diff] [blame] | 16 | #include "GrPathRenderer.h" |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 17 | #include "GrGLStencilBuffer.h" |
| 18 | #include "GrVertexBuffer.h" |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 19 | |
| 20 | // 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] | 21 | static const size_t VERTEX_POOL_VB_SIZE = 1 << 18; |
| 22 | static const int VERTEX_POOL_VB_COUNT = 4; |
bsalomon@google.com | 25fd36c | 2011-07-06 17:41:08 +0000 | [diff] [blame] | 23 | static const size_t INDEX_POOL_IB_SIZE = 1 << 16; |
| 24 | static const int INDEX_POOL_IB_COUNT = 4; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 25 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 26 | //////////////////////////////////////////////////////////////////////////////// |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 27 | |
| 28 | extern void gr_run_unittests(); |
| 29 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 30 | #define DEBUG_INVAL_BUFFER 0xdeadcafe |
| 31 | #define DEBUG_INVAL_START_IDX -1 |
| 32 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 33 | GrGpu::GrGpu() |
bsalomon@google.com | 18c9c19 | 2011-09-22 21:01:31 +0000 | [diff] [blame] | 34 | : fContext(NULL) |
bsalomon@google.com | 979432b | 2011-11-05 21:38:22 +0000 | [diff] [blame] | 35 | , fResetTimestamp(kExpiredTimestamp+1) |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 36 | , fVertexPool(NULL) |
| 37 | , fIndexPool(NULL) |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 38 | , fVertexPoolUseCnt(0) |
| 39 | , fIndexPoolUseCnt(0) |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 40 | , fQuadIndexBuffer(NULL) |
| 41 | , fUnitSquareVertexBuffer(NULL) |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 42 | , fPathRendererChain(NULL) |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 43 | , fContextIsDirty(true) |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 44 | , fResourceHead(NULL) { |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 45 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 46 | #if GR_DEBUG |
bsalomon@google.com | 5aaa69e | 2011-03-04 20:29:08 +0000 | [diff] [blame] | 47 | //gr_run_unittests(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 48 | #endif |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 49 | |
| 50 | fGeomPoolStateStack.push_back(); |
| 51 | #if GR_DEBUG |
| 52 | GeometryPoolState& poolState = fGeomPoolStateStack.back(); |
| 53 | poolState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 54 | poolState.fPoolStartVertex = DEBUG_INVAL_START_IDX; |
| 55 | poolState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 56 | poolState.fPoolStartIndex = DEBUG_INVAL_START_IDX; |
| 57 | #endif |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 58 | resetStats(); |
| 59 | } |
| 60 | |
| 61 | GrGpu::~GrGpu() { |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 62 | this->releaseResources(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 63 | } |
| 64 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 65 | void GrGpu::abandonResources() { |
| 66 | |
| 67 | while (NULL != fResourceHead) { |
| 68 | fResourceHead->abandon(); |
| 69 | } |
| 70 | |
| 71 | GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid()); |
| 72 | GrAssert(NULL == fUnitSquareVertexBuffer || |
| 73 | !fUnitSquareVertexBuffer->isValid()); |
| 74 | GrSafeSetNull(fQuadIndexBuffer); |
| 75 | GrSafeSetNull(fUnitSquareVertexBuffer); |
| 76 | delete fVertexPool; |
| 77 | fVertexPool = NULL; |
| 78 | delete fIndexPool; |
| 79 | fIndexPool = NULL; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 80 | // in case path renderer has any GrResources, start from scratch |
| 81 | GrSafeSetNull(fPathRendererChain); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 82 | } |
| 83 | |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 84 | void GrGpu::releaseResources() { |
| 85 | |
| 86 | while (NULL != fResourceHead) { |
| 87 | fResourceHead->release(); |
| 88 | } |
| 89 | |
| 90 | GrAssert(NULL == fQuadIndexBuffer || !fQuadIndexBuffer->isValid()); |
| 91 | GrAssert(NULL == fUnitSquareVertexBuffer || |
| 92 | !fUnitSquareVertexBuffer->isValid()); |
| 93 | GrSafeSetNull(fQuadIndexBuffer); |
| 94 | GrSafeSetNull(fUnitSquareVertexBuffer); |
| 95 | delete fVertexPool; |
| 96 | fVertexPool = NULL; |
| 97 | delete fIndexPool; |
| 98 | fIndexPool = NULL; |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 99 | // in case path renderer has any GrResources, start from scratch |
| 100 | GrSafeSetNull(fPathRendererChain); |
bsalomon@google.com | 8fe7247 | 2011-03-30 21:26:44 +0000 | [diff] [blame] | 101 | } |
| 102 | |
| 103 | void GrGpu::insertResource(GrResource* resource) { |
| 104 | GrAssert(NULL != resource); |
| 105 | GrAssert(this == resource->getGpu()); |
| 106 | GrAssert(NULL == resource->fNext); |
| 107 | GrAssert(NULL == resource->fPrevious); |
| 108 | |
| 109 | resource->fNext = fResourceHead; |
| 110 | if (NULL != fResourceHead) { |
| 111 | GrAssert(NULL == fResourceHead->fPrevious); |
| 112 | fResourceHead->fPrevious = resource; |
| 113 | } |
| 114 | fResourceHead = resource; |
| 115 | } |
| 116 | |
| 117 | void GrGpu::removeResource(GrResource* resource) { |
| 118 | GrAssert(NULL != resource); |
| 119 | GrAssert(NULL != fResourceHead); |
| 120 | |
| 121 | if (fResourceHead == resource) { |
| 122 | GrAssert(NULL == resource->fPrevious); |
| 123 | fResourceHead = resource->fNext; |
| 124 | } else { |
| 125 | GrAssert(NULL != fResourceHead); |
| 126 | resource->fPrevious->fNext = resource->fNext; |
| 127 | } |
| 128 | if (NULL != resource->fNext) { |
| 129 | resource->fNext->fPrevious = resource->fPrevious; |
| 130 | } |
| 131 | resource->fNext = NULL; |
| 132 | resource->fPrevious = NULL; |
| 133 | } |
| 134 | |
| 135 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 136 | void GrGpu::unimpl(const char msg[]) { |
bsalomon@google.com | 7d34d2e | 2011-01-24 17:41:47 +0000 | [diff] [blame] | 137 | #if GR_DEBUG |
| 138 | GrPrintf("--- GrGpu unimplemented(\"%s\")\n", msg); |
| 139 | #endif |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 140 | } |
| 141 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 142 | //////////////////////////////////////////////////////////////////////////////// |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 143 | |
bsalomon@google.com | fea37b5 | 2011-04-25 15:51:06 +0000 | [diff] [blame] | 144 | GrTexture* GrGpu::createTexture(const GrTextureDesc& desc, |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 145 | const void* srcData, size_t rowBytes) { |
| 146 | this->handleDirtyContext(); |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 147 | GrTexture* tex = this->onCreateTexture(desc, srcData, rowBytes); |
| 148 | if (NULL != tex && |
| 149 | (kRenderTarget_GrTextureFlagBit & desc.fFlags) && |
| 150 | !(kNoStencil_GrTextureFlagBit & desc.fFlags)) { |
| 151 | GrAssert(NULL != tex->asRenderTarget()); |
| 152 | // TODO: defer this and attach dynamically |
| 153 | if (!this->attachStencilBufferToRenderTarget(tex->asRenderTarget())) { |
| 154 | tex->unref(); |
| 155 | return NULL; |
| 156 | } |
| 157 | } |
| 158 | return tex; |
| 159 | } |
| 160 | |
| 161 | bool GrGpu::attachStencilBufferToRenderTarget(GrRenderTarget* rt) { |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 162 | GrAssert(NULL == rt->getStencilBuffer()); |
| 163 | GrStencilBuffer* sb = |
bsalomon@google.com | 9962108 | 2011-11-15 16:47:16 +0000 | [diff] [blame^] | 164 | this->getContext()->findStencilBuffer(rt->width(), |
| 165 | rt->height(), |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 166 | rt->numSamples()); |
| 167 | if (NULL != sb) { |
| 168 | rt->setStencilBuffer(sb); |
| 169 | bool attached = this->attachStencilBufferToRenderTarget(sb, rt); |
| 170 | if (!attached) { |
| 171 | rt->setStencilBuffer(NULL); |
| 172 | } |
| 173 | return attached; |
| 174 | } |
bsalomon@google.com | 9962108 | 2011-11-15 16:47:16 +0000 | [diff] [blame^] | 175 | if (this->createStencilBufferForRenderTarget(rt, |
| 176 | rt->width(), rt->height())) { |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 177 | rt->getStencilBuffer()->ref(); |
| 178 | rt->getStencilBuffer()->transferToCacheAndLock(); |
| 179 | |
bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 180 | // Right now we're clearing the stencil buffer here after it is |
| 181 | // attached to an RT for the first time. When we start matching |
| 182 | // stencil buffers with smaller color targets this will no longer |
| 183 | // be correct because it won't be guaranteed to clear the entire |
| 184 | // sb. |
| 185 | // We used to clear down in the GL subclass using a special purpose |
| 186 | // FBO. But iOS doesn't allow a stencil-only FBO. It reports unsupported |
| 187 | // FBO status. |
| 188 | GrRenderTarget* oldRT = fCurrDrawState.fRenderTarget; |
| 189 | fCurrDrawState.fRenderTarget = rt; |
| 190 | this->clearStencil(); |
| 191 | fCurrDrawState.fRenderTarget = oldRT; |
bsalomon@google.com | 558a75b | 2011-08-08 17:01:14 +0000 | [diff] [blame] | 192 | return true; |
| 193 | } else { |
| 194 | return false; |
bsalomon@google.com | edc177d | 2011-08-05 15:46:40 +0000 | [diff] [blame] | 195 | } |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 196 | } |
| 197 | |
bsalomon@google.com | e269f21 | 2011-11-07 13:29:52 +0000 | [diff] [blame] | 198 | GrTexture* GrGpu::createPlatformTexture(const GrPlatformTextureDesc& desc) { |
| 199 | this->handleDirtyContext(); |
| 200 | GrTexture* tex = this->onCreatePlatformTexture(desc); |
| 201 | // TODO: defer this and attach dynamically |
| 202 | GrRenderTarget* tgt = tex->asRenderTarget(); |
| 203 | if (NULL != tgt && |
| 204 | !this->attachStencilBufferToRenderTarget(tgt)) { |
| 205 | tex->unref(); |
| 206 | return NULL; |
| 207 | } else { |
| 208 | return tex; |
| 209 | } |
| 210 | } |
| 211 | |
| 212 | GrRenderTarget* GrGpu::createPlatformRenderTarget(const GrPlatformRenderTargetDesc& desc) { |
| 213 | this->handleDirtyContext(); |
| 214 | return this->onCreatePlatformRenderTarget(desc); |
| 215 | } |
| 216 | |
bsalomon@google.com | 5877ffd | 2011-04-11 17:58:48 +0000 | [diff] [blame] | 217 | GrResource* GrGpu::createPlatformSurface(const GrPlatformSurfaceDesc& desc) { |
| 218 | this->handleDirtyContext(); |
| 219 | return this->onCreatePlatformSurface(desc); |
| 220 | } |
| 221 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 222 | GrVertexBuffer* GrGpu::createVertexBuffer(uint32_t size, bool dynamic) { |
| 223 | this->handleDirtyContext(); |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 224 | return this->onCreateVertexBuffer(size, dynamic); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 225 | } |
| 226 | |
| 227 | GrIndexBuffer* GrGpu::createIndexBuffer(uint32_t size, bool dynamic) { |
| 228 | this->handleDirtyContext(); |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 229 | return this->onCreateIndexBuffer(size, dynamic); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 230 | } |
| 231 | |
bsalomon@google.com | 6aa25c3 | 2011-04-27 19:55:29 +0000 | [diff] [blame] | 232 | void GrGpu::clear(const GrIRect* rect, GrColor color) { |
bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 233 | if (NULL == this->getRenderTarget()) { |
| 234 | return; |
| 235 | } |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 236 | this->handleDirtyContext(); |
bsalomon@google.com | 6aa25c3 | 2011-04-27 19:55:29 +0000 | [diff] [blame] | 237 | this->onClear(rect, color); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 238 | } |
| 239 | |
| 240 | void GrGpu::forceRenderTargetFlush() { |
| 241 | this->handleDirtyContext(); |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 242 | this->onForceRenderTargetFlush(); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 243 | } |
| 244 | |
bsalomon@google.com | 669fdc4 | 2011-04-05 17:08:27 +0000 | [diff] [blame] | 245 | bool GrGpu::readPixels(GrRenderTarget* target, |
| 246 | int left, int top, int width, int height, |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 247 | GrPixelConfig config, void* buffer, |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 248 | size_t rowBytes, bool invertY) { |
| 249 | GrAssert(GrPixelConfigIsUnpremultiplied(config) == |
| 250 | GrPixelConfigIsUnpremultiplied(target->config())); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 251 | this->handleDirtyContext(); |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 252 | return this->onReadPixels(target, left, top, width, height, |
bsalomon@google.com | c436499 | 2011-11-07 15:54:49 +0000 | [diff] [blame] | 253 | config, buffer, rowBytes, invertY); |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 254 | } |
| 255 | |
| 256 | //////////////////////////////////////////////////////////////////////////////// |
| 257 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 258 | 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] | 259 | |
reed@google.com | 8195f67 | 2011-01-12 18:14:28 +0000 | [diff] [blame] | 260 | GR_STATIC_ASSERT(4 * MAX_QUADS <= 65535); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 261 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 262 | static inline void fill_indices(uint16_t* indices, int quadCount) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 263 | for (int i = 0; i < quadCount; ++i) { |
| 264 | indices[6 * i + 0] = 4 * i + 0; |
| 265 | indices[6 * i + 1] = 4 * i + 1; |
| 266 | indices[6 * i + 2] = 4 * i + 2; |
| 267 | indices[6 * i + 3] = 4 * i + 0; |
| 268 | indices[6 * i + 4] = 4 * i + 2; |
| 269 | indices[6 * i + 5] = 4 * i + 3; |
| 270 | } |
| 271 | } |
| 272 | |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 273 | const GrIndexBuffer* GrGpu::getQuadIndexBuffer() const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 274 | if (NULL == fQuadIndexBuffer) { |
| 275 | static const int SIZE = sizeof(uint16_t) * 6 * MAX_QUADS; |
| 276 | GrGpu* me = const_cast<GrGpu*>(this); |
| 277 | fQuadIndexBuffer = me->createIndexBuffer(SIZE, false); |
| 278 | if (NULL != fQuadIndexBuffer) { |
| 279 | uint16_t* indices = (uint16_t*)fQuadIndexBuffer->lock(); |
| 280 | if (NULL != indices) { |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 281 | fill_indices(indices, MAX_QUADS); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 282 | fQuadIndexBuffer->unlock(); |
| 283 | } else { |
| 284 | indices = (uint16_t*)GrMalloc(SIZE); |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 285 | fill_indices(indices, MAX_QUADS); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 286 | if (!fQuadIndexBuffer->updateData(indices, SIZE)) { |
| 287 | fQuadIndexBuffer->unref(); |
| 288 | fQuadIndexBuffer = NULL; |
bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 289 | GrCrash("Can't get indices into buffer!"); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 290 | } |
| 291 | GrFree(indices); |
| 292 | } |
| 293 | } |
| 294 | } |
| 295 | |
| 296 | return fQuadIndexBuffer; |
| 297 | } |
| 298 | |
bsalomon@google.com | 86afc2a | 2011-02-16 16:12:19 +0000 | [diff] [blame] | 299 | const GrVertexBuffer* GrGpu::getUnitSquareVertexBuffer() const { |
bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 300 | if (NULL == fUnitSquareVertexBuffer) { |
| 301 | |
| 302 | static const GrPoint DATA[] = { |
reed@google.com | 7744c20 | 2011-05-06 19:26:26 +0000 | [diff] [blame] | 303 | { 0, 0 }, |
| 304 | { GR_Scalar1, 0 }, |
| 305 | { GR_Scalar1, GR_Scalar1 }, |
| 306 | { 0, GR_Scalar1 } |
| 307 | #if 0 |
bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 308 | GrPoint(0, 0), |
| 309 | GrPoint(GR_Scalar1,0), |
| 310 | GrPoint(GR_Scalar1,GR_Scalar1), |
| 311 | GrPoint(0, GR_Scalar1) |
reed@google.com | 7744c20 | 2011-05-06 19:26:26 +0000 | [diff] [blame] | 312 | #endif |
bsalomon@google.com | 6f7fbc9 | 2011-02-01 19:12:40 +0000 | [diff] [blame] | 313 | }; |
| 314 | static const size_t SIZE = sizeof(DATA); |
| 315 | |
| 316 | GrGpu* me = const_cast<GrGpu*>(this); |
| 317 | fUnitSquareVertexBuffer = me->createVertexBuffer(SIZE, false); |
| 318 | if (NULL != fUnitSquareVertexBuffer) { |
| 319 | if (!fUnitSquareVertexBuffer->updateData(DATA, SIZE)) { |
| 320 | fUnitSquareVertexBuffer->unref(); |
| 321 | fUnitSquareVertexBuffer = NULL; |
| 322 | GrCrash("Can't get vertices into buffer!"); |
| 323 | } |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | return fUnitSquareVertexBuffer; |
| 328 | } |
| 329 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 330 | //////////////////////////////////////////////////////////////////////////////// |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 331 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 332 | // stencil settings to use when clip is in stencil |
| 333 | const GrStencilSettings GrGpu::gClipStencilSettings = { |
| 334 | kKeep_StencilOp, kKeep_StencilOp, |
| 335 | kKeep_StencilOp, kKeep_StencilOp, |
| 336 | kAlwaysIfInClip_StencilFunc, kAlwaysIfInClip_StencilFunc, |
tomhudson@google.com | 62b0968 | 2011-11-09 16:39:17 +0000 | [diff] [blame] | 337 | 0x0000, 0x0000, |
| 338 | 0x0000, 0x0000, |
| 339 | 0x0000, 0x0000 |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 340 | }; |
| 341 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 342 | // mapping of clip-respecting stencil funcs to normal stencil funcs |
| 343 | // mapping depends on whether stencil-clipping is in effect. |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 344 | static const GrStencilFunc gGrClipToNormalStencilFunc[2][kClipStencilFuncCount] = { |
| 345 | {// Stencil-Clipping is DISABLED, effectively always inside the clip |
| 346 | // In the Clip Funcs |
| 347 | kAlways_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 348 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 349 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 350 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 351 | // Special in the clip func that forces user's ref to be 0. |
| 352 | kNotEqual_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 353 | // make ref 0 and do normal nequal. |
| 354 | }, |
| 355 | {// Stencil-Clipping is ENABLED |
| 356 | // In the Clip Funcs |
| 357 | kEqual_StencilFunc, // kAlwaysIfInClip_StencilFunc |
| 358 | // eq stencil clip bit, mask |
| 359 | // out user bits. |
| 360 | |
| 361 | kEqual_StencilFunc, // kEqualIfInClip_StencilFunc |
| 362 | // add stencil bit to mask and ref |
| 363 | |
| 364 | kLess_StencilFunc, // kLessIfInClip_StencilFunc |
| 365 | kLEqual_StencilFunc, // kLEqualIfInClip_StencilFunc |
| 366 | // for both of these we can add |
| 367 | // the clip bit to the mask and |
| 368 | // ref and compare as normal |
| 369 | // Special in the clip func that forces user's ref to be 0. |
| 370 | kLess_StencilFunc, // kNonZeroIfInClip_StencilFunc |
| 371 | // make ref have only the clip bit set |
| 372 | // and make comparison be less |
| 373 | // 10..0 < 1..user_bits.. |
| 374 | } |
| 375 | }; |
| 376 | |
| 377 | GrStencilFunc GrGpu::ConvertStencilFunc(bool stencilInClip, GrStencilFunc func) { |
| 378 | GrAssert(func >= 0); |
| 379 | if (func >= kBasicStencilFuncCount) { |
| 380 | GrAssert(func < kStencilFuncCount); |
| 381 | func = gGrClipToNormalStencilFunc[stencilInClip ? 1 : 0][func - kBasicStencilFuncCount]; |
| 382 | GrAssert(func >= 0 && func < kBasicStencilFuncCount); |
| 383 | } |
| 384 | return func; |
| 385 | } |
| 386 | |
| 387 | void GrGpu::ConvertStencilFuncAndMask(GrStencilFunc func, |
| 388 | bool clipInStencil, |
| 389 | unsigned int clipBit, |
| 390 | unsigned int userBits, |
| 391 | unsigned int* ref, |
| 392 | unsigned int* mask) { |
| 393 | if (func < kBasicStencilFuncCount) { |
| 394 | *mask &= userBits; |
| 395 | *ref &= userBits; |
| 396 | } else { |
| 397 | if (clipInStencil) { |
| 398 | switch (func) { |
| 399 | case kAlwaysIfInClip_StencilFunc: |
| 400 | *mask = clipBit; |
| 401 | *ref = clipBit; |
| 402 | break; |
| 403 | case kEqualIfInClip_StencilFunc: |
| 404 | case kLessIfInClip_StencilFunc: |
| 405 | case kLEqualIfInClip_StencilFunc: |
| 406 | *mask = (*mask & userBits) | clipBit; |
| 407 | *ref = (*ref & userBits) | clipBit; |
| 408 | break; |
| 409 | case kNonZeroIfInClip_StencilFunc: |
| 410 | *mask = (*mask & userBits) | clipBit; |
| 411 | *ref = clipBit; |
| 412 | break; |
| 413 | default: |
| 414 | GrCrash("Unknown stencil func"); |
| 415 | } |
| 416 | } else { |
| 417 | *mask &= userBits; |
| 418 | *ref &= userBits; |
| 419 | } |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | //////////////////////////////////////////////////////////////////////////////// |
| 424 | |
| 425 | #define VISUALIZE_COMPLEX_CLIP 0 |
| 426 | |
| 427 | #if VISUALIZE_COMPLEX_CLIP |
| 428 | #include "GrRandom.h" |
| 429 | GrRandom gRandom; |
| 430 | #define SET_RANDOM_COLOR this->setColor(0xff000000 | gRandom.nextU()); |
| 431 | #else |
| 432 | #define SET_RANDOM_COLOR |
| 433 | #endif |
| 434 | |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 435 | namespace { |
| 436 | // determines how many elements at the head of the clip can be skipped and |
| 437 | // whether the initial clear should be to the inside- or outside-the-clip value, |
| 438 | // and what op should be used to draw the first element that isn't skipped. |
| 439 | int process_initial_clip_elements(const GrClip& clip, |
| 440 | bool* clearToInside, |
| 441 | GrSetOp* startOp) { |
| 442 | |
| 443 | // logically before the first element of the clip stack is |
| 444 | // processed the clip is entirely open. However, depending on the |
| 445 | // first set op we may prefer to clear to 0 for performance. We may |
| 446 | // also be able to skip the initial clip paths/rects. We loop until |
| 447 | // we cannot skip an element. |
| 448 | int curr; |
| 449 | bool done = false; |
| 450 | *clearToInside = true; |
| 451 | int count = clip.getElementCount(); |
| 452 | |
| 453 | for (curr = 0; curr < count && !done; ++curr) { |
| 454 | switch (clip.getOp(curr)) { |
| 455 | case kReplace_SetOp: |
| 456 | // replace ignores everything previous |
| 457 | *startOp = kReplace_SetOp; |
| 458 | *clearToInside = false; |
| 459 | done = true; |
| 460 | break; |
| 461 | case kIntersect_SetOp: |
| 462 | // if everything is initially clearToInside then intersect is |
| 463 | // same as clear to 0 and treat as a replace. Otherwise, |
| 464 | // set stays empty. |
| 465 | if (*clearToInside) { |
| 466 | *startOp = kReplace_SetOp; |
| 467 | *clearToInside = false; |
| 468 | done = true; |
| 469 | } |
| 470 | break; |
| 471 | // we can skip a leading union. |
| 472 | case kUnion_SetOp: |
| 473 | // if everything is initially outside then union is |
| 474 | // same as replace. Otherwise, every pixel is still |
| 475 | // clearToInside |
| 476 | if (!*clearToInside) { |
| 477 | *startOp = kReplace_SetOp; |
| 478 | done = true; |
| 479 | } |
| 480 | break; |
| 481 | case kXor_SetOp: |
| 482 | // xor is same as difference or replace both of which |
| 483 | // can be 1-pass instead of 2 for xor. |
| 484 | if (*clearToInside) { |
| 485 | *startOp = kDifference_SetOp; |
| 486 | } else { |
| 487 | *startOp = kReplace_SetOp; |
| 488 | } |
| 489 | done = true; |
| 490 | break; |
| 491 | case kDifference_SetOp: |
| 492 | // if all pixels are clearToInside then we have to process the |
| 493 | // difference, otherwise it has no effect and all pixels |
| 494 | // remain outside. |
| 495 | if (*clearToInside) { |
| 496 | *startOp = kDifference_SetOp; |
| 497 | done = true; |
| 498 | } |
| 499 | break; |
| 500 | case kReverseDifference_SetOp: |
| 501 | // if all pixels are clearToInside then reverse difference |
| 502 | // produces empty set. Otherise it is same as replace |
| 503 | if (*clearToInside) { |
| 504 | *clearToInside = false; |
| 505 | } else { |
| 506 | *startOp = kReplace_SetOp; |
| 507 | done = true; |
| 508 | } |
| 509 | break; |
bsalomon@google.com | 2ec7280 | 2011-09-21 21:46:03 +0000 | [diff] [blame] | 510 | default: |
| 511 | GrCrash("Unknown set op."); |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 512 | } |
| 513 | } |
| 514 | return done ? curr-1 : count; |
| 515 | } |
| 516 | } |
| 517 | |
bsalomon@google.com | ffca400 | 2011-02-22 20:34:01 +0000 | [diff] [blame] | 518 | bool GrGpu::setupClipAndFlushState(GrPrimitiveType type) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 519 | const GrIRect* r = NULL; |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 520 | GrIRect clipRect; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 521 | |
bsalomon@google.com | 0ba52fc | 2011-11-10 22:16:06 +0000 | [diff] [blame] | 522 | // GrDrawTarget should have filtered this for us |
| 523 | GrAssert(NULL != fCurrDrawState.fRenderTarget); |
bsalomon@google.com | 2e7b43d | 2011-01-18 20:57:22 +0000 | [diff] [blame] | 524 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 525 | if (fCurrDrawState.fFlagBits & kClip_StateBit) { |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 526 | GrRenderTarget& rt = *fCurrDrawState.fRenderTarget; |
| 527 | |
| 528 | GrRect bounds; |
| 529 | GrRect rtRect; |
| 530 | rtRect.setLTRB(0, 0, |
| 531 | GrIntToScalar(rt.width()), GrIntToScalar(rt.height())); |
bsalomon@google.com | 0b50b2e | 2011-03-08 21:07:21 +0000 | [diff] [blame] | 532 | if (fClip.hasConservativeBounds()) { |
| 533 | bounds = fClip.getConservativeBounds(); |
reed@google.com | 20efde7 | 2011-05-09 17:00:02 +0000 | [diff] [blame] | 534 | if (!bounds.intersect(rtRect)) { |
| 535 | bounds.setEmpty(); |
| 536 | } |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 537 | } else { |
| 538 | bounds = rtRect; |
| 539 | } |
| 540 | |
| 541 | bounds.roundOut(&clipRect); |
| 542 | if (clipRect.isEmpty()) { |
| 543 | clipRect.setLTRB(0,0,0,0); |
| 544 | } |
| 545 | r = &clipRect; |
| 546 | |
bsalomon@google.com | dea2f8d | 2011-08-01 15:51:05 +0000 | [diff] [blame] | 547 | // use the stencil clip if we can't represent the clip as a rectangle. |
| 548 | fClipInStencil = !fClip.isRect() && !fClip.isEmpty() && |
| 549 | !bounds.isEmpty(); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 550 | |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 551 | // TODO: dynamically attach a SB when needed. |
| 552 | GrStencilBuffer* stencilBuffer = rt.getStencilBuffer(); |
| 553 | if (fClipInStencil && NULL == stencilBuffer) { |
| 554 | return false; |
| 555 | } |
bsalomon@google.com | a16d650 | 2011-08-02 14:07:52 +0000 | [diff] [blame] | 556 | |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 557 | if (fClipInStencil && |
| 558 | stencilBuffer->mustRenderClip(fClip, rt.width(), rt.height())) { |
| 559 | |
| 560 | stencilBuffer->setLastClip(fClip, rt.width(), rt.height()); |
| 561 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 562 | // we set the current clip to the bounds so that our recursive |
| 563 | // draws are scissored to them. We use the copy of the complex clip |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 564 | // we just stashed on the SB to render from. We set it back after |
| 565 | // we finish drawing it into the stencil. |
| 566 | const GrClip& clip = stencilBuffer->getLastClip(); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 567 | fClip.setFromRect(bounds); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 568 | |
| 569 | AutoStateRestore asr(this); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 570 | AutoGeometryPush agp(this); |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 571 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 572 | this->setViewMatrix(GrMatrix::I()); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 573 | this->flushScissor(NULL); |
| 574 | #if !VISUALIZE_COMPLEX_CLIP |
| 575 | this->enableState(kNoColorWrites_StateBit); |
| 576 | #else |
| 577 | this->disableState(kNoColorWrites_StateBit); |
| 578 | #endif |
| 579 | int count = clip.getElementCount(); |
bsalomon@google.com | 81c3f8d | 2011-08-03 15:18:33 +0000 | [diff] [blame] | 580 | int clipBit = stencilBuffer->bits(); |
tomhudson@google.com | 62b0968 | 2011-11-09 16:39:17 +0000 | [diff] [blame] | 581 | SkASSERT((clipBit <= 16) && |
| 582 | "Ganesh only handles 16b or smaller stencil buffers"); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 583 | clipBit = (1 << (clipBit-1)); |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 584 | |
| 585 | bool clearToInside; |
bsalomon@google.com | 2ec7280 | 2011-09-21 21:46:03 +0000 | [diff] [blame] | 586 | GrSetOp startOp = kReplace_SetOp; // suppress warning |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 587 | int start = process_initial_clip_elements(clip, &clearToInside, |
| 588 | &startOp); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 589 | |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 590 | this->clearStencilClip(clipRect, clearToInside); |
bsalomon@google.com | 0b50b2e | 2011-03-08 21:07:21 +0000 | [diff] [blame] | 591 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 592 | // walk through each clip element and perform its set op |
| 593 | // with the existing clip. |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 594 | for (int c = start; c < count; ++c) { |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 595 | GrPathFill fill; |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 596 | bool fillInverted; |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 597 | // enabled at bottom of loop |
| 598 | this->disableState(kModifyStencilClip_StateBit); |
| 599 | |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 600 | bool canRenderDirectToStencil; // can the clip element be drawn |
| 601 | // directly to the stencil buffer |
| 602 | // with a non-inverted fill rule |
| 603 | // without extra passes to |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 604 | // resolve in/out status. |
| 605 | |
| 606 | GrPathRenderer* pr = NULL; |
reed@google.com | 07f3ee1 | 2011-05-16 17:21:57 +0000 | [diff] [blame] | 607 | const GrPath* clipPath = NULL; |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 608 | GrPathRenderer::AutoClearPath arp; |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 609 | if (kRect_ClipType == clip.getElementType(c)) { |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 610 | canRenderDirectToStencil = true; |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 611 | fill = kEvenOdd_PathFill; |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 612 | fillInverted = false; |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 613 | } else { |
| 614 | fill = clip.getPathFill(c); |
bsalomon@google.com | fa6ac93 | 2011-10-05 19:57:55 +0000 | [diff] [blame] | 615 | fillInverted = GrIsFillInverted(fill); |
| 616 | fill = GrNonInvertedFill(fill); |
reed@google.com | 07f3ee1 | 2011-05-16 17:21:57 +0000 | [diff] [blame] | 617 | clipPath = &clip.getPath(c); |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 618 | pr = this->getClipPathRenderer(*clipPath, fill); |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 619 | if (NULL == pr) { |
| 620 | fClipInStencil = false; |
| 621 | fClip = clip; |
| 622 | return false; |
| 623 | } |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 624 | canRenderDirectToStencil = |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 625 | !pr->requiresStencilPass(this, *clipPath, fill); |
bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 626 | arp.set(pr, this, clipPath, fill, false, NULL); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 627 | } |
| 628 | |
bsalomon@google.com | ab3dee5 | 2011-08-29 15:18:41 +0000 | [diff] [blame] | 629 | GrSetOp op = (c == start) ? startOp : clip.getOp(c); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 630 | int passes; |
| 631 | GrStencilSettings stencilSettings[GrStencilSettings::kMaxStencilClipPasses]; |
| 632 | |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 633 | bool canDrawDirectToClip; // Given the renderer, the element, |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 634 | // fill rule, and set operation can |
| 635 | // we render the element directly to |
| 636 | // stencil bit used for clipping. |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 637 | canDrawDirectToClip = |
| 638 | GrStencilSettings::GetClipPasses(op, |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 639 | canRenderDirectToStencil, |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 640 | clipBit, |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 641 | fillInverted, |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 642 | &passes, stencilSettings); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 643 | |
| 644 | // draw the element to the client stencil bits if necessary |
| 645 | if (!canDrawDirectToClip) { |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 646 | static const GrStencilSettings gDrawToStencil = { |
| 647 | kIncClamp_StencilOp, kIncClamp_StencilOp, |
| 648 | kIncClamp_StencilOp, kIncClamp_StencilOp, |
| 649 | kAlways_StencilFunc, kAlways_StencilFunc, |
tomhudson@google.com | 62b0968 | 2011-11-09 16:39:17 +0000 | [diff] [blame] | 650 | 0xffff, 0xffff, |
| 651 | 0x0000, 0x0000, |
| 652 | 0xffff, 0xffff, |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 653 | }; |
| 654 | SET_RANDOM_COLOR |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 655 | if (kRect_ClipType == clip.getElementType(c)) { |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 656 | this->setStencil(gDrawToStencil); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 657 | this->drawSimpleRect(clip.getRect(c), NULL, 0); |
| 658 | } else { |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 659 | if (canRenderDirectToStencil) { |
| 660 | this->setStencil(gDrawToStencil); |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 661 | pr->drawPath(0); |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 662 | } else { |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 663 | pr->drawPathToStencil(); |
bsalomon@google.com | 7f5875d | 2011-03-24 16:55:45 +0000 | [diff] [blame] | 664 | } |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 665 | } |
| 666 | } |
| 667 | |
| 668 | // now we modify the clip bit by rendering either the clip |
| 669 | // element directly or a bounding rect of the entire clip. |
| 670 | this->enableState(kModifyStencilClip_StateBit); |
| 671 | for (int p = 0; p < passes; ++p) { |
| 672 | this->setStencil(stencilSettings[p]); |
| 673 | if (canDrawDirectToClip) { |
| 674 | if (kRect_ClipType == clip.getElementType(c)) { |
| 675 | SET_RANDOM_COLOR |
| 676 | this->drawSimpleRect(clip.getRect(c), NULL, 0); |
| 677 | } else { |
| 678 | SET_RANDOM_COLOR |
bsalomon@google.com | ee43512 | 2011-07-01 14:57:55 +0000 | [diff] [blame] | 679 | pr->drawPath(0); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 680 | } |
| 681 | } else { |
| 682 | SET_RANDOM_COLOR |
thakis@chromium.org | 441d7da | 2011-06-07 04:03:17 +0000 | [diff] [blame] | 683 | this->drawSimpleRect(bounds, NULL, 0); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 684 | } |
| 685 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 686 | } |
bsalomon@google.com | dea2f8d | 2011-08-01 15:51:05 +0000 | [diff] [blame] | 687 | // restore clip |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 688 | fClip = clip; |
bsalomon@google.com | dea2f8d | 2011-08-01 15:51:05 +0000 | [diff] [blame] | 689 | // recusive draws would have disabled this since they drew with |
| 690 | // the clip bounds as clip. |
| 691 | fClipInStencil = true; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 692 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 693 | } |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 694 | |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 695 | // Must flush the scissor after graphics state |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 696 | if (!this->flushGraphicsState(type)) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 697 | return false; |
| 698 | } |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 699 | this->flushScissor(r); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 700 | return true; |
| 701 | } |
| 702 | |
reed@google.com | 07f3ee1 | 2011-05-16 17:21:57 +0000 | [diff] [blame] | 703 | GrPathRenderer* GrGpu::getClipPathRenderer(const GrPath& path, |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 704 | GrPathFill fill) { |
bsalomon@google.com | 3008519 | 2011-08-19 15:42:31 +0000 | [diff] [blame] | 705 | if (NULL == fPathRendererChain) { |
| 706 | fPathRendererChain = |
| 707 | new GrPathRendererChain(this->getContext(), |
| 708 | GrPathRendererChain::kNonAAOnly_UsageFlag); |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 709 | } |
bsalomon@google.com | 289533a | 2011-10-27 12:34:25 +0000 | [diff] [blame] | 710 | return fPathRendererChain->getPathRenderer(this->getCaps(), |
| 711 | path, fill, false); |
bsalomon@google.com | dfe75bc | 2011-03-25 12:31:16 +0000 | [diff] [blame] | 712 | } |
| 713 | |
| 714 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 715 | //////////////////////////////////////////////////////////////////////////////// |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 716 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 717 | void GrGpu::geometrySourceWillPush() { |
| 718 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 719 | if (kArray_GeometrySrcType == geoSrc.fVertexSrc || |
| 720 | kReserved_GeometrySrcType == geoSrc.fVertexSrc) { |
| 721 | this->finalizeReservedVertices(); |
| 722 | } |
| 723 | if (kArray_GeometrySrcType == geoSrc.fIndexSrc || |
| 724 | kReserved_GeometrySrcType == geoSrc.fIndexSrc) { |
| 725 | this->finalizeReservedIndices(); |
| 726 | } |
| 727 | GeometryPoolState& newState = fGeomPoolStateStack.push_back(); |
| 728 | #if GR_DEBUG |
| 729 | newState.fPoolVertexBuffer = (GrVertexBuffer*)DEBUG_INVAL_BUFFER; |
| 730 | newState.fPoolStartVertex = DEBUG_INVAL_START_IDX; |
| 731 | newState.fPoolIndexBuffer = (GrIndexBuffer*)DEBUG_INVAL_BUFFER; |
| 732 | newState.fPoolStartIndex = DEBUG_INVAL_START_IDX; |
| 733 | #endif |
| 734 | } |
| 735 | |
| 736 | void GrGpu::geometrySourceWillPop(const GeometrySrcState& restoredState) { |
| 737 | // if popping last entry then pops are unbalanced with pushes |
| 738 | GrAssert(fGeomPoolStateStack.count() > 1); |
| 739 | fGeomPoolStateStack.pop_back(); |
| 740 | } |
| 741 | |
| 742 | void GrGpu::onDrawIndexed(GrPrimitiveType type, |
| 743 | int startVertex, |
| 744 | int startIndex, |
| 745 | int vertexCount, |
| 746 | int indexCount) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 747 | |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 748 | this->handleDirtyContext(); |
| 749 | |
| 750 | if (!this->setupClipAndFlushState(type)) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 751 | return; |
| 752 | } |
| 753 | |
| 754 | #if GR_COLLECT_STATS |
| 755 | fStats.fVertexCnt += vertexCount; |
| 756 | fStats.fIndexCnt += indexCount; |
| 757 | fStats.fDrawCnt += 1; |
| 758 | #endif |
| 759 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 760 | int sVertex = startVertex; |
| 761 | int sIndex = startIndex; |
| 762 | setupGeometry(&sVertex, &sIndex, vertexCount, indexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 763 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 764 | this->onGpuDrawIndexed(type, sVertex, sIndex, |
| 765 | vertexCount, indexCount); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 766 | } |
| 767 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 768 | void GrGpu::onDrawNonIndexed(GrPrimitiveType type, |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 769 | int startVertex, |
| 770 | int vertexCount) { |
bsalomon@google.com | a7f84e1 | 2011-03-10 14:13:19 +0000 | [diff] [blame] | 771 | this->handleDirtyContext(); |
| 772 | |
| 773 | if (!this->setupClipAndFlushState(type)) { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 774 | return; |
| 775 | } |
| 776 | #if GR_COLLECT_STATS |
| 777 | fStats.fVertexCnt += vertexCount; |
| 778 | fStats.fDrawCnt += 1; |
| 779 | #endif |
| 780 | |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 781 | int sVertex = startVertex; |
| 782 | setupGeometry(&sVertex, NULL, vertexCount, 0); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 783 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 784 | this->onGpuDrawNonIndexed(type, sVertex, vertexCount); |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 785 | } |
| 786 | |
| 787 | void GrGpu::finalizeReservedVertices() { |
| 788 | GrAssert(NULL != fVertexPool); |
| 789 | fVertexPool->unlock(); |
| 790 | } |
| 791 | |
| 792 | void GrGpu::finalizeReservedIndices() { |
| 793 | GrAssert(NULL != fIndexPool); |
| 794 | fIndexPool->unlock(); |
| 795 | } |
| 796 | |
| 797 | void GrGpu::prepareVertexPool() { |
| 798 | if (NULL == fVertexPool) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 799 | GrAssert(0 == fVertexPoolUseCnt); |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 800 | fVertexPool = new GrVertexBufferAllocPool(this, true, |
| 801 | VERTEX_POOL_VB_SIZE, |
bsalomon@google.com | 7a5af8b | 2011-02-18 18:40:42 +0000 | [diff] [blame] | 802 | VERTEX_POOL_VB_COUNT); |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 803 | fVertexPool->releaseGpuRef(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 804 | } else if (!fVertexPoolUseCnt) { |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 805 | // the client doesn't have valid data in the pool |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 806 | fVertexPool->reset(); |
| 807 | } |
| 808 | } |
| 809 | |
| 810 | void GrGpu::prepareIndexPool() { |
senorblanco@chromium.org | 9d18b78 | 2011-03-28 20:47:09 +0000 | [diff] [blame] | 811 | if (NULL == fIndexPool) { |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 812 | GrAssert(0 == fIndexPoolUseCnt); |
bsalomon@google.com | 25fd36c | 2011-07-06 17:41:08 +0000 | [diff] [blame] | 813 | fIndexPool = new GrIndexBufferAllocPool(this, true, |
| 814 | INDEX_POOL_IB_SIZE, |
| 815 | INDEX_POOL_IB_COUNT); |
bsalomon@google.com | 11f0b51 | 2011-03-29 20:52:23 +0000 | [diff] [blame] | 816 | fIndexPool->releaseGpuRef(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 817 | } else if (!fIndexPoolUseCnt) { |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 818 | // the client doesn't have valid data in the pool |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 819 | fIndexPool->reset(); |
| 820 | } |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 821 | } |
| 822 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 823 | bool GrGpu::onReserveVertexSpace(GrVertexLayout vertexLayout, |
| 824 | int vertexCount, |
| 825 | void** vertices) { |
| 826 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| 827 | |
| 828 | GrAssert(vertexCount > 0); |
| 829 | GrAssert(NULL != vertices); |
| 830 | |
| 831 | this->prepareVertexPool(); |
| 832 | |
| 833 | *vertices = fVertexPool->makeSpace(vertexLayout, |
| 834 | vertexCount, |
| 835 | &geomPoolState.fPoolVertexBuffer, |
| 836 | &geomPoolState.fPoolStartVertex); |
| 837 | if (NULL == *vertices) { |
| 838 | return false; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 839 | } |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 840 | ++fVertexPoolUseCnt; |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 841 | return true; |
| 842 | } |
| 843 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 844 | bool GrGpu::onReserveIndexSpace(int indexCount, void** indices) { |
| 845 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
| 846 | |
| 847 | GrAssert(indexCount > 0); |
| 848 | GrAssert(NULL != indices); |
| 849 | |
| 850 | this->prepareIndexPool(); |
| 851 | |
| 852 | *indices = fIndexPool->makeSpace(indexCount, |
| 853 | &geomPoolState.fPoolIndexBuffer, |
| 854 | &geomPoolState.fPoolStartIndex); |
| 855 | if (NULL == *indices) { |
| 856 | return false; |
| 857 | } |
| 858 | ++fIndexPoolUseCnt; |
| 859 | return true; |
| 860 | } |
| 861 | |
| 862 | void GrGpu::releaseReservedVertexSpace() { |
| 863 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 864 | GrAssert(kReserved_GeometrySrcType == geoSrc.fVertexSrc); |
| 865 | size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout); |
| 866 | fVertexPool->putBack(bytes); |
| 867 | --fVertexPoolUseCnt; |
| 868 | } |
| 869 | |
| 870 | void GrGpu::releaseReservedIndexSpace() { |
| 871 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 872 | GrAssert(kReserved_GeometrySrcType == geoSrc.fIndexSrc); |
| 873 | size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); |
| 874 | fIndexPool->putBack(bytes); |
| 875 | --fIndexPoolUseCnt; |
| 876 | } |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 877 | |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 878 | void GrGpu::onSetVertexSourceToArray(const void* vertexArray, int vertexCount) { |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 879 | this->prepareVertexPool(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 880 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 881 | #if GR_DEBUG |
| 882 | bool success = |
| 883 | #endif |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 884 | fVertexPool->appendVertices(this->getGeomSrc().fVertexLayout, |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 885 | vertexCount, |
| 886 | vertexArray, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 887 | &geomPoolState.fPoolVertexBuffer, |
| 888 | &geomPoolState.fPoolStartVertex); |
| 889 | ++fVertexPoolUseCnt; |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 890 | GR_DEBUGASSERT(success); |
| 891 | } |
| 892 | |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 893 | void GrGpu::onSetIndexSourceToArray(const void* indexArray, int indexCount) { |
bsalomon@google.com | bcdbbe6 | 2011-04-12 15:40:00 +0000 | [diff] [blame] | 894 | this->prepareIndexPool(); |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 895 | GeometryPoolState& geomPoolState = fGeomPoolStateStack.back(); |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 896 | #if GR_DEBUG |
| 897 | bool success = |
| 898 | #endif |
| 899 | fIndexPool->appendIndices(indexCount, |
| 900 | indexArray, |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 901 | &geomPoolState.fPoolIndexBuffer, |
| 902 | &geomPoolState.fPoolStartIndex); |
| 903 | ++fIndexPoolUseCnt; |
bsalomon@google.com | 1c13c96 | 2011-02-14 16:51:21 +0000 | [diff] [blame] | 904 | GR_DEBUGASSERT(success); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 905 | } |
| 906 | |
bsalomon@google.com | 25fb21f | 2011-06-21 18:17:25 +0000 | [diff] [blame] | 907 | void GrGpu::releaseVertexArray() { |
| 908 | // if vertex source was array, we stowed data in the pool |
| 909 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 910 | GrAssert(kArray_GeometrySrcType == geoSrc.fVertexSrc); |
| 911 | size_t bytes = geoSrc.fVertexCount * VertexSize(geoSrc.fVertexLayout); |
| 912 | fVertexPool->putBack(bytes); |
| 913 | --fVertexPoolUseCnt; |
| 914 | } |
| 915 | |
| 916 | void GrGpu::releaseIndexArray() { |
| 917 | // if index source was array, we stowed data in the pool |
| 918 | const GeometrySrcState& geoSrc = this->getGeomSrc(); |
| 919 | GrAssert(kArray_GeometrySrcType == geoSrc.fIndexSrc); |
| 920 | size_t bytes = geoSrc.fIndexCount * sizeof(uint16_t); |
| 921 | fIndexPool->putBack(bytes); |
| 922 | --fIndexPoolUseCnt; |
| 923 | } |
| 924 | |
bsalomon@google.com | d302f14 | 2011-03-03 13:54:13 +0000 | [diff] [blame] | 925 | //////////////////////////////////////////////////////////////////////////////// |
| 926 | |
bsalomon@google.com | 05ef510 | 2011-05-02 21:14:59 +0000 | [diff] [blame] | 927 | const GrGpuStats& GrGpu::getStats() const { |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 928 | return fStats; |
| 929 | } |
| 930 | |
| 931 | void GrGpu::resetStats() { |
| 932 | memset(&fStats, 0, sizeof(fStats)); |
| 933 | } |
| 934 | |
| 935 | void GrGpu::printStats() const { |
| 936 | if (GR_COLLECT_STATS) { |
| 937 | GrPrintf( |
| 938 | "-v-------------------------GPU STATS----------------------------v-\n" |
| 939 | "Stats collection is: %s\n" |
| 940 | "Draws: %04d, Verts: %04d, Indices: %04d\n" |
| 941 | "ProgChanges: %04d, TexChanges: %04d, RTChanges: %04d\n" |
| 942 | "TexCreates: %04d, RTCreates:%04d\n" |
| 943 | "-^--------------------------------------------------------------^-\n", |
| 944 | (GR_COLLECT_STATS ? "ON" : "OFF"), |
| 945 | fStats.fDrawCnt, fStats.fVertexCnt, fStats.fIndexCnt, |
| 946 | fStats.fProgChngCnt, fStats.fTextureChngCnt, fStats.fRenderTargetChngCnt, |
| 947 | fStats.fTextureCreateCnt, fStats.fRenderTargetCreateCnt); |
| 948 | } |
| 949 | } |
| 950 | |
| 951 | //////////////////////////////////////////////////////////////////////////////// |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 952 | const GrSamplerState GrSamplerState::gClampNoFilter( |
| 953 | GrSamplerState::kClamp_WrapMode, |
| 954 | GrSamplerState::kClamp_WrapMode, |
| 955 | GrSamplerState::kNormal_SampleMode, |
bsalomon@google.com | c6cf723 | 2011-02-17 16:43:10 +0000 | [diff] [blame] | 956 | GrMatrix::I(), |
bsalomon@google.com | 6aef1fb | 2011-05-05 12:33:22 +0000 | [diff] [blame] | 957 | GrSamplerState::kNearest_Filter); |
reed@google.com | ac10a2d | 2010-12-22 21:39:39 +0000 | [diff] [blame] | 958 | |
| 959 | |
| 960 | |
| 961 | |