blob: fe6e6faf14654429d81fb5660c99033e5b738c07 [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;
joshualitteb2a6762014-12-04 11:35:33 -080014class GrGLCaps;
15class GrGLFragmentProcessor;
16class GrProcessorKeyBuilder;
bsalomon6251d172014-10-15 10:50:36 -070017
18/** Provides custom fragment shader code. Fragment processors receive an input color (vec4f) and
19 produce an output color. They may reference textures and uniforms. They may use
20 GrCoordTransforms to receive a transformation of the local coordinates that map from local space
21 to the fragment being processed.
22 */
23class GrFragmentProcessor : public GrProcessor {
24public:
25 GrFragmentProcessor()
26 : INHERITED()
27 , fWillReadDstColor(false)
joshualitt290c09b2014-12-19 13:45:20 -080028 , fWillUseInputColor(true)
29 , fUsesLocalCoords(false) {}
bsalomon6251d172014-10-15 10:50:36 -070030
joshualitteb2a6762014-12-04 11:35:33 -080031 /** Implemented using GLFragmentProcessor::GenKey as described in this class's comment. */
32 virtual void getGLProcessorKey(const GrGLCaps& caps,
33 GrProcessorKeyBuilder* b) const = 0;
34
35 /** Returns a new instance of the appropriate *GL* implementation class
36 for the given GrFragmentProcessor; caller is responsible for deleting
37 the object. */
38 virtual GrGLFragmentProcessor* createGLInstance() const = 0;
39
40 /** Human-meaningful string to identify this GrFragmentProcessor; may be embedded
41 in generated shader code. */
42 virtual const char* name() const = 0;
bsalomon6251d172014-10-15 10:50:36 -070043
44 int numTransforms() const { return fCoordTransforms.count(); }
45
46 /** Returns the coordinate transformation at index. index must be valid according to
47 numTransforms(). */
48 const GrCoordTransform& coordTransform(int index) const { return *fCoordTransforms[index]; }
49
50 /** Will this prceossor read the destination pixel value? */
51 bool willReadDstColor() const { return fWillReadDstColor; }
52
53 /** Will this prceossor read the source color value? */
54 bool willUseInputColor() const { return fWillUseInputColor; }
55
joshualitt290c09b2014-12-19 13:45:20 -080056 /** Do any of the coordtransforms for this processor require local coords? */
57 bool usesLocalCoords() const { return fUsesLocalCoords; }
58
joshualitteb2a6762014-12-04 11:35:33 -080059 /** Returns true if this and other processor conservatively draw identically. It can only return
60 true when the two processor are of the same subclass (i.e. they return the same object from
bsalomon6251d172014-10-15 10:50:36 -070061 from getFactory()).
62
joshualitteb2a6762014-12-04 11:35:33 -080063 A return value of true from isEqual() should not be used to test whether the processor would
64 generate the same shader code. To test for identical code generation use getGLProcessorKey*/
bsalomon420d7e92014-10-16 09:18:09 -070065 bool isEqual(const GrFragmentProcessor& that) const {
joshualitteb2a6762014-12-04 11:35:33 -080066 if (this->classID() != that.classID() ||
bsalomon420d7e92014-10-16 09:18:09 -070067 !this->hasSameTransforms(that) ||
68 !this->hasSameTextureAccesses(that)) {
bsalomon6251d172014-10-15 10:50:36 -070069 return false;
70 }
bsalomon420d7e92014-10-16 09:18:09 -070071 return this->onIsEqual(that);
bsalomon6251d172014-10-15 10:50:36 -070072 }
73
joshualitt56995b52014-12-11 15:44:02 -080074 /**
75 * This function is used to perform optimizations. When called the invarientOuput param
76 * indicate whether the input components to this processor in the FS will have known values.
77 * In inout the validFlags member is a bitfield of GrColorComponentFlags. The isSingleComponent
78 * member indicates whether the input will be 1 or 4 bytes. The function updates the members of
79 * inout to indicate known values of its output. A component of the color member only has
80 * meaning if the corresponding bit in validFlags is set.
81 */
82 void computeInvariantOutput(GrInvariantOutput* inout) const;
83
bsalomon6251d172014-10-15 10:50:36 -070084protected:
85 /**
86 * Fragment Processor subclasses call this from their constructor to register coordinate
bsalomonde258cd2014-10-15 19:06:21 -070087 * transformations. Coord transforms provide a mechanism for a processor to receive coordinates
88 * in their FS code. The matrix expresses a transformation from local space. For a given
89 * fragment the matrix will be applied to the local coordinate that maps to the fragment.
90 *
91 * When the transformation has perspective, the transformed coordinates will have
92 * 3 components. Otherwise they'll have 2.
93 *
94 * This must only be called from the constructor because GrProcessors are immutable. The
95 * processor subclass manages the lifetime of the transformations (this function only stores a
96 * pointer). The GrCoordTransform is typically a member field of the GrProcessor subclass.
97 *
98 * A processor subclass that has multiple methods of construction should always add its coord
99 * transforms in a consistent order. The non-virtual implementation of isEqual() automatically
100 * compares transforms and will assume they line up across the two processor instances.
bsalomon6251d172014-10-15 10:50:36 -0700101 */
102 void addCoordTransform(const GrCoordTransform*);
103
104 /**
bsalomon98b33eb2014-10-15 11:05:26 -0700105 * If the prceossor subclass will read the destination pixel value then it must call this
106 * function from its constructor. Otherwise, when its generated backend-specific prceossor class
107 * attempts to generate code that reads the destination pixel it will fail.
bsalomon6251d172014-10-15 10:50:36 -0700108 */
109 void setWillReadDstColor() { fWillReadDstColor = true; }
110
111 /**
112 * If the prceossor will generate a result that does not depend on the input color value then it
113 * must call this function from its constructor. Otherwise, when its generated backend-specific
114 * code might fail during variable binding due to unused variables.
115 */
116 void setWillNotUseInputColor() { fWillUseInputColor = false; }
117
joshualitt56995b52014-12-11 15:44:02 -0800118 /**
119 * Subclass implements this to support getConstantColorComponents(...).
120 */
121 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const = 0;
122
bsalomon6251d172014-10-15 10:50:36 -0700123private:
bsalomonde258cd2014-10-15 19:06:21 -0700124 /**
125 * Subclass implements this to support isEqual(). It will only be called if it is known that
126 * the two processors are of the same subclass (i.e. they return the same object from
127 * getFactory()). The processor subclass should not compare its coord transforms as that will
128 * be performed automatically in the non-virtual isEqual().
129 */
130 virtual bool onIsEqual(const GrFragmentProcessor&) const = 0;
131
132 bool hasSameTransforms(const GrFragmentProcessor&) const;
bsalomon6251d172014-10-15 10:50:36 -0700133
134 SkSTArray<4, const GrCoordTransform*, true> fCoordTransforms;
135 bool fWillReadDstColor;
136 bool fWillUseInputColor;
joshualitt290c09b2014-12-19 13:45:20 -0800137 bool fUsesLocalCoords;
bsalomon6251d172014-10-15 10:50:36 -0700138
139 typedef GrProcessor INHERITED;
140};
141
bsalomon6251d172014-10-15 10:50:36 -0700142#endif