| 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 | 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 | 18 #define SK_SUPPORT_LEGACY_FILTERLEVEL_ENUM |
| 19 | 19 |
| 20 class SkAnnotation; | 20 class SkAnnotation; |
| 21 class SkAutoGlyphCache; | 21 class SkAutoGlyphCache; |
| 22 class SkColorFilter; | 22 class SkColorFilter; |
| 23 class SkDescriptor; | 23 class SkDescriptor; |
| 24 struct SkDeviceProperties; | 24 struct SkDeviceProperties; |
| 25 class SkReadBuffer; | 25 class SkReadBuffer; |
| 26 class SkWriteBuffer; | 26 class SkWriteBuffer; |
| 27 struct SkGlyph; | 27 class SkGlyph; |
| 28 struct SkRect; | 28 struct SkRect; |
| 29 class SkGlyphCache; | 29 class SkGlyphCache; |
| 30 class SkImageFilter; | 30 class SkImageFilter; |
| 31 class SkMaskFilter; | 31 class SkMaskFilter; |
| 32 class SkPath; | 32 class SkPath; |
| 33 class SkPathEffect; | 33 class SkPathEffect; |
| 34 struct SkPoint; | 34 struct SkPoint; |
| 35 class SkRasterizer; | 35 class SkRasterizer; |
| 36 class SkShader; | 36 class SkShader; |
| 37 class SkTypeface; | 37 class SkTypeface; |
| (...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1136 friend class GrBitmapTextContext; | 1136 friend class GrBitmapTextContext; |
| 1137 friend class GrDistanceFieldTextContext; | 1137 friend class GrDistanceFieldTextContext; |
| 1138 friend class GrStencilAndCoverTextContext; | 1138 friend class GrStencilAndCoverTextContext; |
| 1139 friend class GrPathRendering; | 1139 friend class GrPathRendering; |
| 1140 friend class GrGLPathRendering; | 1140 friend class GrGLPathRendering; |
| 1141 friend class SkTextToPathIter; | 1141 friend class SkTextToPathIter; |
| 1142 friend class SkCanonicalizePaint; | 1142 friend class SkCanonicalizePaint; |
| 1143 }; | 1143 }; |
| 1144 | 1144 |
| 1145 #endif | 1145 #endif |
| OLD | NEW |