Index: src/core/SkSpriteBlitter_ARGB32.cpp |
diff --git a/src/core/SkSpriteBlitter_ARGB32.cpp b/src/core/SkSpriteBlitter_ARGB32.cpp |
index 0993a4c7eeed4c354516ffb9d8893a0c9aaefec7..c3f63fee9afb21f36165fd44bb510e5e017a0311 100644 |
--- a/src/core/SkSpriteBlitter_ARGB32.cpp |
+++ b/src/core/SkSpriteBlitter_ARGB32.cpp |
@@ -34,7 +34,7 @@ public: |
fAlpha = alpha; |
} |
- void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |
+ void blitRect(int x, int y, int width, int height) override { |
SkASSERT(width > 0 && height > 0); |
uint32_t* SK_RESTRICT dst = fDevice->getAddr32(x, y); |
const uint32_t* SK_RESTRICT src = fSource->getAddr32(x - fLeft, |
@@ -92,7 +92,7 @@ public: |
} |
virtual void setup(const SkBitmap& device, int left, int top, |
- const SkPaint& paint) SK_OVERRIDE { |
+ const SkPaint& paint) override { |
this->INHERITED::setup(device, left, top, paint); |
int width = device.width(); |
@@ -122,7 +122,7 @@ public: |
Sprite_D32_S32A_XferFilter(const SkBitmap& source, const SkPaint& paint) |
: Sprite_D32_XferFilter(source, paint) {} |
- void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |
+ void blitRect(int x, int y, int width, int height) override { |
SkASSERT(width > 0 && height > 0); |
uint32_t* SK_RESTRICT dst = fDevice->getAddr32(x, y); |
const uint32_t* SK_RESTRICT src = fSource->getAddr32(x - fLeft, |
@@ -169,7 +169,7 @@ public: |
Sprite_D32_S4444_XferFilter(const SkBitmap& source, const SkPaint& paint) |
: Sprite_D32_XferFilter(source, paint) {} |
- void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |
+ void blitRect(int x, int y, int width, int height) override { |
SkASSERT(width > 0 && height > 0); |
SkPMColor* SK_RESTRICT dst = fDevice->getAddr32(x, y); |
const SkPMColor16* SK_RESTRICT src = fSource->getAddr16(x - fLeft, |
@@ -216,7 +216,7 @@ class Sprite_D32_S4444_Opaque : public SkSpriteBlitter { |
public: |
Sprite_D32_S4444_Opaque(const SkBitmap& source) : SkSpriteBlitter(source) {} |
- void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |
+ void blitRect(int x, int y, int width, int height) override { |
SkASSERT(width > 0 && height > 0); |
SkPMColor* SK_RESTRICT dst = fDevice->getAddr32(x, y); |
const SkPMColor16* SK_RESTRICT src = fSource->getAddr16(x - fLeft, |
@@ -245,7 +245,7 @@ class Sprite_D32_S4444 : public SkSpriteBlitter { |
public: |
Sprite_D32_S4444(const SkBitmap& source) : SkSpriteBlitter(source) {} |
- void blitRect(int x, int y, int width, int height) SK_OVERRIDE { |
+ void blitRect(int x, int y, int width, int height) override { |
SkASSERT(width > 0 && height > 0); |
SkPMColor* SK_RESTRICT dst = fDevice->getAddr32(x, y); |
const SkPMColor16* SK_RESTRICT src = fSource->getAddr16(x - fLeft, |