| Index: src/gpu/effects/GrCustomCoordsTextureEffect.h
|
| diff --git a/src/gpu/effects/GrCustomCoordsTextureEffect.h b/src/gpu/effects/GrCustomCoordsTextureEffect.h
|
| index 95e0fbba1478457d9ffe1da9d85a5f3e93f2ef4c..d0fc27a0d0b7fc76eeac64620a7726d7f34f9d2a 100644
|
| --- a/src/gpu/effects/GrCustomCoordsTextureEffect.h
|
| +++ b/src/gpu/effects/GrCustomCoordsTextureEffect.h
|
| @@ -9,7 +9,7 @@
|
| #define GrCustomCoordsTextureEffect_DEFINED
|
|
|
| #include "GrEffect.h"
|
| -#include "GrVertexEffect.h"
|
| +#include "GrGeometryProcessor.h"
|
|
|
| class GrGLCustomCoordsTextureEffect;
|
|
|
| @@ -18,7 +18,7 @@ class GrGLCustomCoordsTextureEffect;
|
| * It allows explicit specification of the filtering and wrap modes (GrTextureParams). The input
|
| * coords are a custom attribute.
|
| */
|
| -class GrCustomCoordsTextureEffect : public GrVertexEffect {
|
| +class GrCustomCoordsTextureEffect : public GrGeometryProcessor {
|
| public:
|
| static GrEffect* Create(GrTexture* tex, const GrTextureParams& p) {
|
| return SkNEW_ARGS(GrCustomCoordsTextureEffect, (tex, p));
|
| @@ -43,7 +43,7 @@ private:
|
|
|
| GR_DECLARE_EFFECT_TEST;
|
|
|
| - typedef GrVertexEffect INHERITED;
|
| + typedef GrGeometryProcessor INHERITED;
|
| };
|
|
|
| #endif
|
|
|