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

Side by Side Diff: include/effects/SkModeColorFilter.h

Issue 1022673007: Revert of remove colorfilter native-565 support. complicating w/ no real value. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 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 | « include/effects/SkColorMatrixFilter.h ('k') | src/core/SkColorFilter.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 * Copyright 2015 Google Inc. 2 * Copyright 2015 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 SkModeColorFilter_DEFINED 8 #ifndef SkModeColorFilter_DEFINED
9 #define SkModeColorFilter_DEFINED 9 #define SkModeColorFilter_DEFINED
10 10
(...skipping 10 matching lines...) Expand all
21 this->updateCache(); 21 this->updateCache();
22 }; 22 };
23 23
24 SkColor getColor() const { return fColor; } 24 SkColor getColor() const { return fColor; }
25 SkXfermode::Mode getMode() const { return fMode; } 25 SkXfermode::Mode getMode() const { return fMode; }
26 SkPMColor getPMColor() const { return fPMColor; } 26 SkPMColor getPMColor() const { return fPMColor; }
27 27
28 bool asColorMode(SkColor*, SkXfermode::Mode*) const SK_OVERRIDE; 28 bool asColorMode(SkColor*, SkXfermode::Mode*) const SK_OVERRIDE;
29 uint32_t getFlags() const SK_OVERRIDE; 29 uint32_t getFlags() const SK_OVERRIDE;
30 void filterSpan(const SkPMColor shader[], int count, SkPMColor result[]) con st SK_OVERRIDE; 30 void filterSpan(const SkPMColor shader[], int count, SkPMColor result[]) con st SK_OVERRIDE;
31 void filterSpan16(const uint16_t shader[], int count, uint16_t result[]) con st SK_OVERRIDE;
31 32
32 #ifndef SK_IGNORE_TO_STRING 33 #ifndef SK_IGNORE_TO_STRING
33 void toString(SkString* str) const SK_OVERRIDE { 34 void toString(SkString* str) const SK_OVERRIDE {
34 str->append("SkModeColorFilter: color: 0x"); 35 str->append("SkModeColorFilter: color: 0x");
35 str->appendHex(fColor); 36 str->appendHex(fColor);
36 str->append(" mode: "); 37 str->append(" mode: ");
37 str->append(SkXfermode::ModeName(fMode)); 38 str->append(SkXfermode::ModeName(fMode));
38 } 39 }
39 #endif 40 #endif
40 41
41 #if SK_SUPPORT_GPU 42 #if SK_SUPPORT_GPU
42 bool asFragmentProcessors(GrContext*, SkTDArray<GrFragmentProcessor*>*) cons t SK_OVERRIDE; 43 bool asFragmentProcessors(GrContext*, SkTDArray<GrFragmentProcessor*>*) cons t SK_OVERRIDE;
43 #endif 44 #endif
44 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkModeColorFilter) 45 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkModeColorFilter)
45 46
46 protected: 47 protected:
47 void flatten(SkWriteBuffer&) const SK_OVERRIDE; 48 void flatten(SkWriteBuffer&) const SK_OVERRIDE;
48 49
49 private: 50 private:
50 SkColor fColor; 51 SkColor fColor;
51 SkXfermode::Mode fMode; 52 SkXfermode::Mode fMode;
52 // cache 53 // cache
53 SkPMColor fPMColor; 54 SkPMColor fPMColor;
54 SkXfermodeProc fProc; 55 SkXfermodeProc fProc;
56 SkXfermodeProc16 fProc16;
55 57
56 void updateCache(); 58 void updateCache();
57 59
58 typedef SkColorFilter INHERITED; 60 typedef SkColorFilter INHERITED;
59 }; 61 };
60 62
61 #endif 63 #endif
OLDNEW
« no previous file with comments | « include/effects/SkColorMatrixFilter.h ('k') | src/core/SkColorFilter.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698