diff options
author | tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-04-03 10:18:17 +0000 |
---|---|---|
committer | tomhudson@google.com <tomhudson@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-04-03 10:18:17 +0000 |
commit | a9e1824e009015ef2a60491916780e96c220afb8 (patch) | |
tree | 6da5d0496f88a66cc8ba0be4c283030453e876b1 /include | |
parent | 041e2dbc0614e3341e1349fd0e962744a45b6194 (diff) |
SkDraw.h #include cleanup
Removal of SkAutoKern header was already done in r8495; this just
lands the replacement of #includes with forward declarations for
incremental compile speed.
https://codereview.appspot.com/8109043/
git-svn-id: http://skia.googlecode.com/svn/trunk@8504 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkDraw.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/core/SkDraw.h b/include/core/SkDraw.h index 43db02964b..2a8afc4876 100644 --- a/include/core/SkDraw.h +++ b/include/core/SkDraw.h @@ -10,20 +10,20 @@ #ifndef SkDraw_DEFINED #define SkDraw_DEFINED -#include "SkBitmap.h" #include "SkCanvas.h" #include "SkMask.h" -#include "SkMatrix.h" #include "SkPaint.h" -#include "SkRect.h" +class SkBitmap; class SkBounder; class SkClipStack; class SkDevice; +class SkMatrix; class SkPath; class SkRegion; class SkRasterClip; struct SkDrawProcs; +struct SkRect; class SkDraw { public: |