| Index: src/gpu/effects/GrBezierEffect.h
|
| diff --git a/src/gpu/effects/GrBezierEffect.h b/src/gpu/effects/GrBezierEffect.h
|
| index 0ceefb1bb448a39ab1a8ff88eec4dbdf7b55bfd2..f1b22fa8a4c9c1e5ddd396e882d10fb3deddc764 100644
|
| --- a/src/gpu/effects/GrBezierEffect.h
|
| +++ b/src/gpu/effects/GrBezierEffect.h
|
| @@ -99,6 +99,7 @@ public:
|
| inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
|
| GrColor color() const { return fColor; }
|
| const SkMatrix& viewMatrix() const { return fViewMatrix; }
|
| + const SkMatrix& localMatrix() const { return fLocalMatrix; }
|
|
|
| virtual void getGLProcessorKey(const GrBatchTracker& bt,
|
| const GrGLSLCaps& caps,
|
| @@ -115,6 +116,7 @@ private:
|
|
|
| GrColor fColor;
|
| SkMatrix fViewMatrix;
|
| + SkMatrix fLocalMatrix;
|
| uint8_t fCoverageScale;
|
| GrPrimitiveEdgeType fEdgeType;
|
| const Attribute* fInPosition;
|
| @@ -179,6 +181,7 @@ public:
|
| inline GrPrimitiveEdgeType getEdgeType() const { return fEdgeType; }
|
| GrColor color() const { return fColor; }
|
| const SkMatrix& viewMatrix() const { return fViewMatrix; }
|
| + const SkMatrix& localMatrix() const { return fLocalMatrix; }
|
|
|
| virtual void getGLProcessorKey(const GrBatchTracker& bt,
|
| const GrGLSLCaps& caps,
|
| @@ -195,6 +198,7 @@ private:
|
|
|
| GrColor fColor;
|
| SkMatrix fViewMatrix;
|
| + SkMatrix fLocalMatrix;
|
| uint8_t fCoverageScale;
|
| GrPrimitiveEdgeType fEdgeType;
|
| const Attribute* fInPosition;
|
|
|