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

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

Issue 1719773002: clean-up dead code (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 10 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/effects/SkArithmeticMode.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 2011 Google Inc. 2 * Copyright 2011 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 SkArithmeticMode_DEFINED 8 #ifndef SkArithmeticMode_DEFINED
9 #define SkArithmeticMode_DEFINED 9 #define SkArithmeticMode_DEFINED
10 10
11 #include "SkFlattenable.h" 11 #include "SkFlattenable.h"
12 #include "SkScalar.h" 12 #include "SkScalar.h"
13 13
14 class SkXfermode; 14 class SkXfermode;
15 15
16 class SK_API SkArithmeticMode { 16 class SK_API SkArithmeticMode {
17 public: 17 public:
18 /** 18 /**
19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4] 19 * result = clamp[k1 * src * dst + k2 * src + k3 * dst + k4]
20 * 20 *
21 * src and dst are treated as being [0.0 .. 1.0]. The polynomial is
22 * evaluated on their unpremultiplied components.
23 *
24 * k1=k2=k3=0, k4=1.0 results in returning opaque white 21 * k1=k2=k3=0, k4=1.0 results in returning opaque white
25 * k1=k3=k4=0, k2=1.0 results in returning the src 22 * k1=k3=k4=0, k2=1.0 results in returning the src
26 * k1=k2=k4=0, k3=1.0 results in returning the dst 23 * k1=k2=k4=0, k3=1.0 results in returning the dst
27 */ 24 */
28 static SkXfermode* Create(SkScalar k1, SkScalar k2, 25 static SkXfermode* Create(SkScalar k1, SkScalar k2,
29 SkScalar k3, SkScalar k4, 26 SkScalar k3, SkScalar k4,
30 bool enforcePMColor = true); 27 bool enforcePMColor = true);
31 28
32 SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP(); 29 SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP();
33 30
34 private: 31 private:
35 SkArithmeticMode(); // can't be instantiated 32 SkArithmeticMode(); // can't be instantiated
36 }; 33 };
37 34
38 #endif 35 #endif
OLDNEW
« no previous file with comments | « no previous file | src/effects/SkArithmeticMode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698