| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2011 Google Inc. | 2 * Copyright 2011 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 | 8 |
| 9 #ifndef GrGLStencilBuffer_DEFINED | 9 #ifndef GrGLStencilBuffer_DEFINED |
| 10 #define GrGLStencilBuffer_DEFINED | 10 #define GrGLStencilBuffer_DEFINED |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 | 25 |
| 26 GrGLStencilBuffer(GrGpu* gpu, | 26 GrGLStencilBuffer(GrGpu* gpu, |
| 27 bool isWrapped, | 27 bool isWrapped, |
| 28 GrGLint rbid, | 28 GrGLint rbid, |
| 29 int width, int height, | 29 int width, int height, |
| 30 int sampleCnt, | 30 int sampleCnt, |
| 31 const Format& format) | 31 const Format& format) |
| 32 : GrStencilBuffer(gpu, isWrapped, width, height, format.fStencilBits, sa
mpleCnt) | 32 : GrStencilBuffer(gpu, isWrapped, width, height, format.fStencilBits, sa
mpleCnt) |
| 33 , fFormat(format) | 33 , fFormat(format) |
| 34 , fRenderbufferID(rbid) { | 34 , fRenderbufferID(rbid) { |
| 35 this->registerWithCache(); | |
| 36 } | 35 } |
| 37 | 36 |
| 38 virtual ~GrGLStencilBuffer(); | 37 virtual ~GrGLStencilBuffer(); |
| 39 | 38 |
| 40 virtual size_t gpuMemorySize() const SK_OVERRIDE; | 39 virtual size_t gpuMemorySize() const SK_OVERRIDE; |
| 41 | 40 |
| 42 GrGLuint renderbufferID() const { | 41 GrGLuint renderbufferID() const { |
| 43 return fRenderbufferID; | 42 return fRenderbufferID; |
| 44 } | 43 } |
| 45 | 44 |
| 46 const Format& format() const { return fFormat; } | 45 const Format& format() const { return fFormat; } |
| 47 | 46 |
| 48 protected: | 47 protected: |
| 49 // overrides of GrResource | 48 // overrides of GrResource |
| 50 virtual void onRelease() SK_OVERRIDE; | 49 virtual void onRelease() SK_OVERRIDE; |
| 51 virtual void onAbandon() SK_OVERRIDE; | 50 virtual void onAbandon() SK_OVERRIDE; |
| 52 | 51 |
| 53 private: | 52 private: |
| 54 Format fFormat; | 53 Format fFormat; |
| 55 // may be zero for external SBs associated with external RTs | 54 // may be zero for external SBs associated with external RTs |
| 56 // (we don't require the client to give us the id, just tell | 55 // (we don't require the client to give us the id, just tell |
| 57 // us how many bits of stencil there are). | 56 // us how many bits of stencil there are). |
| 58 GrGLuint fRenderbufferID; | 57 GrGLuint fRenderbufferID; |
| 59 | 58 |
| 60 typedef GrStencilBuffer INHERITED; | 59 typedef GrStencilBuffer INHERITED; |
| 61 }; | 60 }; |
| 62 | 61 |
| 63 #endif | 62 #endif |
| OLD | NEW |