| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "GrResourceProvider.h" | 8 #include "GrResourceProvider.h" |
| 9 | 9 |
| 10 #include "GrGpu.h" | 10 #include "GrGpu.h" |
| 11 #include "GrIndexBuffer.h" | 11 #include "GrIndexBuffer.h" |
| 12 #include "GrPathRendering.h" | 12 #include "GrPathRendering.h" |
| 13 #include "GrRenderTarget.h" | 13 #include "GrRenderTarget.h" |
| 14 #include "GrRenderTargetPriv.h" | 14 #include "GrRenderTargetPriv.h" |
| 15 #include "GrResourceCache.h" | 15 #include "GrResourceCache.h" |
| 16 #include "GrResourceKey.h" | 16 #include "GrResourceKey.h" |
| 17 #include "GrStencilAttachment.h" | 17 #include "GrStencilAttachment.h" |
| 18 #include "GrVertexBuffer.h" | 18 #include "GrVertexBuffer.h" |
| 19 | 19 |
| 20 GR_DECLARE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); | 20 GR_DECLARE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); |
| 21 | 21 |
| 22 GrResourceProvider::GrResourceProvider(GrGpu* gpu, GrResourceCache* cache) : INH
ERITED(gpu, cache) { | 22 GrResourceProvider::GrResourceProvider(GrGpu* gpu, GrResourceCache* cache, GrSin
gleOwner* owner) |
| 23 : INHERITED(gpu, cache, owner) { |
| 23 GR_DEFINE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); | 24 GR_DEFINE_STATIC_UNIQUE_KEY(gQuadIndexBufferKey); |
| 24 fQuadIndexBufferKey = gQuadIndexBufferKey; | 25 fQuadIndexBufferKey = gQuadIndexBufferKey; |
| 25 } | 26 } |
| 26 | 27 |
| 27 const GrIndexBuffer* GrResourceProvider::createInstancedIndexBuffer(const uint16
_t* pattern, | 28 const GrIndexBuffer* GrResourceProvider::createInstancedIndexBuffer(const uint16
_t* pattern, |
| 28 int patternS
ize, | 29 int patternS
ize, |
| 29 int reps, | 30 int reps, |
| 30 int vertCoun
t, | 31 int vertCoun
t, |
| 31 const GrUniq
ueKey& key) { | 32 const GrUniq
ueKey& key) { |
| 32 size_t bufferSize = patternSize * reps * sizeof(uint16_t); | 33 size_t bufferSize = patternSize * reps * sizeof(uint16_t); |
| (...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 220 // FBO. But iOS doesn't allow a stencil-only FBO. It reports uns
upported | 221 // FBO. But iOS doesn't allow a stencil-only FBO. It reports uns
upported |
| 221 // FBO status. | 222 // FBO status. |
| 222 this->gpu()->clearStencil(rt); | 223 this->gpu()->clearStencil(rt); |
| 223 } | 224 } |
| 224 } | 225 } |
| 225 } | 226 } |
| 226 return rt->renderTargetPriv().getStencilAttachment(); | 227 return rt->renderTargetPriv().getStencilAttachment(); |
| 227 } | 228 } |
| 228 | 229 |
| 229 | 230 |
| OLD | NEW |