| Index: src/gpu/GrDrawTarget.cpp
|
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
|
| index c2a9eb0aa727ab992987e821424e11f70fd096cc..9d2e086d42030eb5c8393f642caa740c2716afb1 100644
|
| --- a/src/gpu/GrDrawTarget.cpp
|
| +++ b/src/gpu/GrDrawTarget.cpp
|
| @@ -459,13 +459,15 @@ void GrDrawTarget::copySurface(GrSurface* dst,
|
| }
|
|
|
| const GrPipeline* GrDrawTarget::setupPipeline(const PipelineInfo& pipelineInfo,
|
| - void* pipelineAddr) {
|
| + void* pipelineAddr,
|
| + GrPipelineOptimizations* optimizations) {
|
| return GrPipeline::CreateAt(pipelineAddr, *pipelineInfo.fPipelineBuilder,
|
| pipelineInfo.fColorPOI,
|
| pipelineInfo.fCoveragePOI,
|
| *this->caps(),
|
| *pipelineInfo.fScissor,
|
| - &pipelineInfo.fDstTexture);
|
| + &pipelineInfo.fDstTexture,
|
| + optimizations);
|
| }
|
|
|
| ///////////////////////////////////////////////////////////////////////////////
|
|
|