mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 06:43:32 +00:00
Bug 684049 - cairoint.h should only use lround in C99 programs; r=jrmuizel
This commit is contained in:
parent
26a6bd99f6
commit
2a3b6c8b36
@ -172,6 +172,8 @@ fixup-unbounded.patch: Hack to work around bad assumption.
|
||||
|
||||
quartz-get-image-performance: Make cairo_quartz_get_image faster in the failure case by not flushing unless we are going to succeed.
|
||||
|
||||
lround-c99-only.patch: Only use lround in C99 programs.
|
||||
|
||||
==== pixman patches ====
|
||||
|
||||
pixman-android-cpu-detect.patch: Add CPU detection support for Android, where we can't reliably access /proc/self/auxv.
|
||||
|
@ -483,7 +483,7 @@ _cairo_operator_bounded_by_either (cairo_operator_t op)
|
||||
|
||||
}
|
||||
|
||||
#if DISABLE_SOME_FLOATING_POINT
|
||||
#if DISABLE_SOME_FLOATING_POINT || __STDC_VERSION__ < 199901L
|
||||
/* This function is identical to the C99 function lround(), except that it
|
||||
* performs arithmetic rounding (floor(d + .5) instead of away-from-zero rounding) and
|
||||
* has a valid input range of (INT_MIN, INT_MAX] instead of
|
||||
|
@ -974,7 +974,7 @@ _cairo_round (double r)
|
||||
return floor (r + .5);
|
||||
}
|
||||
|
||||
#if DISABLE_SOME_FLOATING_POINT
|
||||
#if DISABLE_SOME_FLOATING_POINT || __STDC_VERSION__ < 199901L
|
||||
cairo_private int
|
||||
_cairo_lround (double d) cairo_const;
|
||||
#else
|
||||
|
46
gfx/cairo/lround-c99-only.patch
Normal file
46
gfx/cairo/lround-c99-only.patch
Normal file
@ -0,0 +1,46 @@
|
||||
Only use lround in C99 programs.
|
||||
|
||||
diff --git a/gfx/cairo/cairo/src/cairo-misc.c b/gfx/cairo/cairo/src/cairo-misc.c
|
||||
--- a/gfx/cairo/cairo/src/cairo-misc.c
|
||||
+++ b/gfx/cairo/cairo/src/cairo-misc.c
|
||||
@@ -478,17 +478,17 @@ _cairo_operator_bounded_by_either (cairo
|
||||
case CAIRO_OPERATOR_IN:
|
||||
case CAIRO_OPERATOR_DEST_IN:
|
||||
case CAIRO_OPERATOR_DEST_ATOP:
|
||||
return 0;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
-#if DISABLE_SOME_FLOATING_POINT
|
||||
+#if DISABLE_SOME_FLOATING_POINT || __STDC_VERSION__ < 199901L
|
||||
/* This function is identical to the C99 function lround(), except that it
|
||||
* performs arithmetic rounding (floor(d + .5) instead of away-from-zero rounding) and
|
||||
* has a valid input range of (INT_MIN, INT_MAX] instead of
|
||||
* [INT_MIN, INT_MAX]. It is much faster on both x86 and FPU-less systems
|
||||
* than other commonly used methods for rounding (lround, round, rint, lrint
|
||||
* or float (d + 0.5)).
|
||||
*
|
||||
* The reason why this function is much faster on x86 than other
|
||||
diff --git a/gfx/cairo/cairo/src/cairoint.h b/gfx/cairo/cairo/src/cairoint.h
|
||||
--- a/gfx/cairo/cairo/src/cairoint.h
|
||||
+++ b/gfx/cairo/cairo/src/cairoint.h
|
||||
@@ -969,17 +969,17 @@ _cairo_restrict_value (double value, dou
|
||||
* away from 0. _cairo_round rounds halfway cases toward negative infinity.
|
||||
* This matches the rounding behaviour of _cairo_lround. */
|
||||
static inline double cairo_const
|
||||
_cairo_round (double r)
|
||||
{
|
||||
return floor (r + .5);
|
||||
}
|
||||
|
||||
-#if DISABLE_SOME_FLOATING_POINT
|
||||
+#if DISABLE_SOME_FLOATING_POINT || __STDC_VERSION__ < 199901L
|
||||
cairo_private int
|
||||
_cairo_lround (double d) cairo_const;
|
||||
#else
|
||||
#define _cairo_lround lround
|
||||
#endif
|
||||
|
||||
cairo_private uint16_t
|
||||
_cairo_half_from_float (float f) cairo_const;
|
Loading…
Reference in New Issue
Block a user