Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(43)

Side by Side Diff: include/core/SkCanvas.h

Issue 1828433004: Revert of Delete SkImageDecoder (Closed) Base URL: https://skia.googlesource.com/skia.git@fix-animator
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « gyp/images.gyp ('k') | include/core/SkImageDecoder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 SkCanvas_DEFINED 8 #ifndef SkCanvas_DEFINED
9 #define SkCanvas_DEFINED 9 #define SkCanvas_DEFINED
10 10
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 #include "SkBitmap.h" 12 #include "SkBitmap.h"
13 #include "SkDeque.h" 13 #include "SkDeque.h"
14 #include "SkImage.h"
15 #include "SkPaint.h" 14 #include "SkPaint.h"
16 #include "SkRefCnt.h" 15 #include "SkRefCnt.h"
17 #include "SkRegion.h" 16 #include "SkRegion.h"
18 #include "SkSurfaceProps.h" 17 #include "SkSurfaceProps.h"
19 #include "SkXfermode.h" 18 #include "SkXfermode.h"
20 19
21 class GrContext; 20 class GrContext;
22 class GrRenderTarget; 21 class GrRenderTarget;
23 class SkBaseDevice; 22 class SkBaseDevice;
24 class SkCanvasClipVisitor; 23 class SkCanvasClipVisitor;
25 class SkClipStack; 24 class SkClipStack;
26 class SkData; 25 class SkData;
27 class SkDraw; 26 class SkDraw;
28 class SkDrawable; 27 class SkDrawable;
29 class SkDrawFilter; 28 class SkDrawFilter;
29 class SkImage;
30 class SkImageFilter; 30 class SkImageFilter;
31 class SkMetaData; 31 class SkMetaData;
32 class SkPath; 32 class SkPath;
33 class SkPicture; 33 class SkPicture;
34 class SkPixmap; 34 class SkPixmap;
35 class SkRRect; 35 class SkRRect;
36 struct SkRSXform; 36 struct SkRSXform;
37 class SkSurface; 37 class SkSurface;
38 class SkSurface_Base; 38 class SkSurface_Base;
39 class SkTextBlob; 39 class SkTextBlob;
(...skipping 1511 matching lines...) Expand 10 before | Expand all | Expand 10 after
1551 1551
1552 class SkCanvasClipVisitor { 1552 class SkCanvasClipVisitor {
1553 public: 1553 public:
1554 virtual ~SkCanvasClipVisitor(); 1554 virtual ~SkCanvasClipVisitor();
1555 virtual void clipRect(const SkRect&, SkRegion::Op, bool antialias) = 0; 1555 virtual void clipRect(const SkRect&, SkRegion::Op, bool antialias) = 0;
1556 virtual void clipRRect(const SkRRect&, SkRegion::Op, bool antialias) = 0; 1556 virtual void clipRRect(const SkRRect&, SkRegion::Op, bool antialias) = 0;
1557 virtual void clipPath(const SkPath&, SkRegion::Op, bool antialias) = 0; 1557 virtual void clipPath(const SkPath&, SkRegion::Op, bool antialias) = 0;
1558 }; 1558 };
1559 1559
1560 #endif 1560 #endif
OLDNEW
« no previous file with comments | « gyp/images.gyp ('k') | include/core/SkImageDecoder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698