OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2011 Google Inc. | 3 * Copyright 2011 Google Inc. |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 #include "GrStencilBuffer.h" | 9 #include "GrStencilBuffer.h" |
10 | 10 |
11 #include "GrContext.h" | 11 #include "GrContext.h" |
12 #include "GrGpu.h" | 12 #include "GrGpu.h" |
13 #include "GrResourceCache2.h" | 13 #include "GrResourceCache2.h" |
14 | 14 |
15 void GrStencilBuffer::transferToCache() { | 15 void GrStencilBuffer::transferToCache() { |
| 16 SkASSERT(!this->cacheAccess().isInCache()); |
| 17 |
16 this->getGpu()->getContext()->addStencilBuffer(this); | 18 this->getGpu()->getContext()->addStencilBuffer(this); |
17 } | 19 } |
18 | 20 |
19 namespace { | 21 namespace { |
20 // we should never have more than one stencil buffer with same combo of (width,h
eight,samplecount) | 22 // we should never have more than one stencil buffer with same combo of (width,h
eight,samplecount) |
21 void gen_cache_id(int width, int height, int sampleCnt, GrCacheID* cacheID) { | 23 void gen_cache_id(int width, int height, int sampleCnt, GrCacheID* cacheID) { |
22 static const GrCacheID::Domain gStencilBufferDomain = GrCacheID::GenerateDom
ain(); | 24 static const GrCacheID::Domain gStencilBufferDomain = GrCacheID::GenerateDom
ain(); |
23 GrCacheID::Key key; | 25 GrCacheID::Key key; |
24 uint32_t* keyData = key.fData32; | 26 uint32_t* keyData = key.fData32; |
25 keyData[0] = width; | 27 keyData[0] = width; |
(...skipping 10 matching lines...) Expand all Loading... |
36 int sampleCnt) { | 38 int sampleCnt) { |
37 // All SBs are created internally to attach to RTs so they all use the same
domain. | 39 // All SBs are created internally to attach to RTs so they all use the same
domain. |
38 static const GrResourceKey::ResourceType gStencilBufferResourceType = | 40 static const GrResourceKey::ResourceType gStencilBufferResourceType = |
39 GrResourceKey::GenerateResourceType(); | 41 GrResourceKey::GenerateResourceType(); |
40 GrCacheID id; | 42 GrCacheID id; |
41 gen_cache_id(width, height, sampleCnt, &id); | 43 gen_cache_id(width, height, sampleCnt, &id); |
42 | 44 |
43 // we don't use any flags for SBs currently. | 45 // we don't use any flags for SBs currently. |
44 return GrResourceKey(id, gStencilBufferResourceType, 0); | 46 return GrResourceKey(id, gStencilBufferResourceType, 0); |
45 } | 47 } |
OLD | NEW |