| OLD | NEW |
| 1 | 1 |
| 2 /* | 2 /* |
| 3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
| 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 SkDraw_DEFINED | 10 #ifndef SkDraw_DEFINED |
| 11 #define SkDraw_DEFINED | 11 #define SkDraw_DEFINED |
| 12 | 12 |
| 13 #include "SkBitmap.h" | 13 #include "SkBitmap.h" |
| 14 #include "SkCanvas.h" | 14 #include "SkCanvas.h" |
| 15 #include "SkMask.h" | 15 #include "SkMask.h" |
| 16 #include "SkMatrix.h" | 16 #include "SkMatrix.h" |
| 17 #include "SkPaint.h" | 17 #include "SkPaint.h" |
| 18 #include "SkRect.h" | 18 #include "SkRect.h" |
| 19 #include "SkAutoKern.h" | |
| 20 | 19 |
| 21 class SkBounder; | 20 class SkBounder; |
| 22 class SkClipStack; | 21 class SkClipStack; |
| 23 class SkDevice; | 22 class SkDevice; |
| 24 class SkPath; | 23 class SkPath; |
| 25 class SkRegion; | 24 class SkRegion; |
| 26 class SkRasterClip; | 25 class SkRasterClip; |
| 27 struct SkDrawProcs; | 26 struct SkDrawProcs; |
| 28 | 27 |
| 29 class SkDraw { | 28 class SkDraw { |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 SkDrawProcs* fProcs; // optional | 126 SkDrawProcs* fProcs; // optional |
| 128 | 127 |
| 129 #ifdef SK_DEBUG | 128 #ifdef SK_DEBUG |
| 130 void validate() const; | 129 void validate() const; |
| 131 #else | 130 #else |
| 132 void validate() const {} | 131 void validate() const {} |
| 133 #endif | 132 #endif |
| 134 }; | 133 }; |
| 135 | 134 |
| 136 #endif | 135 #endif |
| OLD | NEW |