aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-11 16:25:37 +0000
committerGravatar senorblanco@chromium.org <senorblanco@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-07-11 16:25:37 +0000
commitbd9fad67b841e94e2042bbc424f197887fe7c00e (patch)
treef0a6bd538140564696e42a8c179da2c30b3770f6
parent894790d77c56cd4bae8070331d275c6d2897e33c (diff)
Mac build fix; unreviewed.
git-svn-id: http://skia.googlecode.com/svn/trunk@4536 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--src/effects/SkLightingImageFilter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/effects/SkLightingImageFilter.cpp b/src/effects/SkLightingImageFilter.cpp
index ef45968f5a..2033e25685 100644
--- a/src/effects/SkLightingImageFilter.cpp
+++ b/src/effects/SkLightingImageFilter.cpp
@@ -514,7 +514,7 @@ public:
virtual GrGLLight* createGLLight() const SK_OVERRIDE {
return new GrGLPointLight();
}
- bool isEqual(const SkLight& other) SK_OVERRIDE {
+ bool isEqual(const SkLight& other) const SK_OVERRIDE {
if (other.type() != kPoint_LightType) {
return false;
}
@@ -611,7 +611,7 @@ protected:
writePoint3(fS, buffer);
}
- virtual bool isEqual(const SkLight& other) SK_OVERRIDE {
+ virtual bool isEqual(const SkLight& other) const SK_OVERRIDE {
if (other.type() != kSpot_LightType) {
return false;
}