commit | f4fddfc300f983eb221327fa9b1588c3b08262a6 | [log] [tgz] |
---|---|---|
author | bungeman <bungeman@google.com> | Fri Apr 17 10:05:43 2015 -0700 |
committer | Commit bot <commit-bot@chromium.org> | Fri Apr 17 10:05:43 2015 -0700 |
tree | e9b5cb93ace8ab83690c68a7a11a37d1c87dc265 | |
parent | 9bd2daff8e53a6f02c7e5d1e6aa330f89b8542a3 [diff] |
Correct SkFixedToDouble. SkFixedToDouble uses the decimal floating point string representation of 1/(2^16) to provide a constant value. This value is exactly representable by a double but the decimal constant currently used does not map to this value. This change modifies this constant to more decimal digits so that the actual double value desired is created. Review URL: https://codereview.chromium.org/1097473002