| Index: src/gpu/effects/GrBezierEffect.h
|
| diff --git a/src/gpu/effects/GrBezierEffect.h b/src/gpu/effects/GrBezierEffect.h
|
| index b8d8f7b2e4d25f84fb6a9da46b0bfaa3c10027c2..6bae8ce135793e856ad24131568befe3c2fc4573 100644
|
| --- a/src/gpu/effects/GrBezierEffect.h
|
| +++ b/src/gpu/effects/GrBezierEffect.h
|
| @@ -10,7 +10,7 @@
|
|
|
| #include "GrDrawTargetCaps.h"
|
| #include "GrEffect.h"
|
| -#include "GrVertexEffect.h"
|
| +#include "GrGeometryProcessor.h"
|
| #include "GrTypesPriv.h"
|
|
|
| /**
|
| @@ -55,7 +55,7 @@
|
| */
|
| class GrGLConicEffect;
|
|
|
| -class GrConicEffect : public GrVertexEffect {
|
| +class GrConicEffect : public GrGeometryProcessor {
|
| public:
|
| static GrEffect* Create(const GrEffectEdgeType edgeType, const GrDrawTargetCaps& caps) {
|
| GR_CREATE_STATIC_EFFECT(gConicFillAA, GrConicEffect, (kFillAA_GrEffectEdgeType));
|
| @@ -108,7 +108,7 @@ private:
|
|
|
| GR_DECLARE_EFFECT_TEST;
|
|
|
| - typedef GrVertexEffect INHERITED;
|
| + typedef GrGeometryProcessor INHERITED;
|
| };
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
| @@ -122,7 +122,7 @@ private:
|
| */
|
| class GrGLQuadEffect;
|
|
|
| -class GrQuadEffect : public GrVertexEffect {
|
| +class GrQuadEffect : public GrGeometryProcessor {
|
| public:
|
| static GrEffect* Create(const GrEffectEdgeType edgeType, const GrDrawTargetCaps& caps) {
|
| GR_CREATE_STATIC_EFFECT(gQuadFillAA, GrQuadEffect, (kFillAA_GrEffectEdgeType));
|
| @@ -175,7 +175,7 @@ private:
|
|
|
| GR_DECLARE_EFFECT_TEST;
|
|
|
| - typedef GrVertexEffect INHERITED;
|
| + typedef GrGeometryProcessor INHERITED;
|
| };
|
|
|
| //////////////////////////////////////////////////////////////////////////////
|
| @@ -191,7 +191,7 @@ private:
|
| */
|
| class GrGLCubicEffect;
|
|
|
| -class GrCubicEffect : public GrVertexEffect {
|
| +class GrCubicEffect : public GrGeometryProcessor {
|
| public:
|
| static GrEffect* Create(const GrEffectEdgeType edgeType, const GrDrawTargetCaps& caps) {
|
| GR_CREATE_STATIC_EFFECT(gCubicFillAA, GrCubicEffect, (kFillAA_GrEffectEdgeType));
|
| @@ -244,7 +244,7 @@ private:
|
|
|
| GR_DECLARE_EFFECT_TEST;
|
|
|
| - typedef GrVertexEffect INHERITED;
|
| + typedef GrGeometryProcessor INHERITED;
|
| };
|
|
|
| #endif
|
|
|