| Index: src/core/SkScan_Path.cpp
|
| diff --git a/src/core/SkScan_Path.cpp b/src/core/SkScan_Path.cpp
|
| index fc79fc8537d08fdbff306ee801a2fa66a5a9a6a2..3666f57916e0bcc88236e88d1871182a82d8e579 100644
|
| --- a/src/core/SkScan_Path.cpp
|
| +++ b/src/core/SkScan_Path.cpp
|
| @@ -450,8 +450,8 @@ void sk_fill_path(const SkPath& path, const SkIRect* clipRect, SkBlitter* blitte
|
|
|
| // now edge is the head of the sorted linklist
|
|
|
| - start_y <<= shiftEdgesUp;
|
| - stop_y <<= shiftEdgesUp;
|
| + start_y *= 1 << shiftEdgesUp;
|
| + stop_y *= 1 << shiftEdgesUp;
|
| if (clipRect && start_y < clipRect->fTop) {
|
| start_y = clipRect->fTop;
|
| }
|
|
|