| Index: src/gpu/GrProcOptInfo.cpp
 | 
| diff --git a/src/gpu/GrProcOptInfo.cpp b/src/gpu/GrProcOptInfo.cpp
 | 
| index 19302cc475dd9b6e2befaae38dc86cc9fb551775..d7f2d7f31259ee996505e507b83e0013c59e8fa5 100644
 | 
| --- a/src/gpu/GrProcOptInfo.cpp
 | 
| +++ b/src/gpu/GrProcOptInfo.cpp
 | 
| @@ -29,24 +29,6 @@ void GrProcOptInfo::calcCoverageWithBatch(const GrDrawBatch* batch,
 | 
|      this->internalCalc(processors, cnt, batch->willReadFragmentPosition());
 | 
|  }
 | 
|  
 | 
| -void GrProcOptInfo::calcColorWithPrimProc(const GrPrimitiveProcessor* primProc,
 | 
| -                                          const GrFragmentProcessor * const processors[],
 | 
| -                                          int cnt) {
 | 
| -    GrInitInvariantOutput out;
 | 
| -    primProc->getInvariantOutputColor(&out);
 | 
| -    fInOut.reset(out);
 | 
| -    this->internalCalc(processors, cnt, primProc->willReadFragmentPosition());
 | 
| -}
 | 
| -
 | 
| -void GrProcOptInfo::calcCoverageWithPrimProc(const GrPrimitiveProcessor* primProc,
 | 
| -                                             const GrFragmentProcessor * const processors[],
 | 
| -                                             int cnt) {
 | 
| -    GrInitInvariantOutput out;
 | 
| -    primProc->getInvariantOutputCoverage(&out);
 | 
| -    fInOut.reset(out);
 | 
| -    this->internalCalc(processors, cnt, primProc->willReadFragmentPosition());
 | 
| -}
 | 
| -
 | 
|  void GrProcOptInfo::calcWithInitialValues(const GrFragmentProcessor * const processors[],
 | 
|                                            int cnt,
 | 
|                                            GrColor startColor,
 | 
| 
 |