| Index: src/gpu/GrOptDrawState.cpp
|
| diff --git a/src/gpu/GrOptDrawState.cpp b/src/gpu/GrOptDrawState.cpp
|
| index 60ec6a4fa1d58efbfcb2d1a8dcdbd928d491636c..a5be2f77de8c7d5cd65277b4426de5d27af82ff1 100644
|
| --- a/src/gpu/GrOptDrawState.cpp
|
| +++ b/src/gpu/GrOptDrawState.cpp
|
| @@ -90,8 +90,8 @@ GrOptDrawState::GrOptDrawState(const GrDrawState& drawState,
|
| gpu->buildProgramDesc(*this, descInfo, drawType, dstCopy, &fDesc);
|
| };
|
|
|
| -GrOptDrawState* GrOptDrawState::Create(const GrDrawState& drawState,
|
| - GrGpu* gpu,
|
| +GrOptDrawState* GrOptDrawState::Create(GrGpu* gpu,
|
| + const GrDrawState& drawState,
|
| const GrDeviceCoordTexture* dstCopy,
|
| GrGpu::DrawType drawType) {
|
| GrBlendCoeff srcCoeff;
|
| @@ -109,8 +109,8 @@ GrOptDrawState* GrOptDrawState::Create(const GrDrawState& drawState,
|
| return NULL;
|
| }
|
|
|
| - return SkNEW_ARGS(GrOptDrawState, (drawState, blendFlags, srcCoeff,
|
| - dstCoeff, gpu, dstCopy, drawType));
|
| + return SkNEW_ARGS(GrOptDrawState, (drawState, blendFlags, srcCoeff, dstCoeff, gpu, dstCopy,
|
| + drawType));
|
| }
|
|
|
| void GrOptDrawState::setOutputStateInfo(const GrDrawState& ds,
|
|
|