| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 Google Inc. | 2 * Copyright 2016 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 #ifndef SkSpecialImage_DEFINED | 8 #ifndef SkSpecialImage_DEFINED |
| 9 #define SkSpecialImage_DEFINED | 9 #define SkSpecialImage_DEFINED |
| 10 | 10 |
| 11 #include "SkNextID.h" | 11 #include "SkNextID.h" |
| 12 #include "SkRefCnt.h" | 12 #include "SkRefCnt.h" |
| 13 #include "SkSurfaceProps.h" | 13 #include "SkSurfaceProps.h" |
| 14 | 14 |
| 15 // remove this when internal_getProxy goes away (see skbug.com/4965) | |
| 16 #include "SkImageFilter.h" | |
| 17 | |
| 18 #include "SkImageInfo.h" // for SkAlphaType | 15 #include "SkImageInfo.h" // for SkAlphaType |
| 19 | 16 |
| 20 class GrContext; | 17 class GrContext; |
| 21 class GrTexture; | 18 class GrTexture; |
| 22 class SkBitmap; | 19 class SkBitmap; |
| 23 class SkCanvas; | 20 class SkCanvas; |
| 24 class SkImage; | 21 class SkImage; |
| 25 struct SkImageInfo; | 22 struct SkImageInfo; |
| 26 class SkPaint; | 23 class SkPaint; |
| 27 class SkPixmap; | 24 class SkPixmap; |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 | 143 |
| 147 private: | 144 private: |
| 148 const SkSurfaceProps fProps; | 145 const SkSurfaceProps fProps; |
| 149 const SkIRect fSubset; | 146 const SkIRect fSubset; |
| 150 const uint32_t fUniqueID; | 147 const uint32_t fUniqueID; |
| 151 | 148 |
| 152 typedef SkRefCnt INHERITED; | 149 typedef SkRefCnt INHERITED; |
| 153 }; | 150 }; |
| 154 | 151 |
| 155 #endif | 152 #endif |
| OLD | NEW |