Mac build fix; unreviewed.

git-svn-id: http://skia.googlecode.com/svn/trunk@4536 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
senorblanco@chromium.org 2012-07-11 16:25:37 +00:00
parent 894790d77c
commit bd9fad67b8

View File

@ -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;
}