| Index: tests/GLProgramsTest.cpp
 | 
| diff --git a/tests/GLProgramsTest.cpp b/tests/GLProgramsTest.cpp
 | 
| index c3752c48bb7b13be59b6da6e7d5b1d85b5019f94..a0b744d7d297a9f9ecbc7a806eb88cbd9cca05e9 100644
 | 
| --- a/tests/GLProgramsTest.cpp
 | 
| +++ b/tests/GLProgramsTest.cpp
 | 
| @@ -298,7 +298,7 @@ bool GrDrawTarget::programUnitTest(int maxStages) {
 | 
|          } else {
 | 
|              primProc = pathProc.get();
 | 
|          }
 | 
| -        if (!this->setupDstReadIfNecessary(&pipelineBuilder, &dstCopy, NULL)) {
 | 
| +        if (!this->setupDstReadIfNecessary(pipelineBuilder, &dstCopy, NULL)) {
 | 
|              SkDebugf("Couldn't setup dst read texture");
 | 
|              return false;
 | 
|          }
 | 
| @@ -313,7 +313,7 @@ bool GrDrawTarget::programUnitTest(int maxStages) {
 | 
|          primProc->initBatchTracker(&bt, pipeline.getInitBatchTracker());
 | 
|  
 | 
|          GrProgramDesc desc;
 | 
| -        gpu->buildProgramDesc(&desc, *primProc, pipeline, pipeline.descInfo(), bt);
 | 
| +        gpu->buildProgramDesc(&desc, *primProc, pipeline, bt);
 | 
|  
 | 
|          GrGpu::DrawArgs args(primProc, &pipeline, &desc, &bt);
 | 
|          SkAutoTUnref<GrGLProgram> program(GrGLProgramBuilder::CreateProgram(args, gpu));
 | 
| 
 |