aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/effects
diff options
context:
space:
mode:
authorGravatar bsalomon <bsalomon@google.com>2014-10-15 11:05:26 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-10-15 11:05:26 -0700
commit98b33ebe6f66ed59b023cf16a09c0a40eb4510ce (patch)
tree174a7a08bb3dec332bc25df960372cc83e226d2c /src/effects
parent8e6c3b93a39e19111662a760ede97df55e51d39f (diff)
Some cleanup in processor header files.
R=joshualitt@google.com Review URL: https://codereview.chromium.org/659803004
Diffstat (limited to 'src/effects')
-rw-r--r--src/effects/SkLumaColorFilter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects/SkLumaColorFilter.cpp b/src/effects/SkLumaColorFilter.cpp
index 411757f7bf..d06a2132f4 100644
--- a/src/effects/SkLumaColorFilter.cpp
+++ b/src/effects/SkLumaColorFilter.cpp
@@ -63,7 +63,7 @@ void SkLumaColorFilter::toString(SkString* str) const {
class LumaColorFilterEffect : public GrFragmentProcessor {
public:
static GrFragmentProcessor* Create() {
- GR_CREATE_STATIC_FRAGMENT_PROCESSOR(gLumaEffect, LumaColorFilterEffect, ());
+ GR_CREATE_STATIC_PROCESSOR(gLumaEffect, LumaColorFilterEffect, ());
return SkRef(gLumaEffect);
}