blob: 5a25814c6ba854932bc007f637708172e0486a8b [file] [log] [blame]
reed@android.com8a1c16f2008-12-17 15:59:43 +00001/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002 * Copyright 2006 The Android Open Source Project
reed@android.com8a1c16f2008-12-17 15:59:43 +00003 *
epoger@google.comec3ed6a2011-07-28 14:26:00 +00004 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
reed@android.com8a1c16f2008-12-17 15:59:43 +00006 */
7
8#ifndef SkColorFilter_DEFINED
9#define SkColorFilter_DEFINED
10
11#include "SkColor.h"
12#include "SkFlattenable.h"
reedcff10b22015-03-03 06:41:45 -080013#include "SkTDArray.h"
reed@android.com845fdac2009-06-23 03:01:32 +000014#include "SkXfermode.h"
reed@android.com8a1c16f2008-12-17 15:59:43 +000015
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000016class SkBitmap;
joshualittb0a8a372014-09-23 09:50:21 -070017class GrProcessor;
bsalomon@google.com67e78c92012-10-17 13:36:14 +000018class GrContext;
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000019
reed@google.comfb6deed2013-10-10 17:35:58 +000020/**
21 * ColorFilters are optional objects in the drawing pipeline. When present in
22 * a paint, they are called with the "src" colors, and return new colors, which
23 * are then passed onto the next stage (either ImageFilter or Xfermode).
24 *
25 * All subclasses are required to be reentrant-safe : it must be legal to share
26 * the same instance between several threads.
27 */
bsalomon@google.com8c3ff172011-04-15 15:42:24 +000028class SK_API SkColorFilter : public SkFlattenable {
reed@android.com8a1c16f2008-12-17 15:59:43 +000029public:
robertphillips@google.com0456e0b2012-06-27 14:03:26 +000030 SK_DECLARE_INST_COUNT(SkColorFilter)
31
reed@google.com43c50c82011-04-14 15:50:52 +000032 /**
33 * If the filter can be represented by a source color plus Mode, this
34 * returns true, and sets (if not NULL) the color and mode appropriately.
35 * If not, this returns false and ignores the parameters.
36 */
reed@google.combada6442012-12-17 20:21:44 +000037 virtual bool asColorMode(SkColor* color, SkXfermode::Mode* mode) const;
reed@google.com43c50c82011-04-14 15:50:52 +000038
senorblanco@chromium.orge5ff3ce2011-12-20 20:58:18 +000039 /**
40 * If the filter can be represented by a 5x4 matrix, this
41 * returns true, and sets the matrix appropriately.
42 * If not, this returns false and ignores the parameter.
43 */
reed@google.combada6442012-12-17 20:21:44 +000044 virtual bool asColorMatrix(SkScalar matrix[20]) const;
senorblanco@chromium.orge5ff3ce2011-12-20 20:58:18 +000045
reed@google.com71918402012-01-05 17:24:35 +000046 /**
47 * If the filter can be represented by per-component table, return true,
48 * and if table is not null, copy the bitmap containing the table into it.
49 *
50 * The table bitmap will be in SkBitmap::kA8_Config. Each row corresponding
51 * to each component in ARGB order. e.g. row[0] == alpha, row[1] == red,
52 * etc. To transform a color, you (logically) perform the following:
53 *
54 * a' = *table.getAddr8(a, 0);
55 * r' = *table.getAddr8(r, 1);
56 * g' = *table.getAddr8(g, 2);
57 * b' = *table.getAddr8(b, 3);
58 *
59 * The original component value is the horizontal index for a given row,
60 * and the stored value at that index is the new value for that component.
61 */
bsalomon@google.comb2ad1012012-10-17 15:00:32 +000062 virtual bool asComponentTable(SkBitmap* table) const;
reed@google.com71918402012-01-05 17:24:35 +000063
reed@android.com8a1c16f2008-12-17 15:59:43 +000064 /** Called with a scanline of colors, as if there was a shader installed.
65 The implementation writes out its filtered version into result[].
66 Note: shader and result may be the same buffer.
67 @param src array of colors, possibly generated by a shader
68 @param count the number of entries in the src[] and result[] arrays
69 @param result written by the filter
70 */
71 virtual void filterSpan(const SkPMColor src[], int count,
reed@google.combada6442012-12-17 20:21:44 +000072 SkPMColor result[]) const = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000073 /** Called with a scanline of colors, as if there was a shader installed.
74 The implementation writes out its filtered version into result[].
75 Note: shader and result may be the same buffer.
76 @param src array of colors, possibly generated by a shader
77 @param count the number of entries in the src[] and result[] arrays
78 @param result written by the filter
79 */
80 virtual void filterSpan16(const uint16_t shader[], int count,
reed@google.combada6442012-12-17 20:21:44 +000081 uint16_t result[]) const;
reed@android.com8a1c16f2008-12-17 15:59:43 +000082
83 enum Flags {
84 /** If set the filter methods will not change the alpha channel of the
85 colors.
86 */
87 kAlphaUnchanged_Flag = 0x01,
88 /** If set, this subclass implements filterSpan16(). If this flag is
89 set, then kAlphaUnchanged_Flag must also be set.
90 */
91 kHasFilter16_Flag = 0x02
92 };
93
94 /** Returns the flags for this filter. Override in subclasses to return
95 custom flags.
96 */
reed@google.combada6442012-12-17 20:21:44 +000097 virtual uint32_t getFlags() const { return 0; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000098
reed@google.com6b7aee32011-04-19 18:36:09 +000099 /**
reed8a8d8412015-03-02 13:46:03 -0800100 * If this subclass can optimally createa composition with the inner filter, return it as
101 * a new filter (which the caller must unref() when it is done). If no such optimization
102 * is known, return NULL.
103 *
104 * e.g. result(color) == this_filter(inner(color))
105 */
106 virtual SkColorFilter* newComposed(const SkColorFilter* /*inner*/) const { return NULL; }
107
108 /**
reed@google.com6b7aee32011-04-19 18:36:09 +0000109 * Apply this colorfilter to the specified SkColor. This routine handles
110 * converting to SkPMColor, calling the filter, and then converting back
111 * to SkColor. This method is not virtual, but will call filterSpan()
112 * which is virtual.
113 */
reed@google.combada6442012-12-17 20:21:44 +0000114 SkColor filterColor(SkColor) const;
tomhudson@google.com1447c6f2011-04-27 14:09:52 +0000115
reed@android.com845fdac2009-06-23 03:01:32 +0000116 /** Create a colorfilter that uses the specified color and mode.
117 If the Mode is DST, this function will return NULL (since that
reed@android.com8a1c16f2008-12-17 15:59:43 +0000118 mode will have no effect on the result).
reed@android.com845fdac2009-06-23 03:01:32 +0000119 @param c The source color used with the specified mode
120 @param mode The xfermode mode that is applied to each color in
reed@android.com8a1c16f2008-12-17 15:59:43 +0000121 the colorfilter's filterSpan[16,32] methods
reed@android.com845fdac2009-06-23 03:01:32 +0000122 @return colorfilter object that applies the src color and mode,
123 or NULL if the mode will have no effect.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000124 */
reed@android.com845fdac2009-06-23 03:01:32 +0000125 static SkColorFilter* CreateModeFilter(SkColor c, SkXfermode::Mode mode);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000126
reed@android.com8a1c16f2008-12-17 15:59:43 +0000127 /** Create a colorfilter that multiplies the RGB channels by one color, and
128 then adds a second color, pinning the result for each component to
129 [0..255]. The alpha components of the mul and add arguments
130 are ignored.
131 */
132 static SkColorFilter* CreateLightingFilter(SkColor mul, SkColor add);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000133
reeddb873d82015-03-01 19:53:47 -0800134 /** Construct a colorfilter whose effect is to first apply the inner filter and then apply
135 * the outer filter to the result of the inner's.
136 * The reference counts for outer and inner are incremented.
137 */
138 static SkColorFilter* CreateComposeFilter(SkColorFilter* outer, SkColorFilter* inner);
139
reedcff10b22015-03-03 06:41:45 -0800140 /**
141 * A subclass may implement this factory function to work with the GPU backend.
142 * If it returns true, then 1 or more fragment processors will have been appended to the
143 * array, each of which has been ref'd, so that the caller is responsible for calling unref()
144 * on them when they are finished. If more than one processor is appended, they will be
145 * applied in FIFO order.
146 *
reedb7affb52015-03-04 13:30:50 -0800147 * The fragment processor(s) must each return their color as a premul normalized value
148 * e.g. each component between [0..1] and each color component <= alpha.
149 *
reedcff10b22015-03-03 06:41:45 -0800150 * If the subclass returns false, then it should not modify the array at all.
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000151 */
reedcff10b22015-03-03 06:41:45 -0800152 virtual bool asFragmentProcessors(GrContext*, SkTDArray<GrFragmentProcessor*>*) const {
153 return false;
154 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000155
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +0000156 SK_TO_STRING_PUREVIRT()
robertphillips@google.com1202c2a2013-05-23 14:00:17 +0000157
djsollen@google.coma2ca41e2012-03-23 19:00:34 +0000158 SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP()
commit-bot@chromium.orgc0b7e102013-10-23 17:06:21 +0000159 SK_DEFINE_FLATTENABLE_TYPE(SkColorFilter)
160
reed@android.com8a1c16f2008-12-17 15:59:43 +0000161protected:
162 SkColorFilter() {}
tomhudson@google.com1447c6f2011-04-27 14:09:52 +0000163
reed@android.com8a1c16f2008-12-17 15:59:43 +0000164private:
165 typedef SkFlattenable INHERITED;
166};
167
reed@android.com8a1c16f2008-12-17 15:59:43 +0000168#endif