diff options
author | Dan Sinclair <dsinclair@chromium.org> | 2017-04-03 14:51:45 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-03 20:36:56 +0000 |
commit | 669a418f75c05d4a39e2bcaff2b7b93dec1c5764 (patch) | |
tree | b76f5025c8e70b1ef449f317ff60a8eef7317ab9 /third_party/agg23/agg_curves.cpp | |
parent | ac978f83392e309488601eb382d5f318b6d366ad (diff) | |
download | pdfium-669a418f75c05d4a39e2bcaff2b7b93dec1c5764.tar.xz |
Drop FXSYS_ from math methods
This Cl drops the FXSYS_ from math methods which are the same on all
platforms.
Bug: pdfium:694
Change-Id: I85c9ff841fd9095b1434f67319847ba0cd9df7ac
Reviewed-on: https://pdfium-review.googlesource.com/3598
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'third_party/agg23/agg_curves.cpp')
-rw-r--r-- | third_party/agg23/agg_curves.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/third_party/agg23/agg_curves.cpp b/third_party/agg23/agg_curves.cpp index 4bfe457817..483da70128 100644 --- a/third_party/agg23/agg_curves.cpp +++ b/third_party/agg23/agg_curves.cpp @@ -61,17 +61,16 @@ void curve4_div::recursive_bezier(float x1, float y1, float y1234 = (y123 + y234) / 2; float dx = x4 - x1; float dy = y4 - y1; - float d2 = FXSYS_fabs(((x2 - x4) * dy) - ((y2 - y4) * dx)); - float d3 = FXSYS_fabs(((x3 - x4) * dy) - ((y3 - y4) * dx)); + float d2 = fabs(((x2 - x4) * dy) - ((y2 - y4) * dx)); + float d3 = fabs(((x3 - x4) * dy) - ((y3 - y4) * dx)); switch((int(d2 > curve_collinearity_epsilon) << 1) + int(d3 > curve_collinearity_epsilon)) { case 0: - if(FXSYS_fabs(x1 + x3 - x2 - x2) + - FXSYS_fabs(y1 + y3 - y2 - y2) + - FXSYS_fabs(x2 + x4 - x3 - x3) + - FXSYS_fabs(y2 + y4 - y3 - y3) <= m_distance_tolerance_manhattan) { - m_points.add(point_type(x1234, y1234, path_flags_jr)); - return; + if (fabs(x1 + x3 - x2 - x2) + fabs(y1 + y3 - y2 - y2) + + fabs(x2 + x4 - x3 - x3) + fabs(y2 + y4 - y3 - y3) <= + m_distance_tolerance_manhattan) { + m_points.add(point_type(x1234, y1234, path_flags_jr)); + return; } break; case 1: |