Index: src/gpu/GrRectanizer_skyline.h |
diff --git a/src/gpu/GrRectanizer_skyline.h b/src/gpu/GrRectanizer_skyline.h |
index 21043c0b6d18ffc40dd2cecbfa23a2fef2c69978..c9f925558097f7aa6fc9927b9362e42256fb596d 100644 |
--- a/src/gpu/GrRectanizer_skyline.h |
+++ b/src/gpu/GrRectanizer_skyline.h |
@@ -21,7 +21,7 @@ public: |
virtual ~GrRectanizerSkyline() { } |
- virtual void reset() SK_OVERRIDE{ |
+ void reset() SK_OVERRIDE{ |
fAreaSoFar = 0; |
fSkyline.reset(); |
SkylineSegment* seg = fSkyline.append(1); |
@@ -30,9 +30,9 @@ public: |
seg->fWidth = this->width(); |
} |
- virtual bool addRect(int w, int h, SkIPoint16* loc) SK_OVERRIDE; |
+ bool addRect(int w, int h, SkIPoint16* loc) SK_OVERRIDE; |
- virtual float percentFull() const SK_OVERRIDE { |
+ float percentFull() const SK_OVERRIDE { |
return fAreaSoFar / ((float)this->width() * this->height()); |
} |