2012-04-18 17:49:20 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
2012-10-24 20:11:30 +00:00
|
|
|
#ifndef GrEffect_DEFINED
|
|
|
|
#define GrEffect_DEFINED
|
2012-04-18 17:49:20 +00:00
|
|
|
|
2013-01-11 21:08:55 +00:00
|
|
|
#include "GrColor.h"
|
2012-10-24 19:07:10 +00:00
|
|
|
#include "GrEffectUnitTest.h"
|
2013-01-11 21:08:55 +00:00
|
|
|
#include "GrNoncopyable.h"
|
|
|
|
#include "GrRefCnt.h"
|
2013-01-04 18:34:30 +00:00
|
|
|
#include "GrTexture.h"
|
2012-09-11 13:29:29 +00:00
|
|
|
#include "GrTextureAccess.h"
|
2013-03-12 12:26:08 +00:00
|
|
|
#include "GrTypesPriv.h"
|
2012-04-20 18:35:38 +00:00
|
|
|
|
2012-10-29 19:51:22 +00:00
|
|
|
class GrBackendEffectFactory;
|
2012-04-18 17:49:20 +00:00
|
|
|
class GrContext;
|
2013-01-16 15:16:18 +00:00
|
|
|
class GrEffect;
|
2012-08-02 15:15:16 +00:00
|
|
|
class SkString;
|
|
|
|
|
2013-01-16 15:16:18 +00:00
|
|
|
/**
|
|
|
|
* A Wrapper class for GrEffect. Its ref-count will track owners that may use effects to enqueue
|
|
|
|
* new draw operations separately from ownership within a deferred drawing queue. When the
|
|
|
|
* GrEffectRef ref count reaches zero the scratch GrResources owned by the effect can be recycled
|
|
|
|
* in service of later draws. However, the deferred draw queue may still own direct references to
|
|
|
|
* the underlying GrEffect.
|
|
|
|
*/
|
|
|
|
class GrEffectRef : public SkRefCnt {
|
|
|
|
public:
|
|
|
|
SK_DECLARE_INST_COUNT(GrEffectRef);
|
|
|
|
|
|
|
|
GrEffect* get() { return fEffect; }
|
|
|
|
const GrEffect* get() const { return fEffect; }
|
|
|
|
|
2013-01-22 19:55:59 +00:00
|
|
|
const GrEffect* operator-> () { return fEffect; }
|
|
|
|
const GrEffect* operator-> () const { return fEffect; }
|
|
|
|
|
2013-01-16 15:16:18 +00:00
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void* target);
|
|
|
|
|
|
|
|
private:
|
2013-01-16 15:25:55 +00:00
|
|
|
friend class GrEffect; // to construct these
|
2013-01-16 15:16:18 +00:00
|
|
|
|
|
|
|
explicit GrEffectRef(GrEffect* effect);
|
|
|
|
|
|
|
|
virtual ~GrEffectRef();
|
|
|
|
|
|
|
|
GrEffect* fEffect;
|
|
|
|
|
|
|
|
typedef SkRefCnt INHERITED;
|
|
|
|
};
|
|
|
|
|
2013-01-11 13:54:30 +00:00
|
|
|
/** Provides custom vertex shader, fragment shader, uniform data for a particular stage of the
|
|
|
|
Ganesh shading pipeline.
|
2012-05-21 20:57:59 +00:00
|
|
|
Subclasses must have a function that produces a human-readable name:
|
|
|
|
static const char* Name();
|
2013-01-11 13:54:30 +00:00
|
|
|
GrEffect objects *must* be immutable: after being constructed, their fields may not change.
|
2013-01-16 15:16:18 +00:00
|
|
|
|
|
|
|
GrEffect subclass objects should be created by factory functions that return GrEffectRef.
|
|
|
|
There is no public way to wrap a GrEffect in a GrEffectRef. Thus, a factory should be a static
|
|
|
|
member function of a GrEffect subclass.
|
2013-01-22 19:55:59 +00:00
|
|
|
|
|
|
|
Because almost no code should ever handle a GrEffect outside of a GrEffectRef, we privately
|
|
|
|
inherit from GrRefCnt to help prevent accidental direct ref'ing/unref'ing of effects.
|
2012-05-21 20:57:59 +00:00
|
|
|
*/
|
2013-01-22 19:55:59 +00:00
|
|
|
class GrEffect : private GrRefCnt {
|
2012-04-18 17:49:20 +00:00
|
|
|
public:
|
2012-10-24 18:28:34 +00:00
|
|
|
SK_DECLARE_INST_COUNT(GrEffect)
|
2012-06-21 20:25:03 +00:00
|
|
|
|
2013-03-20 19:19:53 +00:00
|
|
|
/**
|
|
|
|
* The types of vertex coordinates available to an effect in the vertex shader. Effects can
|
|
|
|
* require their own vertex attribute but these coordinates are made available by the framework
|
|
|
|
* in all programs. kCustom_CoordsType is provided to signify that an alternative set of coords
|
|
|
|
* is used (usually an explicit vertex attribute) but its meaning is determined by the effect
|
|
|
|
* subclass.
|
|
|
|
*/
|
|
|
|
enum CoordsType {
|
|
|
|
kLocal_CoordsType,
|
|
|
|
kPosition_CoordsType,
|
|
|
|
|
|
|
|
kCustom_CoordsType,
|
|
|
|
};
|
|
|
|
|
2012-10-24 18:28:34 +00:00
|
|
|
virtual ~GrEffect();
|
2012-04-18 17:49:20 +00:00
|
|
|
|
2013-01-11 21:08:55 +00:00
|
|
|
/**
|
|
|
|
* Flags for getConstantColorComponents. They are defined so that the bit order reflects the
|
|
|
|
* GrColor shift order.
|
|
|
|
*/
|
|
|
|
enum ValidComponentFlags {
|
|
|
|
kR_ValidComponentFlag = 1 << (GrColor_SHIFT_R / 8),
|
|
|
|
kG_ValidComponentFlag = 1 << (GrColor_SHIFT_G / 8),
|
|
|
|
kB_ValidComponentFlag = 1 << (GrColor_SHIFT_B / 8),
|
|
|
|
kA_ValidComponentFlag = 1 << (GrColor_SHIFT_A / 8),
|
|
|
|
|
|
|
|
kAll_ValidComponentFlags = (kR_ValidComponentFlag | kG_ValidComponentFlag |
|
|
|
|
kB_ValidComponentFlag | kA_ValidComponentFlag)
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This function is used to perform optimizations. When called the color and validFlags params
|
|
|
|
* indicate whether the input components to this effect in the FS will have known values. The
|
|
|
|
* function updates both params to indicate known values of its output. A component of the color
|
|
|
|
* param only has meaning if the corresponding bit in validFlags is set.
|
|
|
|
*/
|
|
|
|
virtual void getConstantColorComponents(GrColor* color, uint32_t* validFlags) const = 0;
|
2012-04-18 17:49:20 +00:00
|
|
|
|
2012-10-25 14:11:03 +00:00
|
|
|
/** This object, besides creating back-end-specific helper objects, is used for run-time-type-
|
|
|
|
identification. The factory should be an instance of templated class,
|
2012-10-25 19:00:29 +00:00
|
|
|
GrTBackendEffectFactory. It is templated on the subclass of GrEffect. The subclass must have
|
2012-10-25 14:11:03 +00:00
|
|
|
a nested type (or typedef) named GLEffect which will be the subclass of GrGLEffect created
|
|
|
|
by the factory.
|
2012-05-18 19:54:48 +00:00
|
|
|
|
|
|
|
Example:
|
2012-10-24 20:11:30 +00:00
|
|
|
class MyCustomEffect : public GrEffect {
|
2012-05-18 19:54:48 +00:00
|
|
|
...
|
2012-10-25 19:00:29 +00:00
|
|
|
virtual const GrBackendEffectFactory& getFactory() const SK_OVERRIDE {
|
|
|
|
return GrTBackendEffectFactory<MyCustomEffect>::getInstance();
|
2012-05-18 19:54:48 +00:00
|
|
|
}
|
|
|
|
...
|
|
|
|
};
|
|
|
|
*/
|
2012-10-25 19:00:29 +00:00
|
|
|
virtual const GrBackendEffectFactory& getFactory() const = 0;
|
2012-05-01 12:48:07 +00:00
|
|
|
|
2013-01-17 16:50:08 +00:00
|
|
|
/** Returns true if this and other effect conservatively draw identically. It can only return
|
|
|
|
true when the two effects are of the same subclass (i.e. they return the same object from
|
|
|
|
from getFactory()).
|
|
|
|
|
|
|
|
A return value of true from isEqual() should not be used to test whether the effects would
|
|
|
|
generate the same shader code. To test for identical code generation use the EffectKey
|
|
|
|
computed by the GrBackendEffectFactory:
|
|
|
|
effectA.getFactory().glEffectKey(effectA) == effectB.getFactory().glEffectKey(effectB).
|
2012-07-12 17:23:52 +00:00
|
|
|
*/
|
2013-01-22 19:55:59 +00:00
|
|
|
bool isEqual(const GrEffectRef& other) const {
|
2013-01-23 19:53:46 +00:00
|
|
|
return this->isEqual(*other.get());
|
2013-01-17 16:50:08 +00:00
|
|
|
}
|
2012-05-10 12:13:36 +00:00
|
|
|
|
2012-08-02 15:15:16 +00:00
|
|
|
/** Human-meaningful string to identify this effect; may be embedded
|
|
|
|
in generated shader code. */
|
2012-10-29 19:51:22 +00:00
|
|
|
const char* name() const;
|
2012-05-21 20:57:59 +00:00
|
|
|
|
2013-01-11 13:54:30 +00:00
|
|
|
int numTextures() const { return fTextureAccesses.count(); }
|
2012-04-18 17:49:20 +00:00
|
|
|
|
2012-09-11 15:45:20 +00:00
|
|
|
/** Returns the access pattern for the texture at index. index must be valid according to
|
|
|
|
numTextures(). */
|
2013-01-11 13:54:30 +00:00
|
|
|
const GrTextureAccess& textureAccess(int index) const { return *fTextureAccesses[index]; }
|
2012-09-11 15:45:20 +00:00
|
|
|
|
|
|
|
/** Shortcut for textureAccess(index).texture(); */
|
|
|
|
GrTexture* texture(int index) const { return this->textureAccess(index).getTexture(); }
|
2012-08-02 15:15:16 +00:00
|
|
|
|
2013-03-12 12:26:08 +00:00
|
|
|
|
|
|
|
int numVertexAttribs() const { return fVertexAttribTypes.count(); }
|
|
|
|
|
|
|
|
GrSLType vertexAttribType(int index) const { return fVertexAttribTypes[index]; }
|
|
|
|
|
|
|
|
static const int kMaxVertexAttribs = 2;
|
|
|
|
|
|
|
|
|
2013-01-04 18:34:30 +00:00
|
|
|
/** Useful for effects that want to insert a texture matrix that is implied by the texture
|
|
|
|
dimensions */
|
|
|
|
static inline SkMatrix MakeDivByTextureWHMatrix(const GrTexture* texture) {
|
|
|
|
GrAssert(NULL != texture);
|
|
|
|
SkMatrix mat;
|
|
|
|
mat.setIDiv(texture->width(), texture->height());
|
|
|
|
return mat;
|
|
|
|
}
|
|
|
|
|
2012-07-24 21:36:16 +00:00
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void* target);
|
|
|
|
|
2013-01-23 21:37:01 +00:00
|
|
|
/** These functions are used when recording effects into a deferred drawing queue. The inc call
|
|
|
|
keeps the effect alive outside of GrEffectRef while allowing any resources owned by the
|
|
|
|
effect to be returned to the cache for reuse. The dec call must balance the inc call. */
|
|
|
|
void incDeferredRefCounts() const {
|
|
|
|
this->ref();
|
|
|
|
int count = fTextureAccesses.count();
|
|
|
|
for (int t = 0; t < count; ++t) {
|
|
|
|
fTextureAccesses[t]->getTexture()->incDeferredRefCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void decDeferredRefCounts() const {
|
|
|
|
int count = fTextureAccesses.count();
|
|
|
|
for (int t = 0; t < count; ++t) {
|
|
|
|
fTextureAccesses[t]->getTexture()->decDeferredRefCount();
|
|
|
|
}
|
|
|
|
this->unref();
|
|
|
|
}
|
2013-01-22 19:55:59 +00:00
|
|
|
|
2013-01-11 13:54:30 +00:00
|
|
|
protected:
|
|
|
|
/**
|
2013-03-13 07:01:04 +00:00
|
|
|
* Subclasses call this from their constructor to register GrTextureAccesses. The effect
|
|
|
|
* subclass manages the lifetime of the accesses (this function only stores a pointer). This
|
2013-03-12 12:26:08 +00:00
|
|
|
* must only be called from the constructor because GrEffects are immutable.
|
2013-01-11 13:54:30 +00:00
|
|
|
*/
|
|
|
|
void addTextureAccess(const GrTextureAccess* textureAccess);
|
|
|
|
|
2013-03-12 12:26:08 +00:00
|
|
|
/**
|
2013-03-13 07:01:04 +00:00
|
|
|
* Subclasses call this from their constructor to register vertex attributes (at most
|
|
|
|
* kMaxVertexAttribs). This must only be called from the constructor because GrEffects are
|
2013-03-12 12:26:08 +00:00
|
|
|
* immutable.
|
|
|
|
*/
|
|
|
|
void addVertexAttrib(GrSLType type);
|
|
|
|
|
2013-01-16 15:51:47 +00:00
|
|
|
GrEffect() : fEffectRef(NULL) {};
|
2013-01-16 15:16:18 +00:00
|
|
|
|
2013-01-22 19:55:59 +00:00
|
|
|
/** This should be called by GrEffect subclass factories. See the comment on AutoEffectUnref for
|
|
|
|
an example factory function. */
|
2013-01-16 15:51:47 +00:00
|
|
|
static GrEffectRef* CreateEffectRef(GrEffect* effect) {
|
|
|
|
if (NULL == effect->fEffectRef) {
|
|
|
|
effect->fEffectRef = SkNEW_ARGS(GrEffectRef, (effect));
|
2013-01-16 15:16:18 +00:00
|
|
|
} else {
|
2013-01-16 15:51:47 +00:00
|
|
|
effect->fEffectRef->ref();
|
2013-01-16 15:16:18 +00:00
|
|
|
}
|
2013-01-16 15:51:47 +00:00
|
|
|
return effect->fEffectRef;
|
2013-01-16 15:16:18 +00:00
|
|
|
}
|
|
|
|
|
2013-01-23 19:53:46 +00:00
|
|
|
static const GrEffectRef* CreateEffectRef(const GrEffect* effect) {
|
|
|
|
return CreateEffectRef(const_cast<GrEffect*>(effect));
|
|
|
|
}
|
|
|
|
|
2013-01-22 19:55:59 +00:00
|
|
|
/** Helper used in subclass factory functions to unref the effect after it has been wrapped in a
|
|
|
|
GrEffectRef. E.g.:
|
|
|
|
|
|
|
|
class EffectSubclass : public GrEffect {
|
|
|
|
public:
|
|
|
|
GrEffectRef* Create(ParamType1 param1, ParamType2 param2, ...) {
|
|
|
|
AutoEffectUnref effect(SkNEW_ARGS(EffectSubclass, (param1, param2, ...)));
|
|
|
|
return CreateEffectRef(effect);
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
class AutoEffectUnref {
|
|
|
|
public:
|
|
|
|
AutoEffectUnref(GrEffect* effect) : fEffect(effect) { }
|
2013-01-23 21:37:01 +00:00
|
|
|
~AutoEffectUnref() { fEffect->unref(); }
|
2013-01-22 19:55:59 +00:00
|
|
|
operator GrEffect*() { return fEffect; }
|
|
|
|
private:
|
|
|
|
GrEffect* fEffect;
|
|
|
|
};
|
|
|
|
|
|
|
|
/** Helper for getting the GrEffect out of a GrEffectRef and down-casting to a GrEffect subclass
|
|
|
|
*/
|
|
|
|
template <typename T>
|
2013-01-22 20:35:13 +00:00
|
|
|
static const T& CastEffect(const GrEffect& effectRef) {
|
|
|
|
return *static_cast<const T*>(&effectRef);
|
2013-01-22 19:55:59 +00:00
|
|
|
}
|
|
|
|
|
2012-07-12 17:23:52 +00:00
|
|
|
private:
|
2013-01-23 19:53:46 +00:00
|
|
|
bool isEqual(const GrEffect& other) const {
|
|
|
|
if (&this->getFactory() != &other.getFactory()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool result = this->onIsEqual(other);
|
|
|
|
#if GR_DEBUG
|
|
|
|
if (result) {
|
|
|
|
GrAssert(this->numTextures() == other.numTextures());
|
|
|
|
for (int i = 0; i < this->numTextures(); ++i) {
|
|
|
|
GrAssert(*fTextureAccesses[i] == *other.fTextureAccesses[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return result;
|
|
|
|
}
|
2013-01-17 16:50:08 +00:00
|
|
|
|
|
|
|
/** Subclass implements this to support isEqual(). It will only be called if it is known that
|
2013-01-22 19:55:59 +00:00
|
|
|
the two effects are of the same subclass (i.e. they return the same object from
|
|
|
|
getFactory()).*/
|
2013-01-22 20:35:13 +00:00
|
|
|
virtual bool onIsEqual(const GrEffect& other) const = 0;
|
2013-01-17 16:50:08 +00:00
|
|
|
|
2013-01-22 19:55:59 +00:00
|
|
|
void EffectRefDestroyed() { fEffectRef = NULL; }
|
2013-01-16 15:16:18 +00:00
|
|
|
|
2013-01-23 21:37:01 +00:00
|
|
|
friend class GrEffectRef; // to call EffectRefDestroyed()
|
2013-01-23 19:53:46 +00:00
|
|
|
friend class GrEffectStage; // to rewrap GrEffect in GrEffectRef when restoring an effect-stage
|
2013-01-23 21:37:01 +00:00
|
|
|
// from deferred state, to call isEqual on naked GrEffects, and
|
|
|
|
// to inc/dec deferred ref counts.
|
2013-01-16 15:16:18 +00:00
|
|
|
|
2013-03-12 12:26:08 +00:00
|
|
|
SkSTArray<4, const GrTextureAccess*, true> fTextureAccesses;
|
|
|
|
SkSTArray<kMaxVertexAttribs, GrSLType, true> fVertexAttribTypes;
|
|
|
|
GrEffectRef* fEffectRef;
|
2013-01-16 15:16:18 +00:00
|
|
|
|
2012-05-10 12:13:36 +00:00
|
|
|
typedef GrRefCnt INHERITED;
|
2012-04-18 17:49:20 +00:00
|
|
|
};
|
|
|
|
|
2013-01-16 15:16:18 +00:00
|
|
|
inline GrEffectRef::GrEffectRef(GrEffect* effect) {
|
|
|
|
GrAssert(NULL != effect);
|
|
|
|
effect->ref();
|
|
|
|
fEffect = effect;
|
|
|
|
}
|
|
|
|
|
2012-04-18 17:49:20 +00:00
|
|
|
#endif
|