blob: a5a1a4c0cc546d8229e4c3481a0212cbd52af696 [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
reedfb8c1fc2015-08-04 18:44:56 -070016class GrContext;
bungemand3ebb482015-08-05 13:57:49 -070017class GrFragmentProcessor;
reedfb8c1fc2015-08-04 18:44:56 -070018class GrProcessorDataManager;
bungemand3ebb482015-08-05 13:57:49 -070019class SkBitmap;
djsollen@google.comc73dd5c2012-08-07 15:54:32 +000020
reed@google.comfb6deed2013-10-10 17:35:58 +000021/**
22 * ColorFilters are optional objects in the drawing pipeline. When present in
23 * a paint, they are called with the "src" colors, and return new colors, which
24 * are then passed onto the next stage (either ImageFilter or Xfermode).
25 *
26 * All subclasses are required to be reentrant-safe : it must be legal to share
27 * the same instance between several threads.
28 */
bsalomon@google.com8c3ff172011-04-15 15:42:24 +000029class SK_API SkColorFilter : public SkFlattenable {
reed@android.com8a1c16f2008-12-17 15:59:43 +000030public:
reed@google.com43c50c82011-04-14 15:50:52 +000031 /**
32 * If the filter can be represented by a source color plus Mode, this
33 * returns true, and sets (if not NULL) the color and mode appropriately.
34 * If not, this returns false and ignores the parameters.
35 */
reed@google.combada6442012-12-17 20:21:44 +000036 virtual bool asColorMode(SkColor* color, SkXfermode::Mode* mode) const;
reed@google.com43c50c82011-04-14 15:50:52 +000037
senorblanco@chromium.orge5ff3ce2011-12-20 20:58:18 +000038 /**
39 * If the filter can be represented by a 5x4 matrix, this
40 * returns true, and sets the matrix appropriately.
41 * If not, this returns false and ignores the parameter.
42 */
reed@google.combada6442012-12-17 20:21:44 +000043 virtual bool asColorMatrix(SkScalar matrix[20]) const;
senorblanco@chromium.orge5ff3ce2011-12-20 20:58:18 +000044
reed@google.com71918402012-01-05 17:24:35 +000045 /**
46 * If the filter can be represented by per-component table, return true,
47 * and if table is not null, copy the bitmap containing the table into it.
48 *
49 * The table bitmap will be in SkBitmap::kA8_Config. Each row corresponding
50 * to each component in ARGB order. e.g. row[0] == alpha, row[1] == red,
51 * etc. To transform a color, you (logically) perform the following:
52 *
53 * a' = *table.getAddr8(a, 0);
54 * r' = *table.getAddr8(r, 1);
55 * g' = *table.getAddr8(g, 2);
56 * b' = *table.getAddr8(b, 3);
57 *
58 * The original component value is the horizontal index for a given row,
59 * and the stored value at that index is the new value for that component.
60 */
bsalomon@google.comb2ad1012012-10-17 15:00:32 +000061 virtual bool asComponentTable(SkBitmap* table) const;
reed@google.com71918402012-01-05 17:24:35 +000062
reed@android.com8a1c16f2008-12-17 15:59:43 +000063 /** Called with a scanline of colors, as if there was a shader installed.
64 The implementation writes out its filtered version into result[].
65 Note: shader and result may be the same buffer.
66 @param src array of colors, possibly generated by a shader
67 @param count the number of entries in the src[] and result[] arrays
68 @param result written by the filter
69 */
reed62a320c2015-03-24 06:35:23 -070070 virtual void filterSpan(const SkPMColor src[], int count, SkPMColor result[]) const = 0;
reed@android.com8a1c16f2008-12-17 15:59:43 +000071
72 enum Flags {
reed62a320c2015-03-24 06:35:23 -070073 /** If set the filter methods will not change the alpha channel of the colors.
reed@android.com8a1c16f2008-12-17 15:59:43 +000074 */
75 kAlphaUnchanged_Flag = 0x01,
reed@android.com8a1c16f2008-12-17 15:59:43 +000076 };
77
reed62a320c2015-03-24 06:35:23 -070078 /** Returns the flags for this filter. Override in subclasses to return custom flags.
reed@android.com8a1c16f2008-12-17 15:59:43 +000079 */
reed@google.combada6442012-12-17 20:21:44 +000080 virtual uint32_t getFlags() const { return 0; }
reed@android.com8a1c16f2008-12-17 15:59:43 +000081
reed@google.com6b7aee32011-04-19 18:36:09 +000082 /**
reed8a8d8412015-03-02 13:46:03 -080083 * If this subclass can optimally createa composition with the inner filter, return it as
84 * a new filter (which the caller must unref() when it is done). If no such optimization
85 * is known, return NULL.
86 *
87 * e.g. result(color) == this_filter(inner(color))
88 */
89 virtual SkColorFilter* newComposed(const SkColorFilter* /*inner*/) const { return NULL; }
90
91 /**
reed@google.com6b7aee32011-04-19 18:36:09 +000092 * Apply this colorfilter to the specified SkColor. This routine handles
93 * converting to SkPMColor, calling the filter, and then converting back
94 * to SkColor. This method is not virtual, but will call filterSpan()
95 * which is virtual.
96 */
reed@google.combada6442012-12-17 20:21:44 +000097 SkColor filterColor(SkColor) const;
tomhudson@google.com1447c6f2011-04-27 14:09:52 +000098
reed@android.com845fdac2009-06-23 03:01:32 +000099 /** Create a colorfilter that uses the specified color and mode.
100 If the Mode is DST, this function will return NULL (since that
reed@android.com8a1c16f2008-12-17 15:59:43 +0000101 mode will have no effect on the result).
reed@android.com845fdac2009-06-23 03:01:32 +0000102 @param c The source color used with the specified mode
103 @param mode The xfermode mode that is applied to each color in
reed@android.com8a1c16f2008-12-17 15:59:43 +0000104 the colorfilter's filterSpan[16,32] methods
reed@android.com845fdac2009-06-23 03:01:32 +0000105 @return colorfilter object that applies the src color and mode,
106 or NULL if the mode will have no effect.
reed@android.com8a1c16f2008-12-17 15:59:43 +0000107 */
reed@android.com845fdac2009-06-23 03:01:32 +0000108 static SkColorFilter* CreateModeFilter(SkColor c, SkXfermode::Mode mode);
reed@android.com8a1c16f2008-12-17 15:59:43 +0000109
reed@android.com8a1c16f2008-12-17 15:59:43 +0000110 /** Create a colorfilter that multiplies the RGB channels by one color, and
111 then adds a second color, pinning the result for each component to
112 [0..255]. The alpha components of the mul and add arguments
113 are ignored.
114 */
115 static SkColorFilter* CreateLightingFilter(SkColor mul, SkColor add);
rmistry@google.comfbfcd562012-08-23 18:09:54 +0000116
reeddb873d82015-03-01 19:53:47 -0800117 /** Construct a colorfilter whose effect is to first apply the inner filter and then apply
118 * the outer filter to the result of the inner's.
119 * The reference counts for outer and inner are incremented.
reeddc812222015-03-05 07:21:02 -0800120 *
121 * Due to internal limits, it is possible that this will return NULL, so the caller must
122 * always check.
reeddb873d82015-03-01 19:53:47 -0800123 */
124 static SkColorFilter* CreateComposeFilter(SkColorFilter* outer, SkColorFilter* inner);
125
reedcff10b22015-03-03 06:41:45 -0800126 /**
bsalomone25eea42015-09-29 06:38:55 -0700127 * A subclass may implement this factory function to work with the GPU backend. It returns
128 * a GrFragmentProcessor that implemets the color filter in GPU shader code.
reedcff10b22015-03-03 06:41:45 -0800129 *
bsalomone25eea42015-09-29 06:38:55 -0700130 * The fragment processor receives a premultiplied input color and produces a premultiplied
131 * output color.
reedb7affb52015-03-04 13:30:50 -0800132 *
bsalomone25eea42015-09-29 06:38:55 -0700133 * A null return indicates that the color filter isn't implemented for the GPU backend.
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000134 */
bsalomone25eea42015-09-29 06:38:55 -0700135 virtual const GrFragmentProcessor* asFragmentProcessor(GrContext*,
136 GrProcessorDataManager*) const {
137 return nullptr;
reedcff10b22015-03-03 06:41:45 -0800138 }
bsalomon@google.com67e78c92012-10-17 13:36:14 +0000139
senorblanco0abdf762015-08-20 11:10:41 -0700140 bool affectsTransparentBlack() const {
141 return this->filterColor(0) != 0;
142 }
143
commit-bot@chromium.org0f10f7b2014-03-13 18:02:17 +0000144 SK_TO_STRING_PUREVIRT()
robertphillips@google.com1202c2a2013-05-23 14:00:17 +0000145
djsollen@google.coma2ca41e2012-03-23 19:00:34 +0000146 SK_DECLARE_FLATTENABLE_REGISTRAR_GROUP()
commit-bot@chromium.orgc0b7e102013-10-23 17:06:21 +0000147 SK_DEFINE_FLATTENABLE_TYPE(SkColorFilter)
148
reed@android.com8a1c16f2008-12-17 15:59:43 +0000149protected:
150 SkColorFilter() {}
tomhudson@google.com1447c6f2011-04-27 14:09:52 +0000151
reed@android.com8a1c16f2008-12-17 15:59:43 +0000152private:
reeddc812222015-03-05 07:21:02 -0800153 /*
154 * Returns 1 if this is a single filter (not a composition of other filters), otherwise it
155 * reutrns the number of leaf-node filters in a composition. This should be the same value
156 * as the number of GrFragmentProcessors returned by asFragmentProcessors's array parameter.
157 *
158 * e.g. compose(filter, compose(compose(filter, filter), filter)) --> 4
159 */
160 virtual int privateComposedFilterCount() const { return 1; }
161 friend class SkComposeColorFilter;
162
reed@android.com8a1c16f2008-12-17 15:59:43 +0000163 typedef SkFlattenable INHERITED;
164};
165
reed@android.com8a1c16f2008-12-17 15:59:43 +0000166#endif