| Index: src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| diff --git a/src/gpu/effects/GrBitmapTextGeoProc.cpp b/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| index 21dd5e72652f6d2522e871a89ec393886077844f..00b3b7af955bec01eca82a0ade10601759c85c35 100644
|
| --- a/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| +++ b/src/gpu/effects/GrBitmapTextGeoProc.cpp
|
| @@ -127,11 +127,12 @@ private:
|
|
|
| GrBitmapTextGeoProc::GrBitmapTextGeoProc(GrColor color, GrTexture* texture,
|
| const GrTextureParams& params, GrMaskFormat format,
|
| - const SkMatrix& localMatrix, bool usesLocalCoords)
|
| + const SkMatrix& localMatrix, bool usesLocalCoords,
|
| + GrRenderTarget* dst)
|
| : fColor(color)
|
| , fLocalMatrix(localMatrix)
|
| , fUsesLocalCoords(usesLocalCoords)
|
| - , fTextureAccess(texture, params)
|
| + , fTextureAccess(texture, params, dst)
|
| , fInColor(nullptr)
|
| , fMaskFormat(format) {
|
| this->initClassID<GrBitmapTextGeoProc>();
|
| @@ -190,5 +191,5 @@ const GrGeometryProcessor* GrBitmapTextGeoProc::TestCreate(GrProcessorTestData*
|
|
|
| return GrBitmapTextGeoProc::Create(GrRandomColor(d->fRandom), d->fTextures[texIdx], params,
|
| format, GrTest::TestMatrix(d->fRandom),
|
| - d->fRandom->nextBool());
|
| + d->fRandom->nextBool(), NULL);
|
| }
|
|
|