| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 PictureRenderer_DEFINED | 8 #ifndef PictureRenderer_DEFINED |
| 9 #define PictureRenderer_DEFINED | 9 #define PictureRenderer_DEFINED |
| 10 | 10 |
| 11 #include "SkCanvas.h" | 11 #include "SkCanvas.h" |
| 12 #include "SkCountdown.h" | 12 #include "SkCountdown.h" |
| 13 #include "SkDrawFilter.h" | 13 #include "SkDrawFilter.h" |
| 14 #include "SkJSONCPP.h" | 14 #include "SkJSONCPP.h" |
| 15 #include "SkMath.h" | 15 #include "SkMath.h" |
| 16 #include "SkPaint.h" | 16 #include "SkPaint.h" |
| 17 #include "SkPicture.h" | 17 #include "SkPicture.h" |
| 18 #include "SkPictureRecorder.h" |
| 18 #include "SkRect.h" | 19 #include "SkRect.h" |
| 19 #include "SkRefCnt.h" | 20 #include "SkRefCnt.h" |
| 20 #include "SkRunnable.h" | 21 #include "SkRunnable.h" |
| 21 #include "SkString.h" | 22 #include "SkString.h" |
| 22 #include "SkTDArray.h" | 23 #include "SkTDArray.h" |
| 23 #include "SkThreadPool.h" | 24 #include "SkThreadPool.h" |
| 24 #include "SkTileGridPicture.h" | |
| 25 #include "SkTypes.h" | 25 #include "SkTypes.h" |
| 26 | 26 |
| 27 #if SK_SUPPORT_GPU | 27 #if SK_SUPPORT_GPU |
| 28 #include "GrContextFactory.h" | 28 #include "GrContextFactory.h" |
| 29 #include "GrContext.h" | 29 #include "GrContext.h" |
| 30 #endif | 30 #endif |
| 31 | 31 |
| 32 class SkBitmap; | 32 class SkBitmap; |
| 33 class SkCanvas; | 33 class SkCanvas; |
| 34 class SkGLContextHelper; | 34 class SkGLContextHelper; |
| (...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 | 670 |
| 671 typedef PictureRenderer INHERITED; | 671 typedef PictureRenderer INHERITED; |
| 672 }; | 672 }; |
| 673 | 673 |
| 674 extern PictureRenderer* CreateGatherPixelRefsRenderer(); | 674 extern PictureRenderer* CreateGatherPixelRefsRenderer(); |
| 675 extern PictureRenderer* CreatePictureCloneRenderer(); | 675 extern PictureRenderer* CreatePictureCloneRenderer(); |
| 676 | 676 |
| 677 } | 677 } |
| 678 | 678 |
| 679 #endif // PictureRenderer_DEFINED | 679 #endif // PictureRenderer_DEFINED |
| OLD | NEW |