| Index: src/gpu/GrDrawTarget.cpp
|
| diff --git a/src/gpu/GrDrawTarget.cpp b/src/gpu/GrDrawTarget.cpp
|
| index 18ea72cd572c151e73dcfeda9d1f650dfd58b3b0..1b641d84e4c83aa143612a5345afa64f6bdeb6ad 100644
|
| --- a/src/gpu/GrDrawTarget.cpp
|
| +++ b/src/gpu/GrDrawTarget.cpp
|
| @@ -359,7 +359,7 @@ bool GrDrawTarget::checkDraw(const GrDrawState& drawState,
|
| }
|
|
|
| for (int s = 0; s < drawState.numColorStages(); ++s) {
|
| - const GrProcessor* effect = drawState.getColorStage(s).getProcessor();
|
| + const GrProcessor* effect = drawState.getColorStage(s).processor();
|
| int numTextures = effect->numTextures();
|
| for (int t = 0; t < numTextures; ++t) {
|
| GrTexture* texture = effect->texture(t);
|
| @@ -367,7 +367,7 @@ bool GrDrawTarget::checkDraw(const GrDrawState& drawState,
|
| }
|
| }
|
| for (int s = 0; s < drawState.numCoverageStages(); ++s) {
|
| - const GrProcessor* effect = drawState.getCoverageStage(s).getProcessor();
|
| + const GrProcessor* effect = drawState.getCoverageStage(s).processor();
|
| int numTextures = effect->numTextures();
|
| for (int t = 0; t < numTextures; ++t) {
|
| GrTexture* texture = effect->texture(t);
|
|
|