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

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

Issue 1388113002: Bye bye processor data manager (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: remove files Created 5 years, 2 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/SkMatrixConvolutionImageFilter.h ('k') | include/effects/SkPerlinNoiseShader.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 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 21 matching lines...) Expand all
32 #ifndef SK_IGNORE_TO_STRING 32 #ifndef SK_IGNORE_TO_STRING
33 void toString(SkString* str) const override { 33 void toString(SkString* str) const override {
34 str->append("SkModeColorFilter: color: 0x"); 34 str->append("SkModeColorFilter: color: 0x");
35 str->appendHex(fColor); 35 str->appendHex(fColor);
36 str->append(" mode: "); 36 str->append(" mode: ");
37 str->append(SkXfermode::ModeName(fMode)); 37 str->append(SkXfermode::ModeName(fMode));
38 } 38 }
39 #endif 39 #endif
40 40
41 #if SK_SUPPORT_GPU 41 #if SK_SUPPORT_GPU
42 const GrFragmentProcessor* asFragmentProcessor(GrContext*, 42 const GrFragmentProcessor* asFragmentProcessor(GrContext*) const override;
43 GrProcessorDataManager*) cons t override;
44 #endif 43 #endif
45 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkModeColorFilter) 44 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkModeColorFilter)
46 45
47 protected: 46 protected:
48 void flatten(SkWriteBuffer&) const override; 47 void flatten(SkWriteBuffer&) const override;
49 48
50 private: 49 private:
51 SkColor fColor; 50 SkColor fColor;
52 SkXfermode::Mode fMode; 51 SkXfermode::Mode fMode;
53 // cache 52 // cache
54 SkPMColor fPMColor; 53 SkPMColor fPMColor;
55 SkXfermodeProc fProc; 54 SkXfermodeProc fProc;
56 55
57 void updateCache(); 56 void updateCache();
58 57
59 typedef SkColorFilter INHERITED; 58 typedef SkColorFilter INHERITED;
60 }; 59 };
61 60
62 #endif 61 #endif
OLDNEW
« no previous file with comments | « include/effects/SkMatrixConvolutionImageFilter.h ('k') | include/effects/SkPerlinNoiseShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698