blob: 8cb870ee153dd88ff388690987c44d765cbb5514 [file] [log] [blame]
tomhudson@google.com168e6342012-04-18 17:49:20 +00001/*
2 * Copyright 2012 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
bsalomon@google.com8ea78d82012-10-24 20:11:30 +00008#ifndef GrEffect_DEFINED
9#define GrEffect_DEFINED
tomhudson@google.com168e6342012-04-18 17:49:20 +000010
bsalomon@google.com371e1052013-01-11 21:08:55 +000011#include "GrColor.h"
bsalomon@google.com6f261be2012-10-24 19:07:10 +000012#include "GrEffectUnitTest.h"
bsalomon@google.com34cccde2013-01-04 18:34:30 +000013#include "GrTexture.h"
bsalomon@google.com047696c2012-09-11 13:29:29 +000014#include "GrTextureAccess.h"
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +000015#include "GrTypesPriv.h"
tomhudson@google.com07eecdc2012-04-20 18:35:38 +000016
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000017class GrBackendEffectFactory;
tomhudson@google.com168e6342012-04-18 17:49:20 +000018class GrContext;
bsalomon@google.com77af6802013-10-02 13:04:56 +000019class GrCoordTransform;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000020class GrEffect;
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +000021class GrVertexEffect;
twiz@google.coma5e65ec2012-08-02 15:15:16 +000022class SkString;
23
bsalomon@google.com50db75c2013-01-11 13:54:30 +000024/** Provides custom vertex shader, fragment shader, uniform data for a particular stage of the
25 Ganesh shading pipeline.
bsalomon@google.com289efe02012-05-21 20:57:59 +000026 Subclasses must have a function that produces a human-readable name:
27 static const char* Name();
bsalomon@google.com50db75c2013-01-11 13:54:30 +000028 GrEffect objects *must* be immutable: after being constructed, their fields may not change.
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000029
bsalomon97b9ab72014-07-08 06:52:35 -070030 Dynamically allocated GrEffects are managed by a per-thread memory pool. The ref count of an
31 effect must reach 0 before the thread terminates and the pool is destroyed. To create a static
32 effect use the macro GR_CREATE_STATIC_EFFECT declared below.
bsalomon@google.com289efe02012-05-21 20:57:59 +000033 */
bsalomon97b9ab72014-07-08 06:52:35 -070034class GrEffect : public SkRefCnt {
tomhudson@google.com168e6342012-04-18 17:49:20 +000035public:
bsalomon@google.coma469c282012-10-24 18:28:34 +000036 SK_DECLARE_INST_COUNT(GrEffect)
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000037
bsalomon@google.coma469c282012-10-24 18:28:34 +000038 virtual ~GrEffect();
tomhudson@google.com168e6342012-04-18 17:49:20 +000039
bsalomon@google.com371e1052013-01-11 21:08:55 +000040 /**
bsalomon@google.com371e1052013-01-11 21:08:55 +000041 * This function is used to perform optimizations. When called the color and validFlags params
bsalomon@google.comb8eb2e82013-03-28 13:46:42 +000042 * indicate whether the input components to this effect in the FS will have known values.
43 * validFlags is a bitfield of GrColorComponentFlags. The function updates both params to
44 * indicate known values of its output. A component of the color param only has meaning if the
45 * corresponding bit in validFlags is set.
bsalomon@google.com371e1052013-01-11 21:08:55 +000046 */
47 virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const = 0;
tomhudson@google.com168e6342012-04-18 17:49:20 +000048
commit-bot@chromium.orga34995e2013-10-23 05:42:03 +000049 /** Will this effect read the source color value? */
50 bool willUseInputColor() const { return fWillUseInputColor; }
51
bsalomon@google.com422e81a2012-10-25 14:11:03 +000052 /** This object, besides creating back-end-specific helper objects, is used for run-time-type-
53 identification. The factory should be an instance of templated class,
bsalomon@google.com396e61f2012-10-25 19:00:29 +000054 GrTBackendEffectFactory. It is templated on the subclass of GrEffect. The subclass must have
bsalomon@google.com422e81a2012-10-25 14:11:03 +000055 a nested type (or typedef) named GLEffect which will be the subclass of GrGLEffect created
56 by the factory.
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000057
58 Example:
bsalomon@google.com8ea78d82012-10-24 20:11:30 +000059 class MyCustomEffect : public GrEffect {
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000060 ...
bsalomon@google.com396e61f2012-10-25 19:00:29 +000061 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
62 return GrTBackendEffectFactory<MyCustomEffect>::getInstance();
bsalomon@google.comae4f96a2012-05-18 19:54:48 +000063 }
64 ...
65 };
66 */
bsalomon@google.com396e61f2012-10-25 19:00:29 +000067 virtual const GrBackendEffectFactory& getFactory() const = 0;
tomhudson@google.comb88bbd22012-05-01 12:48:07 +000068
bsalomon@google.com68b58c92013-01-17 16:50:08 +000069 /** Returns true if this and other effect conservatively draw identically. It can only return
70 true when the two effects are of the same subclass (i.e. they return the same object from
71 from getFactory()).
tomhudson@google.com1dcfa1f2012-07-09 18:21:28 +000072
bsalomon@google.com68b58c92013-01-17 16:50:08 +000073 A return value of true from isEqual() should not be used to test whether the effects would
bsalomon63e99f72014-07-21 08:03:14 -070074 generate the same shader code. To test for identical code generation use the effects' keys
75 computed by the GrBackendEffectFactory.
tomhudson@google.comd0c1a062012-07-12 17:23:52 +000076 */
bsalomon97b9ab72014-07-08 06:52:35 -070077 bool isEqual(const GrEffect& other) const {
78 if (&this->getFactory() != &other.getFactory()) {
79 return false;
80 }
81 bool result = this->onIsEqual(other);
82#ifdef SK_DEBUG
83 if (result) {
84 this->assertEquality(other);
85 }
86#endif
87 return result;
bsalomon@google.com68b58c92013-01-17 16:50:08 +000088 }
tomhudson@google.com168e6342012-04-18 17:49:20 +000089
twiz@google.coma5e65ec2012-08-02 15:15:16 +000090 /** Human-meaningful string to identify this effect; may be embedded
91 in generated shader code. */
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000092 const char* name() const;
bsalomon@google.com289efe02012-05-21 20:57:59 +000093
bsalomon@google.com77af6802013-10-02 13:04:56 +000094 int numTransforms() const { return fCoordTransforms.count(); }
95
96 /** Returns the coordinate transformation at index. index must be valid according to
97 numTransforms(). */
98 const GrCoordTransform& coordTransform(int index) const { return *fCoordTransforms[index]; }
99
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000100 int numTextures() const { return fTextureAccesses.count(); }
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000101
bsalomon@google.com6d003d12012-09-11 15:45:20 +0000102 /** Returns the access pattern for the texture at index. index must be valid according to
103 numTextures(). */
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000104 const GrTextureAccess& textureAccess(int index) const { return *fTextureAccesses[index]; }
bsalomon@google.com6d003d12012-09-11 15:45:20 +0000105
106 /** Shortcut for textureAccess(index).texture(); */
107 GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); }
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000108
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000109 /** Will this effect read the destination pixel value? */
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000110 bool willReadDstColor() const { return fWillReadDstColor; }
111
112 /** Will this effect read the fragment position? */
113 bool willReadFragmentPosition() const { return fWillReadFragmentPosition; }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000114
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +0000115 /** Will this effect emit custom vertex shader code?
116 (To set this value the effect must inherit from GrVertexEffect.) */
117 bool hasVertexCode() const { return fHasVertexCode; }
118
119 int numVertexAttribs() const {
120 SkASSERT(0 == fVertexAttribTypes.count() || fHasVertexCode);
121 return fVertexAttribTypes.count();
122 }
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000123
124 GrSLType vertexAttribType(int index) const { return fVertexAttribTypes[index]; }
125
126 static const int kMaxVertexAttribs = 2;
127
bsalomon@google.com34cccde2013-01-04 18:34:30 +0000128 /** Useful for effects that want to insert a texture matrix that is implied by the texture
129 dimensions */
130 static inline SkMatrix MakeDivByTextureWHMatrix(const GrTexture* texture) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +0000131 SkASSERT(NULL != texture);
bsalomon@google.com34cccde2013-01-04 18:34:30 +0000132 SkMatrix mat;
133 mat.setIDiv(texture->width(), texture->height());
134 return mat;
135 }
136
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000137 void* operator new(size_t size);
138 void operator delete(void* target);
139
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000140 void* operator new(size_t size, void* placement) {
141 return ::operator new(size, placement);
142 }
143 void operator delete(void* target, void* placement) {
144 ::operator delete(target, placement);
145 }
146
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000147protected:
148 /**
bsalomon@google.com77af6802013-10-02 13:04:56 +0000149 * Subclasses call this from their constructor to register coordinate transformations. The
150 * effect subclass manages the lifetime of the transformations (this function only stores a
151 * pointer). The GrCoordTransform is typically a member field of the GrEffect subclass. When the
152 * matrix has perspective, the transformed coordinates will have 3 components. Otherwise they'll
153 * have 2. This must only be called from the constructor because GrEffects are immutable.
154 */
155 void addCoordTransform(const GrCoordTransform* coordTransform);
156
157 /**
skia.committer@gmail.com91274b92013-03-13 07:01:04 +0000158 * Subclasses call this from their constructor to register GrTextureAccesses. The effect
commit-bot@chromium.org91a798f2013-09-06 15:31:06 +0000159 * subclass manages the lifetime of the accesses (this function only stores a pointer). The
bsalomon@google.com77af6802013-10-02 13:04:56 +0000160 * GrTextureAccess is typically a member field of the GrEffect subclass. This must only be
commit-bot@chromium.org91a798f2013-09-06 15:31:06 +0000161 * called from the constructor because GrEffects are immutable.
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000162 */
163 void addTextureAccess(const GrTextureAccess* textureAccess);
164
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +0000165 GrEffect()
166 : fWillReadDstColor(false)
167 , fWillReadFragmentPosition(false)
commit-bot@chromium.orga34995e2013-10-23 05:42:03 +0000168 , fWillUseInputColor(true)
bsalomon97b9ab72014-07-08 06:52:35 -0700169 , fHasVertexCode(false) {}
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000170
bsalomon0139ae32014-07-08 10:30:37 -0700171 /**
172 * Helper for down-casting to a GrEffect subclass
bsalomon@google.com6340a412013-01-22 19:55:59 +0000173 */
bsalomon0139ae32014-07-08 10:30:37 -0700174 template <typename T> static const T& CastEffect(const GrEffect& effect) {
175 return *static_cast<const T*>(&effect);
bsalomon@google.com6340a412013-01-22 19:55:59 +0000176 }
177
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000178 /**
179 * If the effect subclass will read the destination pixel value then it must call this function
180 * from its constructor. Otherwise, when its generated backend-specific effect class attempts
181 * to generate code that reads the destination pixel it will fail.
182 */
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000183 void setWillReadDstColor() { fWillReadDstColor = true; }
184
185 /**
186 * If the effect will generate a backend-specific effect that will read the fragment position
187 * in the FS then it must call this method from its constructor. Otherwise, the request to
188 * access the fragment position will be denied.
189 */
190 void setWillReadFragmentPosition() { fWillReadFragmentPosition = true; }
bsalomon@google.com26e18b52013-03-29 19:22:36 +0000191
commit-bot@chromium.orga34995e2013-10-23 05:42:03 +0000192 /**
193 * If the effect will generate a result that does not depend on the input color value then it must
194 * call this function from its constructor. Otherwise, when its generated backend-specific code
195 * might fail during variable binding due to unused variables.
196 */
197 void setWillNotUseInputColor() { fWillUseInputColor = false; }
198
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000199private:
bsalomon@google.com77af6802013-10-02 13:04:56 +0000200 SkDEBUGCODE(void assertEquality(const GrEffect& other) const;)
201
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000202 /** Subclass implements this to support isEqual(). It will only be called if it is known that
bsalomon@google.com6340a412013-01-22 19:55:59 +0000203 the two effects are of the same subclass (i.e. they return the same object from
204 getFactory()).*/
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000205 virtual bool onIsEqual(const GrEffect& other) const = 0;
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000206
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +0000207 friend class GrVertexEffect; // to set fHasVertexCode and build fVertexAttribTypes.
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000208
bsalomon@google.com77af6802013-10-02 13:04:56 +0000209 SkSTArray<4, const GrCoordTransform*, true> fCoordTransforms;
commit-bot@chromium.orgff6ea262013-03-12 12:26:08 +0000210 SkSTArray<4, const GrTextureAccess*, true> fTextureAccesses;
211 SkSTArray<kMaxVertexAttribs, GrSLType, true> fVertexAttribTypes;
commit-bot@chromium.org8d47ddc2013-05-09 14:55:46 +0000212 bool fWillReadDstColor;
213 bool fWillReadFragmentPosition;
commit-bot@chromium.orga34995e2013-10-23 05:42:03 +0000214 bool fWillUseInputColor;
commit-bot@chromium.org234d4fb2013-09-30 19:55:49 +0000215 bool fHasVertexCode;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000216
commit-bot@chromium.orga4de8c22013-09-09 13:38:37 +0000217 typedef SkRefCnt INHERITED;
tomhudson@google.com168e6342012-04-18 17:49:20 +0000218};
219
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000220/**
221 * This creates an effect outside of the effect memory pool. The effect's destructor will be called
bsalomon97b9ab72014-07-08 06:52:35 -0700222 * at global destruction time. NAME will be the name of the created GrEffect.
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000223 */
224#define GR_CREATE_STATIC_EFFECT(NAME, EFFECT_CLASS, ARGS) \
bsalomon97b9ab72014-07-08 06:52:35 -0700225static SkAlignedSStorage<sizeof(EFFECT_CLASS)> g_##NAME##_Storage; \
226static GrEffect* NAME SkNEW_PLACEMENT_ARGS(g_##NAME##_Storage.get(), EFFECT_CLASS, ARGS); \
227static SkAutoTDestroy<GrEffect> NAME##_ad(NAME);
bsalomon@google.comd42aca32013-04-23 15:37:27 +0000228
229
tomhudson@google.com168e6342012-04-18 17:49:20 +0000230#endif