| Index: src/core/SkScan_AntiPath.cpp
|
| diff --git a/src/core/SkScan_AntiPath.cpp b/src/core/SkScan_AntiPath.cpp
|
| index 1c222b9c80e93b836ecfc2c65b4e506e3d30b8a0..22bca7a55cf6453a0707e6f7adb21ee065db8dd2 100644
|
| --- a/src/core/SkScan_AntiPath.cpp
|
| +++ b/src/core/SkScan_AntiPath.cpp
|
| @@ -91,11 +91,11 @@ BaseSuperBlitter::BaseSuperBlitter(SkBlitter* realBlit, const SkIRect& ir, const
|
| const int right = sectBounds.right();
|
|
|
| fLeft = left;
|
| - fSuperLeft = left << SHIFT;
|
| + fSuperLeft = SkLeftShift(left, SHIFT);
|
| fWidth = right - left;
|
| fTop = sectBounds.top();
|
| fCurrIY = fTop - 1;
|
| - fCurrY = (fTop << SHIFT) - 1;
|
| + fCurrY = SkLeftShift(fTop, SHIFT) - 1;
|
|
|
| SkDEBUGCODE(fCurrX = -1;)
|
| }
|
|
|