| Index: src/gpu/GrPipeline.h
 | 
| diff --git a/src/gpu/GrPipeline.h b/src/gpu/GrPipeline.h
 | 
| index e91baeb35e3828f5ff4b38cb629ba9c3f3fd9d0c..bf8ca8a725f49af18276fb44df0c311c5ed97923 100644
 | 
| --- a/src/gpu/GrPipeline.h
 | 
| +++ b/src/gpu/GrPipeline.h
 | 
| @@ -97,7 +97,9 @@ public:
 | 
|  
 | 
|      bool readsFragPosition() const { return fReadsFragPosition; }
 | 
|  
 | 
| -    const GrPipelineInfo& getInitBatchTracker() const { return fInitBT; }
 | 
| +    const GrPipelineInfo& infoForPrimitiveProcessor() const {
 | 
| +        return fInfoForPrimitiveProcessor;
 | 
| +    }
 | 
|  
 | 
|  private:
 | 
|      /**
 | 
| @@ -135,7 +137,7 @@ private:
 | 
|      ProgramXferProcessor                fXferProcessor;
 | 
|      FragmentStageArray                  fFragmentStages;
 | 
|      bool                                fReadsFragPosition;
 | 
| -    GrPipelineInfo                      fInitBT;
 | 
| +    GrPipelineInfo                      fInfoForPrimitiveProcessor;
 | 
|  
 | 
|      // This function is equivalent to the offset into fFragmentStages where coverage stages begin.
 | 
|      int                                 fNumColorStages;
 | 
| 
 |