aboutsummaryrefslogtreecommitdiffhomepage
path: root/gm/shaderbounds.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gm/shaderbounds.cpp')
-rw-r--r--gm/shaderbounds.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/gm/shaderbounds.cpp b/gm/shaderbounds.cpp
index 6820fc6359..e6fcc4ef4b 100644
--- a/gm/shaderbounds.cpp
+++ b/gm/shaderbounds.cpp
@@ -34,7 +34,7 @@ public:
}
protected:
- virtual uint32_t onGetFlags() const SK_OVERRIDE {
+ uint32_t onGetFlags() const SK_OVERRIDE {
return kSkipTiled_Flag;
}
@@ -42,9 +42,9 @@ protected:
return fName;
}
- virtual SkISize onISize() SK_OVERRIDE { return SkISize::Make(320, 240); }
+ SkISize onISize() SK_OVERRIDE { return SkISize::Make(320, 240); }
- virtual SkMatrix onGetInitialTransform() const SK_OVERRIDE {
+ SkMatrix onGetInitialTransform() const SK_OVERRIDE {
SkMatrix result;
SkScalar scale = 0.8f;
result.setScale(scale, scale);
@@ -52,7 +52,7 @@ protected:
return result;
}
- virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE {
+ void onDraw(SkCanvas* canvas) SK_OVERRIDE {
// The PDF device has already clipped to the content area, but we
// do it again here so that the raster and pdf results are consistent.
canvas->clipRect(SkRect::MakeWH(SkIntToScalar(320),