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

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

Issue 960783003: Add image as a draw type that can be filtered Base URL: https://skia.googlesource.com/skia.git@skimage-filters-04-snapshot-devices-and-use-snapshots-in-skcanvas
Patch Set: rebase Created 5 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 | « no previous file | src/core/SkCanvas.cpp » ('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 /* 2 /*
3 * Copyright 2011 The Android Open Source Project 3 * Copyright 2011 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 SkDrawFilter_DEFINED 10 #ifndef SkDrawFilter_DEFINED
(...skipping 17 matching lines...) Expand all
28 enum Type { 28 enum Type {
29 kPaint_Type, 29 kPaint_Type,
30 kPoint_Type, 30 kPoint_Type,
31 kLine_Type, 31 kLine_Type,
32 kBitmap_Type, 32 kBitmap_Type,
33 kRect_Type, 33 kRect_Type,
34 kRRect_Type, 34 kRRect_Type,
35 kOval_Type, 35 kOval_Type,
36 kPath_Type, 36 kPath_Type,
37 kText_Type, 37 kText_Type,
38 kImage_Type,
38 }; 39 };
39 40
40 enum { 41 enum {
41 kTypeCount = kText_Type + 1 42 kTypeCount = kImage_Type + 1
42 }; 43 };
43 44
44 /** 45 /**
45 * Called with the paint that will be used to draw the specified type. 46 * Called with the paint that will be used to draw the specified type.
46 * The implementation may modify the paint as they wish. If filter() 47 * The implementation may modify the paint as they wish. If filter()
47 * returns false, the draw will be skipped. 48 * returns false, the draw will be skipped.
48 */ 49 */
49 virtual bool filter(SkPaint*, Type) = 0; 50 virtual bool filter(SkPaint*, Type) = 0;
50 51
51 private: 52 private:
52 typedef SkRefCnt INHERITED; 53 typedef SkRefCnt INHERITED;
53 }; 54 };
54 55
55 #endif 56 #endif
OLDNEW
« no previous file with comments | « no previous file | src/core/SkCanvas.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698