| Index: src/gpu/effects/GrBitmapTextGeoProc.h
|
| diff --git a/src/gpu/effects/GrBitmapTextGeoProc.h b/src/gpu/effects/GrBitmapTextGeoProc.h
|
| index 507515bedb2002f012ca828335967d6248f3b4a9..c69ffd7a1b72998b7483a47de450a7567772611d 100644
|
| --- a/src/gpu/effects/GrBitmapTextGeoProc.h
|
| +++ b/src/gpu/effects/GrBitmapTextGeoProc.h
|
| @@ -22,8 +22,10 @@ class GrInvariantOutput;
|
| class GrBitmapTextGeoProc : public GrGeometryProcessor {
|
| public:
|
| static GrGeometryProcessor* Create(GrColor color, GrTexture* tex, const GrTextureParams& p,
|
| - bool useColorAttrib, bool opaqueVertexColors) {
|
| - return SkNEW_ARGS(GrBitmapTextGeoProc, (color, tex, p, useColorAttrib, opaqueVertexColors));
|
| + bool useColorAttrib, bool opaqueVertexColors,
|
| + const SkMatrix& localMatrix) {
|
| + return SkNEW_ARGS(GrBitmapTextGeoProc, (color, tex, p, useColorAttrib, opaqueVertexColors,
|
| + localMatrix));
|
| }
|
|
|
| virtual ~GrBitmapTextGeoProc() {}
|
| @@ -47,7 +49,7 @@ public:
|
|
|
| private:
|
| GrBitmapTextGeoProc(GrColor, GrTexture* texture, const GrTextureParams& params,
|
| - bool useColorAttrib, bool opaqueVertexColors);
|
| + bool useColorAttrib, bool opaqueVertexColors, const SkMatrix& localMatrix);
|
|
|
| virtual bool onIsEqual(const GrGeometryProcessor& other) const SK_OVERRIDE;
|
|
|
|
|