| 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 | 9 |
| 10 #ifndef GrStencilBuffer_DEFINED | 10 #ifndef GrStencilBuffer_DEFINED |
| 11 #define GrStencilBuffer_DEFINED | 11 #define GrStencilBuffer_DEFINED |
| 12 | 12 |
| 13 #include "GrClipData.h" | 13 #include "GrClip.h" |
| 14 #include "GrGpuResource.h" | 14 #include "GrGpuResource.h" |
| 15 | 15 |
| 16 class GrRenderTarget; | 16 class GrRenderTarget; |
| 17 class GrResourceKey; | 17 class GrResourceKey; |
| 18 | 18 |
| 19 class GrStencilBuffer : public GrGpuResource { | 19 class GrStencilBuffer : public GrGpuResource { |
| 20 public: | 20 public: |
| 21 SK_DECLARE_INST_COUNT(GrStencilBuffer); | 21 SK_DECLARE_INST_COUNT(GrStencilBuffer); |
| 22 | 22 |
| 23 virtual ~GrStencilBuffer() { | 23 virtual ~GrStencilBuffer() { |
| (...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 int fSampleCnt; | 71 int fSampleCnt; |
| 72 | 72 |
| 73 int32_t fLastClipStackGenID; | 73 int32_t fLastClipStackGenID; |
| 74 SkIRect fLastClipStackRect; | 74 SkIRect fLastClipStackRect; |
| 75 SkIPoint fLastClipSpaceOffset; | 75 SkIPoint fLastClipSpaceOffset; |
| 76 | 76 |
| 77 typedef GrGpuResource INHERITED; | 77 typedef GrGpuResource INHERITED; |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 #endif | 80 #endif |
| OLD | NEW |