| Index: src/gpu/GrPipeline.cpp
|
| diff --git a/src/gpu/GrPipeline.cpp b/src/gpu/GrPipeline.cpp
|
| index 93647d6a5632307901f78f4262ac54ac369e1446..1d7b71f605d57c06c1d323ee48602948a6fffe8e 100644
|
| --- a/src/gpu/GrPipeline.cpp
|
| +++ b/src/gpu/GrPipeline.cpp
|
| @@ -96,7 +96,6 @@ GrPipeline* GrPipeline::CreateAt(void* memory, const CreateArgs& args,
|
| const GrFragmentProcessor* fp = builder.getColorFragmentProcessor(i);
|
| pipeline->fFragmentProcessors[currFPIdx].reset(fp);
|
| usesLocalCoords = usesLocalCoords || fp->usesLocalCoords();
|
| - fp->gatherCoordTransforms(&pipeline->fCoordTransforms);
|
| }
|
|
|
| for (int i = firstCoverageProcessorIdx; i < builder.numCoverageFragmentProcessors();
|
| @@ -104,7 +103,6 @@ GrPipeline* GrPipeline::CreateAt(void* memory, const CreateArgs& args,
|
| const GrFragmentProcessor* fp = builder.getCoverageFragmentProcessor(i);
|
| pipeline->fFragmentProcessors[currFPIdx].reset(fp);
|
| usesLocalCoords = usesLocalCoords || fp->usesLocalCoords();
|
| - fp->gatherCoordTransforms(&pipeline->fCoordTransforms);
|
| }
|
|
|
| // Setup info we need to pass to GrPrimitiveProcessors that are used with this GrPipeline.
|
|
|