blob: 7b7cd33b173168b5ecbceeb7949eb57bac16ef3a [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.com371e1052013-01-11 21:08:55 +000013#include "GrNoncopyable.h"
14#include "GrRefCnt.h"
bsalomon@google.com34cccde2013-01-04 18:34:30 +000015#include "GrTexture.h"
bsalomon@google.com047696c2012-09-11 13:29:29 +000016#include "GrTextureAccess.h"
tomhudson@google.com07eecdc2012-04-20 18:35:38 +000017
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +000018class GrBackendEffectFactory;
tomhudson@google.com168e6342012-04-18 17:49:20 +000019class GrContext;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000020class GrEffect;
twiz@google.coma5e65ec2012-08-02 15:15:16 +000021class SkString;
22
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000023/**
24 * A Wrapper class for GrEffect. Its ref-count will track owners that may use effects to enqueue
25 * new draw operations separately from ownership within a deferred drawing queue. When the
26 * GrEffectRef ref count reaches zero the scratch GrResources owned by the effect can be recycled
27 * in service of later draws. However, the deferred draw queue may still own direct references to
28 * the underlying GrEffect.
29 */
30class GrEffectRef : public SkRefCnt {
31public:
32 SK_DECLARE_INST_COUNT(GrEffectRef);
33
34 GrEffect* get() { return fEffect; }
35 const GrEffect* get() const { return fEffect; }
36
bsalomon@google.com6340a412013-01-22 19:55:59 +000037 const GrEffect* operator-> () { return fEffect; }
38 const GrEffect* operator-> () const { return fEffect; }
39
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000040 void* operator new(size_t size);
41 void operator delete(void* target);
42
43private:
bsalomon@google.com64287c52013-01-16 15:25:55 +000044 friend class GrEffect; // to construct these
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000045
46 explicit GrEffectRef(GrEffect* effect);
47
48 virtual ~GrEffectRef();
49
50 GrEffect* fEffect;
51
52 typedef SkRefCnt INHERITED;
53};
54
bsalomon@google.com50db75c2013-01-11 13:54:30 +000055/** Provides custom vertex shader, fragment shader, uniform data for a particular stage of the
56 Ganesh shading pipeline.
bsalomon@google.com289efe02012-05-21 20:57:59 +000057 Subclasses must have a function that produces a human-readable name:
58 static const char* Name();
bsalomon@google.com50db75c2013-01-11 13:54:30 +000059 GrEffect objects *must* be immutable: after being constructed, their fields may not change.
bsalomon@google.com0ac6af42013-01-16 15:16:18 +000060
61 GrEffect subclass objects should be created by factory functions that return GrEffectRef.
62 There is no public way to wrap a GrEffect in a GrEffectRef. Thus, a factory should be a static
63 member function of a GrEffect subclass.
bsalomon@google.com6340a412013-01-22 19:55:59 +000064
65 Because almost no code should ever handle a GrEffect outside of a GrEffectRef, we privately
66 inherit from GrRefCnt to help prevent accidental direct ref'ing/unref'ing of effects.
bsalomon@google.com289efe02012-05-21 20:57:59 +000067 */
bsalomon@google.com6340a412013-01-22 19:55:59 +000068class GrEffect : private GrRefCnt {
tomhudson@google.com168e6342012-04-18 17:49:20 +000069public:
bsalomon@google.coma469c282012-10-24 18:28:34 +000070 SK_DECLARE_INST_COUNT(GrEffect)
robertphillips@google.com15e9d3e2012-06-21 20:25:03 +000071
bsalomon@google.coma469c282012-10-24 18:28:34 +000072 virtual ~GrEffect();
tomhudson@google.com168e6342012-04-18 17:49:20 +000073
bsalomon@google.com371e1052013-01-11 21:08:55 +000074 /**
75 * Flags for getConstantColorComponents. They are defined so that the bit order reflects the
76 * GrColor shift order.
77 */
78 enum ValidComponentFlags {
79 kR_ValidComponentFlag = 1 << (GrColor_SHIFT_R / 8),
80 kG_ValidComponentFlag = 1 << (GrColor_SHIFT_G / 8),
81 kB_ValidComponentFlag = 1 << (GrColor_SHIFT_B / 8),
82 kA_ValidComponentFlag = 1 << (GrColor_SHIFT_A / 8),
83
84 kAll_ValidComponentFlags = (kR_ValidComponentFlag | kG_ValidComponentFlag |
85 kB_ValidComponentFlag | kA_ValidComponentFlag)
86 };
87
88 /**
89 * This function is used to perform optimizations. When called the color and validFlags params
90 * indicate whether the input components to this effect in the FS will have known values. The
91 * function updates both params to indicate known values of its output. A component of the color
92 * param only has meaning if the corresponding bit in validFlags is set.
93 */
94 virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const = 0;
tomhudson@google.com168e6342012-04-18 17:49:20 +000095
bsalomon@google.com422e81a2012-10-25 14:11:03 +000096 /** This object, besides creating back-end-specific helper objects, is used for run-time-type-
97 identification. The factory should be an instance of templated class,
bsalomon@google.com396e61f2012-10-25 19:00:29 +000098 GrTBackendEffectFactory. It is templated on the subclass of GrEffect. The subclass must have
bsalomon@google.com422e81a2012-10-25 14:11:03 +000099 a nested type (or typedef) named GLEffect which will be the subclass of GrGLEffect created
100 by the factory.
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000101
102 Example:
bsalomon@google.com8ea78d82012-10-24 20:11:30 +0000103 class MyCustomEffect : public GrEffect {
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000104 ...
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000105 virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
106 return GrTBackendEffectFactory<MyCustomEffect>::getInstance();
bsalomon@google.comae4f96a2012-05-18 19:54:48 +0000107 }
108 ...
109 };
110 */
bsalomon@google.com396e61f2012-10-25 19:00:29 +0000111 virtual const GrBackendEffectFactory& getFactory() const = 0;
tomhudson@google.comb88bbd22012-05-01 12:48:07 +0000112
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000113 /** Returns true if this and other effect conservatively draw identically. It can only return
114 true when the two effects are of the same subclass (i.e. they return the same object from
115 from getFactory()).
tomhudson@google.com1dcfa1f2012-07-09 18:21:28 +0000116
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000117 A return value of true from isEqual() should not be used to test whether the effects would
118 generate the same shader code. To test for identical code generation use the EffectKey
119 computed by the GrBackendEffectFactory:
120 effectA.getFactory().glEffectKey(effectA) == effectB.getFactory().glEffectKey(effectB).
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000121 */
bsalomon@google.com6340a412013-01-22 19:55:59 +0000122 bool isEqual(const GrEffectRef& other) const {
bsalomon@google.comca432082013-01-23 19:53:46 +0000123 return this->isEqual(*other.get());
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000124 }
tomhudson@google.com168e6342012-04-18 17:49:20 +0000125
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000126 /** Human-meaningful string to identify this effect; may be embedded
127 in generated shader code. */
bsalomon@google.com2eaaefd2012-10-29 19:51:22 +0000128 const char* name() const;
bsalomon@google.com289efe02012-05-21 20:57:59 +0000129
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000130 int numTextures() const { return fTextureAccesses.count(); }
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000131
bsalomon@google.com6d003d12012-09-11 15:45:20 +0000132 /** Returns the access pattern for the texture at index. index must be valid according to
133 numTextures(). */
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000134 const GrTextureAccess& textureAccess(int index) const { return *fTextureAccesses[index]; }
bsalomon@google.com6d003d12012-09-11 15:45:20 +0000135
136 /** Shortcut for textureAccess(index).texture(); */
137 GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); }
twiz@google.coma5e65ec2012-08-02 15:15:16 +0000138
bsalomon@google.com34cccde2013-01-04 18:34:30 +0000139 /** Useful for effects that want to insert a texture matrix that is implied by the texture
140 dimensions */
141 static inline SkMatrix MakeDivByTextureWHMatrix(const GrTexture* texture) {
142 GrAssert(NULL != texture);
143 SkMatrix mat;
144 mat.setIDiv(texture->width(), texture->height());
145 return mat;
146 }
147
tomhudson@google.comdcba4c22012-07-24 21:36:16 +0000148 void* operator new(size_t size);
149 void operator delete(void* target);
150
bsalomon@google.com838f6e12013-01-23 21:37:01 +0000151 /** These functions are used when recording effects into a deferred drawing queue. The inc call
152 keeps the effect alive outside of GrEffectRef while allowing any resources owned by the
153 effect to be returned to the cache for reuse. The dec call must balance the inc call. */
154 void incDeferredRefCounts() const {
155 this->ref();
156 int count = fTextureAccesses.count();
157 for (int t = 0; t < count; ++t) {
158 fTextureAccesses[t]->getTexture()->incDeferredRefCount();
159 }
160 }
161 void decDeferredRefCounts() const {
162 int count = fTextureAccesses.count();
163 for (int t = 0; t < count; ++t) {
164 fTextureAccesses[t]->getTexture()->decDeferredRefCount();
165 }
166 this->unref();
167 }
bsalomon@google.com6340a412013-01-22 19:55:59 +0000168
bsalomon@google.com50db75c2013-01-11 13:54:30 +0000169protected:
170 /**
171 * Subclasses call this from their constructor to register GrTextureAcceses. The effect subclass
172 * manages the lifetime of the accesses (this function only stores a pointer). This must only be
173 * called from the constructor because GrEffects are supposed to be immutable.
174 */
175 void addTextureAccess(const GrTextureAccess* textureAccess);
176
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000177 GrEffect() : fEffectRef(NULL) {};
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000178
bsalomon@google.com6340a412013-01-22 19:55:59 +0000179 /** This should be called by GrEffect subclass factories. See the comment on AutoEffectUnref for
180 an example factory function. */
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000181 static GrEffectRef* CreateEffectRef(GrEffect* effect) {
182 if (NULL == effect->fEffectRef) {
183 effect->fEffectRef = SkNEW_ARGS(GrEffectRef, (effect));
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000184 } else {
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000185 effect->fEffectRef->ref();
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000186 }
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000187 return effect->fEffectRef;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000188 }
189
bsalomon@google.comca432082013-01-23 19:53:46 +0000190 static const GrEffectRef* CreateEffectRef(const GrEffect* effect) {
191 return CreateEffectRef(const_cast<GrEffect*>(effect));
192 }
193
bsalomon@google.com6340a412013-01-22 19:55:59 +0000194 /** Helper used in subclass factory functions to unref the effect after it has been wrapped in a
195 GrEffectRef. E.g.:
196
197 class EffectSubclass : public GrEffect {
198 public:
199 GrEffectRef* Create(ParamType1 param1, ParamType2 param2, ...) {
200 AutoEffectUnref effect(SkNEW_ARGS(EffectSubclass, (param1, param2, ...)));
201 return CreateEffectRef(effect);
202 }
203 */
204 class AutoEffectUnref {
205 public:
206 AutoEffectUnref(GrEffect* effect) : fEffect(effect) { }
bsalomon@google.com838f6e12013-01-23 21:37:01 +0000207 ~AutoEffectUnref() { fEffect->unref(); }
bsalomon@google.com6340a412013-01-22 19:55:59 +0000208 operator GrEffect*() { return fEffect; }
209 private:
210 GrEffect* fEffect;
211 };
212
213 /** Helper for getting the GrEffect out of a GrEffectRef and down-casting to a GrEffect subclass
214 */
215 template <typename T>
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000216 static const T& CastEffect(const GrEffect& effectRef) {
217 return *static_cast<const T*>(&effectRef);
bsalomon@google.com6340a412013-01-22 19:55:59 +0000218 }
219
tomhudson@google.comd0c1a062012-07-12 17:23:52 +0000220private:
bsalomon@google.comca432082013-01-23 19:53:46 +0000221 bool isEqual(const GrEffect& other) const {
222 if (&this->getFactory() != &other.getFactory()) {
223 return false;
224 }
225 bool result = this->onIsEqual(other);
226#if GR_DEBUG
227 if (result) {
228 GrAssert(this->numTextures() == other.numTextures());
229 for (int i = 0; i < this->numTextures(); ++i) {
230 GrAssert(*fTextureAccesses[i] == *other.fTextureAccesses[i]);
231 }
232 }
233#endif
234 return result;
235 }
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000236
237 /** Subclass implements this to support isEqual(). It will only be called if it is known that
bsalomon@google.com6340a412013-01-22 19:55:59 +0000238 the two effects are of the same subclass (i.e. they return the same object from
239 getFactory()).*/
bsalomon@google.com8a252f72013-01-22 20:35:13 +0000240 virtual bool onIsEqual(const GrEffect& other) const = 0;
bsalomon@google.com68b58c92013-01-17 16:50:08 +0000241
bsalomon@google.com6340a412013-01-22 19:55:59 +0000242 void EffectRefDestroyed() { fEffectRef = NULL; }
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000243
bsalomon@google.com838f6e12013-01-23 21:37:01 +0000244 friend class GrEffectRef; // to call EffectRefDestroyed()
bsalomon@google.comca432082013-01-23 19:53:46 +0000245 friend class GrEffectStage; // to rewrap GrEffect in GrEffectRef when restoring an effect-stage
bsalomon@google.com838f6e12013-01-23 21:37:01 +0000246 // from deferred state, to call isEqual on naked GrEffects, and
247 // to inc/dec deferred ref counts.
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000248
249 SkSTArray<4, const GrTextureAccess*, true> fTextureAccesses;
bsalomon@google.coma1ebbe42013-01-16 15:51:47 +0000250 GrEffectRef* fEffectRef;
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000251
tomhudson@google.comd8f856c2012-05-10 12:13:36 +0000252 typedef GrRefCnt INHERITED;
tomhudson@google.com168e6342012-04-18 17:49:20 +0000253};
254
bsalomon@google.com0ac6af42013-01-16 15:16:18 +0000255inline GrEffectRef::GrEffectRef(GrEffect* effect) {
256 GrAssert(NULL != effect);
257 effect->ref();
258 fEffect = effect;
259}
260
tomhudson@google.com168e6342012-04-18 17:49:20 +0000261#endif