Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: src/core/SkBlitter.h

Issue 1210283002: fix up virtual / override stuff (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | src/core/SkCoreBlitters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkBlitter.h
diff --git a/src/core/SkBlitter.h b/src/core/SkBlitter.h
index b8126c24c6ac05287187d88bf39d49dee0787ebb..a2ab89dc8ac3e46e01d31f41d55b352dcc28c711 100644
--- a/src/core/SkBlitter.h
+++ b/src/core/SkBlitter.h
@@ -136,10 +136,7 @@ public:
///@}
protected:
-
SkAutoMalloc fBlitMemory;
-
-private:
};
/** This blitter silently never draws anything.
@@ -147,8 +144,7 @@ private:
class SkNullBlitter : public SkBlitter {
public:
void blitH(int x, int y, int width) override;
- virtual void blitAntiH(int x, int y, const SkAlpha[],
- const int16_t runs[]) override;
+ void blitAntiH(int x, int y, const SkAlpha[], const int16_t runs[]) override;
void blitV(int x, int y, int height, SkAlpha alpha) override;
void blitRect(int x, int y, int width, int height) override;
void blitMask(const SkMask&, const SkIRect& clip) override;
@@ -169,8 +165,7 @@ public:
}
void blitH(int x, int y, int width) override;
- virtual void blitAntiH(int x, int y, const SkAlpha[],
- const int16_t runs[]) override;
+ void blitAntiH(int x, int y, const SkAlpha[], const int16_t runs[]) override;
void blitV(int x, int y, int height, SkAlpha alpha) override;
void blitRect(int x, int y, int width, int height) override;
virtual void blitAntiRect(int x, int y, int width, int height,
@@ -204,12 +199,11 @@ public:
}
void blitH(int x, int y, int width) override;
- virtual void blitAntiH(int x, int y, const SkAlpha[],
- const int16_t runs[]) override;
+ void blitAntiH(int x, int y, const SkAlpha[], const int16_t runs[]) override;
void blitV(int x, int y, int height, SkAlpha alpha) override;
void blitRect(int x, int y, int width, int height) override;
- virtual void blitAntiRect(int x, int y, int width, int height,
- SkAlpha leftAlpha, SkAlpha rightAlpha) override;
+ void blitAntiRect(int x, int y, int width, int height,
+ SkAlpha leftAlpha, SkAlpha rightAlpha) override;
void blitMask(const SkMask&, const SkIRect& clip) override;
const SkPixmap* justAnOpaqueColor(uint32_t* value) override;
« no previous file with comments | « no previous file | src/core/SkCoreBlitters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698