blob: 6aff82ef507de001395aebe333578628a9ea288e [file] [log] [blame]
bsalomon@google.comc7818882013-03-20 19:19:53 +00001
2#ifndef GrDrawEffect_DEFINED
3#define GrDrawEffect_DEFINED
4
5#include "GrEffectStage.h"
6
7/**
8 * This class is used to communicate the particular GrEffect used in a draw to the backend-specific
9 * effect subclass (e.g. GrGLEffect). It is used to by the backend-specific class to generate a
10 * cache key for the effect, generate code on a program cache miss, and to upload uniform values to
11 * the program.
12 * In addition to the effect, it also communicates any changes between the relationship between
13 * the view matrix and local coordinate system since the effect was installed in its GrDrawState.
14 * The typical use case is that sometime after an effect was installed a decision was made to draw
15 * in device coordinates (i.e. use an identity view-matrix). In such a case the GrDrawEffect's
16 * coord-change-matrix would be the inverse of the view matrix that was set when the effect was
bsalomon@google.com77af6802013-10-02 13:04:56 +000017 * installed.
bsalomon@google.comc7818882013-03-20 19:19:53 +000018 */
19class GrDrawEffect {
20public:
21 GrDrawEffect(const GrEffectStage& stage, bool explicitLocalCoords)
22 : fEffectStage(&stage)
23 , fExplicitLocalCoords(explicitLocalCoords) {
tfarina@chromium.orgf6de4752013-08-17 00:02:59 +000024 SkASSERT(NULL != fEffectStage);
25 SkASSERT(NULL != fEffectStage->getEffect());
bsalomon@google.comc7818882013-03-20 19:19:53 +000026 }
bsalomonf99f8842014-07-07 11:54:23 -070027 const GrEffect* effect() const { return fEffectStage->getEffect(); }
bsalomon@google.comc7818882013-03-20 19:19:53 +000028
29 template <typename T>
bsalomonf99f8842014-07-07 11:54:23 -070030 const T& castEffect() const { return *static_cast<const T*>(this->effect()); }
bsalomon@google.comc7818882013-03-20 19:19:53 +000031
32 const SkMatrix& getCoordChangeMatrix() const {
33 if (fExplicitLocalCoords) {
34 return SkMatrix::I();
35 } else {
36 return fEffectStage->getCoordChangeMatrix();
37 }
38 }
39
40 bool programHasExplicitLocalCoords() const { return fExplicitLocalCoords; }
41
42 const int* getVertexAttribIndices() const { return fEffectStage->getVertexAttribIndices(); }
43 int getVertexAttribIndexCount() const { return fEffectStage->getVertexAttribIndexCount(); }
44
45private:
46 const GrEffectStage* fEffectStage;
47 bool fExplicitLocalCoords;
48};
49
50#endif