blob: c5563f00fa28ee1fcfb1cd3150eaa5f5b5cdc9da [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
bsalomon@google.com27847de2011-02-22 20:59:41 +00002/*
epoger@google.comec3ed6a2011-07-28 14:26:00 +00003 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
bsalomon@google.com27847de2011-02-22 20:59:41 +00007 */
8
epoger@google.comec3ed6a2011-07-28 14:26:00 +00009
bsalomon@google.com27847de2011-02-22 20:59:41 +000010#ifndef GrPaint_DEFINED
11#define GrPaint_DEFINED
12
bsalomon@google.com27847de2011-02-22 20:59:41 +000013#include "GrColor.h"
joshualittb0a8a372014-09-23 09:50:21 -070014#include "GrProcessorStage.h"
bsalomon@google.com27847de2011-02-22 20:59:41 +000015
Scroggo97c88c22011-05-11 14:05:25 +000016#include "SkXfermode.h"
17
bsalomon@google.com27847de2011-02-22 20:59:41 +000018/**
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000019 * The paint describes how color and coverage are computed at each pixel by GrContext draw
20 * functions and the how color is blended with the destination pixel.
21 *
22 * The paint allows installation of custom color and coverage stages. New types of stages are
joshualittb0a8a372014-09-23 09:50:21 -070023 * created by subclassing GrProcessor.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000024 *
25 * The primitive color computation starts with the color specified by setColor(). This color is the
26 * input to the first color stage. Each color stage feeds its output to the next color stage. The
27 * final color stage's output color is input to the color filter specified by
bsalomon@google.com67e78c92012-10-17 13:36:14 +000028 * setXfermodeColorFilter which produces the final source color, S.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000029 *
30 * Fractional pixel coverage follows a similar flow. The coverage is initially the value specified
31 * by setCoverage(). This is input to the first coverage stage. Coverage stages are chained
32 * together in the same manner as color stages. The output of the last stage is modulated by any
33 * fractional coverage produced by anti-aliasing. This last step produces the final coverage, C.
34 *
35 * setBlendFunc() specifies blending coefficients for S (described above) and D, the initial value
36 * of the destination pixel, labeled Bs and Bd respectively. The final value of the destination
37 * pixel is then D' = (1-C)*D + C*(Bd*D + Bs*S).
38 *
39 * Note that the coverage is applied after the blend. This is why they are computed as distinct
40 * values.
41 *
joshualittb0a8a372014-09-23 09:50:21 -070042 * TODO: Encapsulate setXfermodeColorFilter in a GrProcessor and remove from GrPaint.
bsalomon@google.com27847de2011-02-22 20:59:41 +000043 */
44class GrPaint {
45public:
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000046 GrPaint() { this->reset(); }
bsalomon@google.com27847de2011-02-22 20:59:41 +000047
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000048 GrPaint(const GrPaint& paint) { *this = paint; }
bsalomon@google.com27847de2011-02-22 20:59:41 +000049
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000050 ~GrPaint() {}
Scroggo97c88c22011-05-11 14:05:25 +000051
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000052 /**
53 * Sets the blending coefficients to use to blend the final primitive color with the
54 * destination color. Defaults to kOne for src and kZero for dst (i.e. src mode).
55 */
56 void setBlendFunc(GrBlendCoeff srcCoeff, GrBlendCoeff dstCoeff) {
57 fSrcBlendCoeff = srcCoeff;
58 fDstBlendCoeff = dstCoeff;
59 }
60 GrBlendCoeff getSrcBlendCoeff() const { return fSrcBlendCoeff; }
61 GrBlendCoeff getDstBlendCoeff() const { return fDstBlendCoeff; }
62
63 /**
64 * The initial color of the drawn primitive. Defaults to solid white.
65 */
66 void setColor(GrColor color) { fColor = color; }
67 GrColor getColor() const { return fColor; }
68
69 /**
70 * Applies fractional coverage to the entire drawn primitive. Defaults to 0xff.
71 */
72 void setCoverage(uint8_t coverage) { fCoverage = coverage; }
73 uint8_t getCoverage() const { return fCoverage; }
74
75 /**
76 * Should primitives be anti-aliased or not. Defaults to false.
77 */
78 void setAntiAlias(bool aa) { fAntiAlias = aa; }
79 bool isAntiAlias() const { return fAntiAlias; }
80
81 /**
82 * Should dithering be applied. Defaults to false.
83 */
84 void setDither(bool dither) { fDither = dither; }
85 bool isDither() const { return fDither; }
86
87 /**
joshualittb0a8a372014-09-23 09:50:21 -070088 * Appends an additional color processor to the color computation.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000089 */
joshualittb0a8a372014-09-23 09:50:21 -070090 const GrFragmentProcessor* addColorProcessor(const GrFragmentProcessor* fp) {
91 SkASSERT(fp);
joshualitt47bb3822014-10-07 16:43:25 -070092 SkNEW_APPEND_TO_TARRAY(&fColorStages, GrFragmentStage, (fp));
joshualittb0a8a372014-09-23 09:50:21 -070093 return fp;
tomhudson@google.comf13f5882012-06-25 17:27:28 +000094 }
95
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000096 /**
joshualittb0a8a372014-09-23 09:50:21 -070097 * Appends an additional coverage processor to the coverage computation.
bsalomon@google.comc7448ce2012-10-05 19:04:13 +000098 */
joshualittb0a8a372014-09-23 09:50:21 -070099 const GrFragmentProcessor* addCoverageProcessor(const GrFragmentProcessor* fp) {
100 SkASSERT(fp);
joshualitt47bb3822014-10-07 16:43:25 -0700101 SkNEW_APPEND_TO_TARRAY(&fCoverageStages, GrFragmentStage, (fp));
joshualittb0a8a372014-09-23 09:50:21 -0700102 return fp;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000103 }
104
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000105 /**
106 * Helpers for adding color or coverage effects that sample a texture. The matrix is applied
107 * to the src space position to compute texture coordinates.
108 */
joshualittb0a8a372014-09-23 09:50:21 -0700109 void addColorTextureProcessor(GrTexture*, const SkMatrix&);
110 void addCoverageTextureProcessor(GrTexture*, const SkMatrix&);
111 void addColorTextureProcessor(GrTexture*, const SkMatrix&, const GrTextureParams&);
112 void addCoverageTextureProcessor(GrTexture*, const SkMatrix&, const GrTextureParams&);
tomhudson@google.comf13f5882012-06-25 17:27:28 +0000113
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000114 int numColorStages() const { return fColorStages.count(); }
115 int numCoverageStages() const { return fCoverageStages.count(); }
116 int numTotalStages() const { return this->numColorStages() + this->numCoverageStages(); }
bsalomon@google.come3d32162012-07-20 13:37:06 +0000117
joshualittb0a8a372014-09-23 09:50:21 -0700118 const GrFragmentStage& getColorStage(int s) const { return fColorStages[s]; }
119 const GrFragmentStage& getCoverageStage(int s) const { return fCoverageStages[s]; }
bsalomon@google.come3d32162012-07-20 13:37:06 +0000120
bsalomon@google.com27c9b6d2011-09-12 14:30:27 +0000121 GrPaint& operator=(const GrPaint& paint) {
bsalomon@google.com27847de2011-02-22 20:59:41 +0000122 fSrcBlendCoeff = paint.fSrcBlendCoeff;
123 fDstBlendCoeff = paint.fDstBlendCoeff;
124 fAntiAlias = paint.fAntiAlias;
125 fDither = paint.fDither;
126
127 fColor = paint.fColor;
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000128 fCoverage = paint.fCoverage;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000129
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000130 fColorStages = paint.fColorStages;
131 fCoverageStages = paint.fCoverageStages;
132
bsalomon@google.com27c9b6d2011-09-12 14:30:27 +0000133 return *this;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000134 }
135
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000136 /**
137 * Resets the paint to the defaults.
138 */
bsalomon@google.com27847de2011-02-22 20:59:41 +0000139 void reset() {
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000140 this->resetBlend();
141 this->resetOptions();
142 this->resetColor();
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000143 this->resetCoverage();
bsalomon@google.com08283af2012-10-26 13:01:20 +0000144 this->resetStages();
Scroggo97c88c22011-05-11 14:05:25 +0000145 }
146
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000147 /**
148 * Determines whether the drawing with this paint is opaque with respect to both color blending
149 * and fractional coverage. It does not consider whether AA has been enabled on the paint or
150 * not. Depending upon whether multisampling or coverage-based AA is in use, AA may make the
151 * result only apply to the interior of primitives.
152 *
153 */
154 bool isOpaque() const;
155
156 /**
157 * Returns true if isOpaque would return true and the paint represents a solid constant color
158 * draw. If the result is true, constantColor will be updated to contain the constant color.
159 */
160 bool isOpaqueAndConstantColor(GrColor* constantColor) const;
161
bsalomon@google.com27847de2011-02-22 20:59:41 +0000162private:
commit-bot@chromium.org24ab3b02013-08-14 21:56:37 +0000163
164 /**
165 * Helper for isOpaque and isOpaqueAndConstantColor.
166 */
167 bool getOpaqueAndKnownColor(GrColor* solidColor, uint32_t* solidColorKnownComponents) const;
168
bsalomon@google.comc7818882013-03-20 19:19:53 +0000169 /**
170 * Called when the source coord system from which geometry is rendered changes. It ensures that
171 * the local coordinates seen by effects remains unchanged. oldToNew gives the transformation
172 * from the previous coord system to the new coord system.
173 */
174 void localCoordChange(const SkMatrix& oldToNew) {
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000175 for (int i = 0; i < fColorStages.count(); ++i) {
176 fColorStages[i].localCoordChange(oldToNew);
bsalomon@google.comc7818882013-03-20 19:19:53 +0000177 }
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000178 for (int i = 0; i < fCoverageStages.count(); ++i) {
179 fCoverageStages[i].localCoordChange(oldToNew);
bsalomon@google.comc7818882013-03-20 19:19:53 +0000180 }
181 }
182
183 bool localCoordChangeInverse(const SkMatrix& newToOld) {
184 SkMatrix oldToNew;
185 bool computed = false;
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000186 for (int i = 0; i < fColorStages.count(); ++i) {
187 if (!computed && !newToOld.invert(&oldToNew)) {
188 return false;
189 } else {
190 computed = true;
bsalomon@google.comc7818882013-03-20 19:19:53 +0000191 }
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000192 fColorStages[i].localCoordChange(oldToNew);
bsalomon@google.comc7818882013-03-20 19:19:53 +0000193 }
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000194 for (int i = 0; i < fCoverageStages.count(); ++i) {
195 if (!computed && !newToOld.invert(&oldToNew)) {
196 return false;
197 } else {
198 computed = true;
bsalomon@google.comc7818882013-03-20 19:19:53 +0000199 }
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000200 fCoverageStages[i].localCoordChange(oldToNew);
bsalomon@google.comc7818882013-03-20 19:19:53 +0000201 }
202 return true;
203 }
204
205 friend class GrContext; // To access above two functions
kkinnunenc6cb56f2014-06-24 00:12:27 -0700206 friend class GrStencilAndCoverTextContext; // To access above two functions
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000207
joshualittb0a8a372014-09-23 09:50:21 -0700208 SkSTArray<4, GrFragmentStage> fColorStages;
209 SkSTArray<2, GrFragmentStage> fCoverageStages;
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000210
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000211 GrBlendCoeff fSrcBlendCoeff;
212 GrBlendCoeff fDstBlendCoeff;
213 bool fAntiAlias;
214 bool fDither;
bsalomon@google.comc7448ce2012-10-05 19:04:13 +0000215
216 GrColor fColor;
217 uint8_t fCoverage;
218
bsalomon@google.com27847de2011-02-22 20:59:41 +0000219 void resetBlend() {
bsalomon@google.com47059542012-06-06 20:51:20 +0000220 fSrcBlendCoeff = kOne_GrBlendCoeff;
221 fDstBlendCoeff = kZero_GrBlendCoeff;
bsalomon@google.com27847de2011-02-22 20:59:41 +0000222 }
223
224 void resetOptions() {
225 fAntiAlias = false;
226 fDither = false;
227 }
228
229 void resetColor() {
230 fColor = GrColorPackRGBA(0xff, 0xff, 0xff, 0xff);
231 }
232
bsalomon@google.comdd1be602012-01-18 20:34:00 +0000233 void resetCoverage() {
234 fCoverage = 0xff;
235 }
236
bsalomon@google.com08283af2012-10-26 13:01:20 +0000237 void resetStages() {
commit-bot@chromium.org42dacab2013-07-13 17:24:24 +0000238 fColorStages.reset();
239 fCoverageStages.reset();
bsalomon@google.com26c2d0a2011-05-17 20:15:30 +0000240 }
bsalomon@google.com27847de2011-02-22 20:59:41 +0000241};
242
243#endif