Index: src/gpu/effects/GrDitherEffect.cpp |
diff --git a/src/gpu/effects/GrDitherEffect.cpp b/src/gpu/effects/GrDitherEffect.cpp |
index 443df9ed362991b49b78c0c57002dbd65ed0392f..35726fdea7f5d92942eaa2f65b4ca51f133e7d43 100644 |
--- a/src/gpu/effects/GrDitherEffect.cpp |
+++ b/src/gpu/effects/GrDitherEffect.cpp |
@@ -68,10 +68,10 @@ GrEffect* DitherEffect::TestCreate(SkRandom*, |
class GLDitherEffect : public GrGLEffect { |
public: |
- GLDitherEffect(const GrBackendEffectFactory&, const GrDrawEffect&); |
+ GLDitherEffect(const GrBackendEffectFactory&, const GrEffect&); |
virtual void emitCode(GrGLProgramBuilder* builder, |
- const GrDrawEffect& drawEffect, |
+ const GrEffect& effect, |
const GrEffectKey& key, |
const char* outputColor, |
const char* inputColor, |
@@ -83,12 +83,12 @@ private: |
}; |
GLDitherEffect::GLDitherEffect(const GrBackendEffectFactory& factory, |
- const GrDrawEffect& drawEffect) |
+ const GrEffect& effect) |
: INHERITED (factory) { |
} |
void GLDitherEffect::emitCode(GrGLProgramBuilder* builder, |
- const GrDrawEffect& drawEffect, |
+ const GrEffect& effect, |
const GrEffectKey& key, |
const char* outputColor, |
const char* inputColor, |