aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/effects/SkArithmeticMode_gpu.cpp
diff options
context:
space:
mode:
authorGravatar egdaniel <egdaniel@google.com>2015-02-13 09:00:33 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2015-02-13 09:00:33 -0800
commite36914cb205699526988127a827d1a76c9a98d39 (patch)
tree3676983831392cede5b42a471d905bed491d3dfd /src/effects/SkArithmeticMode_gpu.cpp
parentf89f60f6972569a41fa737c786d238559027fede (diff)
Pass in ProcOptInfos into willNeedDstCopy on XPs
Diffstat (limited to 'src/effects/SkArithmeticMode_gpu.cpp')
-rw-r--r--src/effects/SkArithmeticMode_gpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/SkArithmeticMode_gpu.cpp b/src/effects/SkArithmeticMode_gpu.cpp
index 219b565298..469f5b1adb 100644
--- a/src/effects/SkArithmeticMode_gpu.cpp
+++ b/src/effects/SkArithmeticMode_gpu.cpp
@@ -308,7 +308,7 @@ GrArithmeticXPFactory::onCreateXferProcessor(const GrProcOptInfo& colorPOI,
const GrProcOptInfo& coveragePOI,
const GrDeviceCoordTexture* dstCopy) const {
return ArithmeticXP::Create(fK1, fK2, fK3, fK4, fEnforcePMColor, dstCopy,
- this->willReadDstColor());
+ this->willReadDstColor(colorPOI, coveragePOI));
}