Remove SkClipStack's manual rounding of BW clip rects

The full fix for this bug is nudging the image in device space. That is going to be a large change. This CL should address the immediate problem.

This CL will alter the following GMs:
clipdrawdraw
convex_poly_clip
complexclip_bw_*
filltypespersp
complexclip3_simple

BUG=423834

Review URL: https://codereview.chromium.org/1033453003
diff --git a/src/core/SkClipStack.cpp b/src/core/SkClipStack.cpp
index e0c3db0..a51185e 100644
--- a/src/core/SkClipStack.cpp
+++ b/src/core/SkClipStack.cpp
@@ -419,13 +419,6 @@
             break;
     }
 
-    if (!fDoAA) {
-        fFiniteBound.set(SkScalarFloorToScalar(fFiniteBound.fLeft+0.45f),
-                         SkScalarRoundToScalar(fFiniteBound.fTop),
-                         SkScalarRoundToScalar(fFiniteBound.fRight),
-                         SkScalarRoundToScalar(fFiniteBound.fBottom));
-    }
-
     // Now determine the previous Element's bound information taking into
     // account that there may be no previous clip
     SkRect prevFinite;