Index: src/core/SkBlitter.cpp |
diff --git a/src/core/SkBlitter.cpp b/src/core/SkBlitter.cpp |
index 6ba82bf077b982e5aaae48ec4c747e3dda1ffdf3..f4e1a37c80b5177cda0acc7975efbc7ec23ebd4e 100644 |
--- a/src/core/SkBlitter.cpp |
+++ b/src/core/SkBlitter.cpp |
@@ -857,7 +857,7 @@ SkBlitter* SkBlitter::Choose(const SkBitmap& device, |
// which check, in case we're being called by a client with a dummy device |
// (e.g. they have a bounder that always aborts the draw) |
- if (SkBitmap::kNo_Config == device.getConfig()) { |
+ if (SkBitmap::kNo_Config == device.config()) { |
SK_PLACEMENT_NEW(blitter, SkNullBlitter, storage, storageSize); |
return blitter; |
} |
@@ -940,7 +940,7 @@ SkBlitter* SkBlitter::Choose(const SkBitmap& device, |
return blitter; |
} |
- switch (device.getConfig()) { |
+ switch (device.config()) { |
case SkBitmap::kA1_Config: |
SK_PLACEMENT_NEW_ARGS(blitter, SkA1_Blitter, |
storage, storageSize, (device, *paint)); |