blob: f95520738540723d5294b6051f5b2419a6bd6b97 [file] [log] [blame]
bsalomon6251d172014-10-15 10:50:36 -07001/*
2 * Copyright 2014 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef GrFragmentProcessor_DEFINED
9#define GrFragmentProcessor_DEFINED
10
11#include "GrProcessor.h"
12
13class GrCoordTransform;
jvanverthe9c0fc62015-04-29 11:18:05 -070014class GrGLSLCaps;
egdaniel64c47282015-11-13 06:54:19 -080015class GrGLSLFragmentProcessor;
bsalomonc21b09e2015-08-28 18:46:56 -070016class GrInvariantOutput;
joshualitteb2a6762014-12-04 11:35:33 -080017class GrProcessorKeyBuilder;
bsalomon6251d172014-10-15 10:50:36 -070018
19/** Provides custom fragment shader code. Fragment processors receive an input color (vec4f) and
20 produce an output color. They may reference textures and uniforms. They may use
21 GrCoordTransforms to receive a transformation of the local coordinates that map from local space
22 to the fragment being processed.
23 */
24class GrFragmentProcessor : public GrProcessor {
25public:
bsalomon87ba62e2015-09-22 06:41:59 -070026 /**
27 * In many instances (e.g. SkShader::asFragmentProcessor() implementations) it is desirable to
28 * only consider the input color's alpha. However, there is a competing desire to have reusable
29 * GrFragmentProcessor subclasses that can be used in other scenarios where the entire input
30 * color is considered. This function exists to filter the input color and pass it to a FP. It
31 * does so by returning a parent FP that multiplies the passed in FPs output by the parent's
32 * input alpha. The passed in FP will not receive an input color.
33 */
bungeman06ca8ec2016-06-09 08:01:03 -070034 static sk_sp<GrFragmentProcessor> MulOutputByInputAlpha(sk_sp<GrFragmentProcessor>);
bsalomonf1b7a1d2015-09-28 06:26:28 -070035
36 /**
37 * Similar to the above but it modulates the output r,g,b of the child processor by the input
38 * rgb and then multiplies all the components by the input alpha. This effectively modulates
39 * the child processor's premul color by a unpremul'ed input and produces a premul output
40 */
bungeman06ca8ec2016-06-09 08:01:03 -070041 static sk_sp<GrFragmentProcessor> MulOutputByInputUnpremulColor(sk_sp<GrFragmentProcessor>);
bsalomonf1b7a1d2015-09-28 06:26:28 -070042
43 /**
bsalomone25eea42015-09-29 06:38:55 -070044 * Returns a parent fragment processor that adopts the passed fragment processor as a child.
45 * The parent will ignore its input color and instead feed the passed in color as input to the
46 * child.
bsalomonf1b7a1d2015-09-28 06:26:28 -070047 */
brianosman4cea3b92016-09-08 09:33:50 -070048 static sk_sp<GrFragmentProcessor> OverrideInput(sk_sp<GrFragmentProcessor>, GrColor4f);
bsalomon87ba62e2015-09-22 06:41:59 -070049
bsalomone25eea42015-09-29 06:38:55 -070050 /**
dvonbeckc526da92016-07-20 11:20:30 -070051 * Returns a fragment processor that premuls the input before calling the passed in fragment
52 * processor.
53 */
54 static sk_sp<GrFragmentProcessor> PremulInput(sk_sp<GrFragmentProcessor>);
55
56 /**
bsalomone25eea42015-09-29 06:38:55 -070057 * Returns a fragment processor that runs the passed in array of fragment processors in a
58 * series. The original input is passed to the first, the first's output is passed to the
59 * second, etc. The output of the returned processor is the output of the last processor of the
60 * series.
bungeman06ca8ec2016-06-09 08:01:03 -070061 *
62 * The array elements with be moved.
bsalomone25eea42015-09-29 06:38:55 -070063 */
bungeman06ca8ec2016-06-09 08:01:03 -070064 static sk_sp<GrFragmentProcessor> RunInSeries(sk_sp<GrFragmentProcessor>*, int cnt);
bsalomone25eea42015-09-29 06:38:55 -070065
bsalomon6251d172014-10-15 10:50:36 -070066 GrFragmentProcessor()
67 : INHERITED()
dvonbeck9b03e7b2016-08-01 11:01:56 -070068 , fUsesDistanceVectorField(false)
wangyix93ab2542015-08-19 08:23:12 -070069 , fUsesLocalCoords(false)
70 , fNumTexturesExclChildren(0)
cdalton74b8d322016-04-11 14:47:28 -070071 , fNumBuffersExclChildren(0)
wangyix93ab2542015-08-19 08:23:12 -070072 , fNumTransformsExclChildren(0) {}
bsalomon6251d172014-10-15 10:50:36 -070073
bsalomonac856c92015-08-27 06:30:17 -070074 ~GrFragmentProcessor() override;
75
egdaniel57d3b032015-11-13 11:57:27 -080076 GrGLSLFragmentProcessor* createGLSLInstance() const;
joshualitteb2a6762014-12-04 11:35:33 -080077
egdaniel57d3b032015-11-13 11:57:27 -080078 void getGLSLProcessorKey(const GrGLSLCaps& caps, GrProcessorKeyBuilder* b) const {
79 this->onGetGLSLProcessorKey(caps, b);
wangyix4b3050b2015-08-04 07:59:37 -070080 for (int i = 0; i < fChildProcessors.count(); ++i) {
egdaniel57d3b032015-11-13 11:57:27 -080081 fChildProcessors[i]->getGLSLProcessorKey(caps, b);
wangyix4b3050b2015-08-04 07:59:37 -070082 }
83 }
84
wangyix93ab2542015-08-19 08:23:12 -070085 int numTexturesExclChildren() const { return fNumTexturesExclChildren; }
86
cdalton74b8d322016-04-11 14:47:28 -070087 int numBuffersExclChildren() const { return fNumBuffersExclChildren; }
88
wangyix93ab2542015-08-19 08:23:12 -070089 int numTransformsExclChildren() const { return fNumTransformsExclChildren; }
90
bsalomon6251d172014-10-15 10:50:36 -070091 int numTransforms() const { return fCoordTransforms.count(); }
92
93 /** Returns the coordinate transformation at index. index must be valid according to
94 numTransforms(). */
95 const GrCoordTransform& coordTransform(int index) const { return *fCoordTransforms[index]; }
96
joshualittabb52a12015-01-13 15:02:10 -080097 const SkTArray<const GrCoordTransform*, true>& coordTransforms() const {
98 return fCoordTransforms;
99 }
100
joshualitt2fe79232015-08-05 12:02:27 -0700101 void gatherCoordTransforms(SkTArray<const GrCoordTransform*, true>* outTransforms) const {
wangyix58d890b2015-08-12 09:40:47 -0700102 if (!fCoordTransforms.empty()) {
103 outTransforms->push_back_n(fCoordTransforms.count(), fCoordTransforms.begin());
joshualitt2fe79232015-08-05 12:02:27 -0700104 }
105 }
106
wangyix4b3050b2015-08-04 07:59:37 -0700107 int numChildProcessors() const { return fChildProcessors.count(); }
108
bsalomonac856c92015-08-27 06:30:17 -0700109 const GrFragmentProcessor& childProcessor(int index) const { return *fChildProcessors[index]; }
wangyix4b3050b2015-08-04 07:59:37 -0700110
joshualitt290c09b2014-12-19 13:45:20 -0800111 /** Do any of the coordtransforms for this processor require local coords? */
112 bool usesLocalCoords() const { return fUsesLocalCoords; }
113
dvonbeck9b03e7b2016-08-01 11:01:56 -0700114 /** Does this FP need a vector to the nearest edge? */
115 bool usesDistanceVectorField() const { return fUsesDistanceVectorField; }
116
joshualitteb2a6762014-12-04 11:35:33 -0800117 /** Returns true if this and other processor conservatively draw identically. It can only return
118 true when the two processor are of the same subclass (i.e. they return the same object from
bsalomon6251d172014-10-15 10:50:36 -0700119 from getFactory()).
120
joshualitteb2a6762014-12-04 11:35:33 -0800121 A return value of true from isEqual() should not be used to test whether the processor would
egdaniel57d3b032015-11-13 11:57:27 -0800122 generate the same shader code. To test for identical code generation use getGLSLProcessorKey
123 */
wangyix54017d72015-08-18 07:39:33 -0700124 bool isEqual(const GrFragmentProcessor& that, bool ignoreCoordTransforms) const;
bsalomon6251d172014-10-15 10:50:36 -0700125
joshualitt56995b52014-12-11 15:44:02 -0800126 /**
127 * This function is used to perform optimizations. When called the invarientOuput param
128 * indicate whether the input components to this processor in the FS will have known values.
129 * In inout the validFlags member is a bitfield of GrColorComponentFlags. The isSingleComponent
130 * member indicates whether the input will be 1 or 4 bytes. The function updates the members of
131 * inout to indicate known values of its output. A component of the color member only has
132 * meaning if the corresponding bit in validFlags is set.
133 */
bsalomonc21b09e2015-08-28 18:46:56 -0700134 void computeInvariantOutput(GrInvariantOutput* inout) const {
135 this->onComputeInvariantOutput(inout);
136 }
joshualitt56995b52014-12-11 15:44:02 -0800137
bsalomon6251d172014-10-15 10:50:36 -0700138protected:
wangyix93ab2542015-08-19 08:23:12 -0700139 void addTextureAccess(const GrTextureAccess* textureAccess) override;
cdalton74b8d322016-04-11 14:47:28 -0700140 void addBufferAccess(const GrBufferAccess*) override;
wangyix93ab2542015-08-19 08:23:12 -0700141
bsalomon6251d172014-10-15 10:50:36 -0700142 /**
143 * Fragment Processor subclasses call this from their constructor to register coordinate
bsalomonde258cd2014-10-15 19:06:21 -0700144 * transformations. Coord transforms provide a mechanism for a processor to receive coordinates
145 * in their FS code. The matrix expresses a transformation from local space. For a given
146 * fragment the matrix will be applied to the local coordinate that maps to the fragment.
147 *
148 * When the transformation has perspective, the transformed coordinates will have
mtklein790d74f2015-08-19 11:05:39 -0700149 * 3 components. Otherwise they'll have 2.
bsalomonde258cd2014-10-15 19:06:21 -0700150 *
151 * This must only be called from the constructor because GrProcessors are immutable. The
152 * processor subclass manages the lifetime of the transformations (this function only stores a
mtklein790d74f2015-08-19 11:05:39 -0700153 * pointer). The GrCoordTransform is typically a member field of the GrProcessor subclass.
bsalomonde258cd2014-10-15 19:06:21 -0700154 *
155 * A processor subclass that has multiple methods of construction should always add its coord
156 * transforms in a consistent order. The non-virtual implementation of isEqual() automatically
157 * compares transforms and will assume they line up across the two processor instances.
bsalomon6251d172014-10-15 10:50:36 -0700158 */
159 void addCoordTransform(const GrCoordTransform*);
160
161 /**
wangyix58d890b2015-08-12 09:40:47 -0700162 * FragmentProcessor subclasses call this from their constructor to register any child
wangyix93ab2542015-08-19 08:23:12 -0700163 * FragmentProcessors they have. This must be called AFTER all texture accesses and coord
164 * transforms have been added.
wangyix4b3050b2015-08-04 07:59:37 -0700165 * This is for processors whose shader code will be composed of nested processors whose output
166 * colors will be combined somehow to produce its output color. Registering these child
wangyix58d890b2015-08-12 09:40:47 -0700167 * processors will allow the ProgramBuilder to automatically handle their transformed coords and
168 * texture accesses and mangle their uniform and output color names.
wangyix4b3050b2015-08-04 07:59:37 -0700169 */
bungeman06ca8ec2016-06-09 08:01:03 -0700170 int registerChildProcessor(sk_sp<GrFragmentProcessor> child);
wangyix4b3050b2015-08-04 07:59:37 -0700171
172 /**
joshualitt56995b52014-12-11 15:44:02 -0800173 * Subclass implements this to support getConstantColorComponents(...).
wangyix54017d72015-08-18 07:39:33 -0700174 *
175 * Note: it's up to the subclass implementation to do any recursive call to compute the child
176 * procs' output invariants; computeInvariantOutput will not be recursive.
joshualitt56995b52014-12-11 15:44:02 -0800177 */
178 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const = 0;
179
dvonbeck9b03e7b2016-08-01 11:01:56 -0700180 /* Sub-classes should set this to true in their constructors if they need access to a distance
181 * vector field to the nearest edge
182 */
183 bool fUsesDistanceVectorField;
184
bsalomon6251d172014-10-15 10:50:36 -0700185private:
bsalomon42048002015-08-27 16:43:48 -0700186 void notifyRefCntIsZero() const final;
187
wangyixb1daa862015-08-18 11:29:31 -0700188 /** Returns a new instance of the appropriate *GL* implementation class
189 for the given GrFragmentProcessor; caller is responsible for deleting
190 the object. */
egdaniel57d3b032015-11-13 11:57:27 -0800191 virtual GrGLSLFragmentProcessor* onCreateGLSLInstance() const = 0;
wangyixb1daa862015-08-18 11:29:31 -0700192
wangyix4b3050b2015-08-04 07:59:37 -0700193 /** Implemented using GLFragmentProcessor::GenKey as described in this class's comment. */
egdaniel57d3b032015-11-13 11:57:27 -0800194 virtual void onGetGLSLProcessorKey(const GrGLSLCaps& caps,
195 GrProcessorKeyBuilder* b) const = 0;
wangyix4b3050b2015-08-04 07:59:37 -0700196
bsalomonde258cd2014-10-15 19:06:21 -0700197 /**
198 * Subclass implements this to support isEqual(). It will only be called if it is known that
199 * the two processors are of the same subclass (i.e. they return the same object from
200 * getFactory()). The processor subclass should not compare its coord transforms as that will
201 * be performed automatically in the non-virtual isEqual().
202 */
203 virtual bool onIsEqual(const GrFragmentProcessor&) const = 0;
204
205 bool hasSameTransforms(const GrFragmentProcessor&) const;
bsalomon6251d172014-10-15 10:50:36 -0700206
bungeman06ca8ec2016-06-09 08:01:03 -0700207 bool fUsesLocalCoords;
wangyix58d890b2015-08-12 09:40:47 -0700208
209 /**
wangyix69ed1142015-08-18 07:24:29 -0700210 * fCoordTransforms stores the transforms of this proc, followed by all the transforms of this
211 * proc's children. In other words, each proc stores all the transforms of its subtree as if
212 * they were collected using preorder traversal.
213 *
214 * Example:
215 * Suppose we have frag proc A, who has two children B and D. B has a child C, and D has
216 * two children E and F. Suppose procs A, B, C, D, E, F have 1, 2, 1, 1, 3, 2 transforms
217 * respectively. The following shows what the fCoordTransforms array of each proc would contain:
218 *
219 * (A)
220 * [a1,b1,b2,c1,d1,e1,e2,e3,f1,f2]
221 * / \
222 * / \
223 * (B) (D)
224 * [b1,b2,c1] [d1,e1,e2,e3,f1,f2]
225 * / / \
226 * / / \
227 * (C) (E) (F)
228 * [c1] [e1,e2,e3] [f1,f2]
229 *
wangyix58d890b2015-08-12 09:40:47 -0700230 * The same goes for fTextureAccesses with textures.
231 */
bungeman06ca8ec2016-06-09 08:01:03 -0700232 SkSTArray<4, const GrCoordTransform*, true> fCoordTransforms;
233 int fNumTexturesExclChildren;
234 int fNumBuffersExclChildren;
235 int fNumTransformsExclChildren;
236
237 /**
238 * This is not SkSTArray<1, sk_sp<GrFragmentProcessor>> because this class holds strong
239 * references until notifyRefCntIsZero and then it holds pending executions.
240 */
241 SkSTArray<1, GrFragmentProcessor*, true> fChildProcessors;
bsalomon6251d172014-10-15 10:50:36 -0700242
243 typedef GrProcessor INHERITED;
244};
245
bsalomon6251d172014-10-15 10:50:36 -0700246#endif