[webkit-reviews] review granted: [Bug 105997] Add 'float FloatPoint::slopeAngleRadians()' : [Attachment 181266] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Jan 4 07:39:44 PST 2013


Stephen White <senorblanco at chromium.org> has granted Steve Block
<steveblock at chromium.org>'s request for review:
Bug 105997: Add 'float FloatPoint::slopeAngleRadians()'
https://bugs.webkit.org/show_bug.cgi?id=105997

Attachment 181266: Patch
https://bugs.webkit.org/attachment.cgi?id=181266&action=review

------- Additional Comments from Stephen White <senorblanco at chromium.org>
View in context: https://bugs.webkit.org/attachment.cgi?id=181266&action=review


OK.  r=me

> Source/WebCore/rendering/svg/SVGMarkerData.h:88
> +	   double inslope = rad2deg(inslopeChange.slopeAngleRadians());

There is a slight change of precision here (calling atan2f()/rad2deg() on the
floats directly instead of promoting the floats to doubles, and calling
atan2()/rad2deg() (double flavour), then downcasting to float).  Luckily, it
doesn't seem to have an impact on pixel results.


More information about the webkit-reviews mailing list