| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 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 SkPaint_DEFINED | 8 #ifndef SkPaint_DEFINED |
| 9 #define SkPaint_DEFINED | 9 #define SkPaint_DEFINED |
| 10 | 10 |
| 11 #include "SkColor.h" | 11 #include "SkColor.h" |
| 12 #include "SkDrawLooper.h" | 12 #include "SkDrawLooper.h" |
| 13 #include "SkFilterQuality.h" | 13 #include "SkFilterQuality.h" |
| 14 #include "SkMatrix.h" | 14 #include "SkMatrix.h" |
| 15 #include "SkXfermode.h" | 15 #include "SkXfermode.h" |
| 16 | 16 |
| 17 // TODO: clean up Skia internals so we can remove this and only keep it for clie
nts | |
| 18 #define SK_SUPPORT_LEGACY_FILTERLEVEL_ENUM | |
| 19 | |
| 20 class SkAnnotation; | 17 class SkAnnotation; |
| 21 class SkAutoGlyphCache; | 18 class SkAutoGlyphCache; |
| 22 class SkColorFilter; | 19 class SkColorFilter; |
| 23 class SkData; | 20 class SkData; |
| 24 class SkDescriptor; | 21 class SkDescriptor; |
| 25 struct SkDeviceProperties; | 22 struct SkDeviceProperties; |
| 26 class SkReadBuffer; | 23 class SkReadBuffer; |
| 27 class SkWriteBuffer; | 24 class SkWriteBuffer; |
| 28 class SkGlyph; | 25 class SkGlyph; |
| 29 struct SkRect; | 26 struct SkRect; |
| (...skipping 1097 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1127 friend class GrBitmapTextContext; | 1124 friend class GrBitmapTextContext; |
| 1128 friend class GrDistanceFieldTextContext; | 1125 friend class GrDistanceFieldTextContext; |
| 1129 friend class GrStencilAndCoverTextContext; | 1126 friend class GrStencilAndCoverTextContext; |
| 1130 friend class GrPathRendering; | 1127 friend class GrPathRendering; |
| 1131 friend class GrGLPathRendering; | 1128 friend class GrGLPathRendering; |
| 1132 friend class SkTextToPathIter; | 1129 friend class SkTextToPathIter; |
| 1133 friend class SkCanonicalizePaint; | 1130 friend class SkCanonicalizePaint; |
| 1134 }; | 1131 }; |
| 1135 | 1132 |
| 1136 #endif | 1133 #endif |
| OLD | NEW |