| Index: src/gpu/effects/GrSimpleTextureEffect.h
|
| diff --git a/src/gpu/effects/GrSimpleTextureEffect.h b/src/gpu/effects/GrSimpleTextureEffect.h
|
| index f2c8d16a869d8159c9f12ef5d63bd1305236710d..9f63fb9493e7e5140287c122b4990842a9bfb1b0 100644
|
| --- a/src/gpu/effects/GrSimpleTextureEffect.h
|
| +++ b/src/gpu/effects/GrSimpleTextureEffect.h
|
| @@ -10,7 +10,6 @@
|
|
|
| #include "GrSingleTextureEffect.h"
|
|
|
| -class GrGLSimpleTextureEffect;
|
| class GrInvariantOutput;
|
|
|
| /**
|
| @@ -48,11 +47,16 @@ public:
|
|
|
| virtual ~GrSimpleTextureEffect() {}
|
|
|
| - static const char* Name() { return "Texture"; }
|
| + virtual const char* name() const SK_OVERRIDE { return "SimpleTexture"; }
|
|
|
| - typedef GrGLSimpleTextureEffect GLProcessor;
|
| + virtual void getGLProcessorKey(const GrGLCaps&, GrProcessorKeyBuilder*) const SK_OVERRIDE;
|
|
|
| - virtual const GrBackendFragmentProcessorFactory& getFactory() const SK_OVERRIDE;
|
| + virtual GrGLFragmentProcessor* createGLInstance() const SK_OVERRIDE;
|
| +
|
| + virtual uint32_t classID() const {
|
| + static uint32_t id = GenClassID();
|
| + return id;
|
| + }
|
|
|
| private:
|
| GrSimpleTextureEffect(GrTexture* texture,
|
|
|