aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core
diff options
context:
space:
mode:
authorGravatar rmistry <rmistry@google.com>2015-08-26 06:48:27 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-26 06:48:27 -0700
commit4bf69f7bbc073c1dc257f93f8c5b2a530123cb3c (patch)
treed6c670d7230600b174d6f08799a7ad1f4b9c002e /src/core
parent8cce8f139e4b91783722f11ccb6ac9bbdf8327e7 (diff)
Revert of Remove GrStagedProcessor, remove the word Stage as it applies to FPs (patchset #6 id:90001 of https://codereview.chromium.org/1307223004/ )
Diffstat (limited to 'src/core')
-rw-r--r--src/core/SkImageFilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/SkImageFilter.cpp b/src/core/SkImageFilter.cpp
index e9be10967f..5157db2dc9 100644
--- a/src/core/SkImageFilter.cpp
+++ b/src/core/SkImageFilter.cpp
@@ -352,7 +352,7 @@ bool SkImageFilter::filterImageGPU(Proxy* proxy, const SkBitmap& src, const Cont
GrPaint paint;
if (this->asFragmentProcessor(&fp, paint.getProcessorDataManager(), srcTexture, matrix, bounds)) {
SkASSERT(fp);
- paint.addColorFragmentProcessor(fp)->unref();
+ paint.addColorProcessor(fp)->unref();
GrDrawContext* drawContext = context->drawContext();
if (drawContext) {