blob: 0c155996d5aec2280e9468d29071d42ddbb76af4 [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)
28 , fWillUseInputColor(true) {}
29
joshualitteb2a6762014-12-04 11:35:33 -080030 /** Implemented using GLFragmentProcessor::GenKey as described in this class's comment. */
31 virtual void getGLProcessorKey(const GrGLCaps& caps,
32 GrProcessorKeyBuilder* b) const = 0;
33
34 /** Returns a new instance of the appropriate *GL* implementation class
35 for the given GrFragmentProcessor; caller is responsible for deleting
36 the object. */
37 virtual GrGLFragmentProcessor* createGLInstance() const = 0;
38
39 /** Human-meaningful string to identify this GrFragmentProcessor; may be embedded
40 in generated shader code. */
41 virtual const char* name() const = 0;
bsalomon6251d172014-10-15 10:50:36 -070042
43 int numTransforms() const { return fCoordTransforms.count(); }
44
45 /** Returns the coordinate transformation at index. index must be valid according to
46 numTransforms(). */
47 const GrCoordTransform& coordTransform(int index) const { return *fCoordTransforms[index]; }
48
49 /** Will this prceossor read the destination pixel value? */
50 bool willReadDstColor() const { return fWillReadDstColor; }
51
52 /** Will this prceossor read the source color value? */
53 bool willUseInputColor() const { return fWillUseInputColor; }
54
joshualitteb2a6762014-12-04 11:35:33 -080055 /** Returns true if this and other processor conservatively draw identically. It can only return
56 true when the two processor are of the same subclass (i.e. they return the same object from
bsalomon6251d172014-10-15 10:50:36 -070057 from getFactory()).
58
joshualitteb2a6762014-12-04 11:35:33 -080059 A return value of true from isEqual() should not be used to test whether the processor would
60 generate the same shader code. To test for identical code generation use getGLProcessorKey*/
bsalomon420d7e92014-10-16 09:18:09 -070061 bool isEqual(const GrFragmentProcessor& that) const {
joshualitteb2a6762014-12-04 11:35:33 -080062 if (this->classID() != that.classID() ||
bsalomon420d7e92014-10-16 09:18:09 -070063 !this->hasSameTransforms(that) ||
64 !this->hasSameTextureAccesses(that)) {
bsalomon6251d172014-10-15 10:50:36 -070065 return false;
66 }
bsalomon420d7e92014-10-16 09:18:09 -070067 return this->onIsEqual(that);
bsalomon6251d172014-10-15 10:50:36 -070068 }
69
joshualitt56995b52014-12-11 15:44:02 -080070 /**
71 * This function is used to perform optimizations. When called the invarientOuput param
72 * indicate whether the input components to this processor in the FS will have known values.
73 * In inout the validFlags member is a bitfield of GrColorComponentFlags. The isSingleComponent
74 * member indicates whether the input will be 1 or 4 bytes. The function updates the members of
75 * inout to indicate known values of its output. A component of the color member only has
76 * meaning if the corresponding bit in validFlags is set.
77 */
78 void computeInvariantOutput(GrInvariantOutput* inout) const;
79
bsalomon6251d172014-10-15 10:50:36 -070080protected:
81 /**
82 * Fragment Processor subclasses call this from their constructor to register coordinate
bsalomonde258cd2014-10-15 19:06:21 -070083 * transformations. Coord transforms provide a mechanism for a processor to receive coordinates
84 * in their FS code. The matrix expresses a transformation from local space. For a given
85 * fragment the matrix will be applied to the local coordinate that maps to the fragment.
86 *
87 * When the transformation has perspective, the transformed coordinates will have
88 * 3 components. Otherwise they'll have 2.
89 *
90 * This must only be called from the constructor because GrProcessors are immutable. The
91 * processor subclass manages the lifetime of the transformations (this function only stores a
92 * pointer). The GrCoordTransform is typically a member field of the GrProcessor subclass.
93 *
94 * A processor subclass that has multiple methods of construction should always add its coord
95 * transforms in a consistent order. The non-virtual implementation of isEqual() automatically
96 * compares transforms and will assume they line up across the two processor instances.
bsalomon6251d172014-10-15 10:50:36 -070097 */
98 void addCoordTransform(const GrCoordTransform*);
99
100 /**
bsalomon98b33eb2014-10-15 11:05:26 -0700101 * If the prceossor subclass will read the destination pixel value then it must call this
102 * function from its constructor. Otherwise, when its generated backend-specific prceossor class
103 * attempts to generate code that reads the destination pixel it will fail.
bsalomon6251d172014-10-15 10:50:36 -0700104 */
105 void setWillReadDstColor() { fWillReadDstColor = true; }
106
107 /**
108 * If the prceossor will generate a result that does not depend on the input color value then it
109 * must call this function from its constructor. Otherwise, when its generated backend-specific
110 * code might fail during variable binding due to unused variables.
111 */
112 void setWillNotUseInputColor() { fWillUseInputColor = false; }
113
joshualitt56995b52014-12-11 15:44:02 -0800114 /**
115 * Subclass implements this to support getConstantColorComponents(...).
116 */
117 virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const = 0;
118
bsalomon6251d172014-10-15 10:50:36 -0700119private:
bsalomonde258cd2014-10-15 19:06:21 -0700120 /**
121 * Subclass implements this to support isEqual(). It will only be called if it is known that
122 * the two processors are of the same subclass (i.e. they return the same object from
123 * getFactory()). The processor subclass should not compare its coord transforms as that will
124 * be performed automatically in the non-virtual isEqual().
125 */
126 virtual bool onIsEqual(const GrFragmentProcessor&) const = 0;
127
128 bool hasSameTransforms(const GrFragmentProcessor&) const;
bsalomon6251d172014-10-15 10:50:36 -0700129
130 SkSTArray<4, const GrCoordTransform*, true> fCoordTransforms;
131 bool fWillReadDstColor;
132 bool fWillUseInputColor;
133
134 typedef GrProcessor INHERITED;
135};
136
bsalomon6251d172014-10-15 10:50:36 -0700137#endif