| Index: src/effects/gradients/SkGradientShaderPriv.h
|
| diff --git a/src/effects/gradients/SkGradientShaderPriv.h b/src/effects/gradients/SkGradientShaderPriv.h
|
| index 125c7b056d681a8782b1029037dc5ea4504abaf6..99ad70c54aef2feb84975f595edb3067b2ba2943 100644
|
| --- a/src/effects/gradients/SkGradientShaderPriv.h
|
| +++ b/src/effects/gradients/SkGradientShaderPriv.h
|
| @@ -166,7 +166,7 @@ public:
|
| public:
|
| GradientShaderBaseContext(const SkGradientShaderBase& shader, const ContextRec&);
|
|
|
| - virtual uint32_t getFlags() const SK_OVERRIDE { return fFlags; }
|
| + uint32_t getFlags() const SK_OVERRIDE { return fFlags; }
|
|
|
| protected:
|
| SkMatrix fDstToIndex;
|
| @@ -180,7 +180,7 @@ public:
|
| typedef SkShader::Context INHERITED;
|
| };
|
|
|
| - virtual bool isOpaque() const SK_OVERRIDE;
|
| + bool isOpaque() const SK_OVERRIDE;
|
|
|
| void getGradientTableBitmap(SkBitmap*) const;
|
|
|
| @@ -220,7 +220,7 @@ public:
|
|
|
| protected:
|
| SkGradientShaderBase(SkReadBuffer& );
|
| - virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
| + void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
| SK_TO_STRING_OVERRIDE()
|
|
|
| const SkMatrix fPtsToUnit;
|
| @@ -237,7 +237,7 @@ protected:
|
|
|
| void commonAsAGradient(GradientInfo*, bool flipGrad = false) const;
|
|
|
| - virtual bool onAsLuminanceColor(SkColor*) const SK_OVERRIDE;
|
| + bool onAsLuminanceColor(SkColor*) const SK_OVERRIDE;
|
|
|
| /*
|
| * Takes in pointers to gradient color and Rec info as colorSrc and recSrc respectively.
|
| @@ -368,9 +368,9 @@ protected:
|
| SkScalar** stops,
|
| SkShader::TileMode* tm);
|
|
|
| - virtual bool onIsEqual(const GrFragmentProcessor&) const SK_OVERRIDE;
|
| + bool onIsEqual(const GrFragmentProcessor&) const SK_OVERRIDE;
|
|
|
| - virtual void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE;
|
| + void onComputeInvariantOutput(GrInvariantOutput* inout) const SK_OVERRIDE;
|
|
|
| const GrCoordTransform& getCoordTransform() const { return fCoordTransform; }
|
|
|
| @@ -399,7 +399,7 @@ public:
|
| GrGLGradientEffect();
|
| virtual ~GrGLGradientEffect();
|
|
|
| - virtual void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
|
| + void setData(const GrGLProgramDataManager&, const GrProcessor&) SK_OVERRIDE;
|
|
|
| protected:
|
| /**
|
|
|