| Index: src/gpu/effects/GrBezierEffect.h
|
| diff --git a/src/gpu/effects/GrBezierEffect.h b/src/gpu/effects/GrBezierEffect.h
|
| index 5d2917d00cbd463d24776a82a4dc18b0b97d23d6..9b71f7d395261543fea31487f1f9f2ddafe65227 100644
|
| --- a/src/gpu/effects/GrBezierEffect.h
|
| +++ b/src/gpu/effects/GrBezierEffect.h
|
| @@ -11,6 +11,7 @@
|
| #include "GrDrawTargetCaps.h"
|
| #include "GrProcessor.h"
|
| #include "GrGeometryProcessor.h"
|
| +#include "GrInvariantOutput.h"
|
| #include "GrTypesPriv.h"
|
|
|
| /**
|
| @@ -101,7 +102,7 @@ private:
|
|
|
| virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
|
|
|
| - virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE {
|
| + virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE {
|
| inout->mulByUnknownAlpha();
|
| }
|
|
|
| @@ -170,7 +171,7 @@ private:
|
|
|
| virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
|
|
|
| - virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE {
|
| + virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE {
|
| inout->mulByUnknownAlpha();
|
| }
|
|
|
| @@ -241,7 +242,7 @@ private:
|
|
|
| virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
|
|
|
| - virtual void onComputeInvariantOutput(InvariantOutput* inout) const SK_OVERRIDE {
|
| + virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE {
|
| inout->mulByUnknownAlpha();
|
| }
|
|
|
|
|