components/desktop/thunderbird/patches/firefox-31-urlbar-sparc.patch
changeset 7018 fdf447a07aff
parent 7017 25872950aa80
child 7020 58ca1f0fa3a7
--- a/components/desktop/thunderbird/patches/firefox-31-urlbar-sparc.patch	Fri Sep 30 21:33:56 2016 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-For the font in the URL bar. Can try to send upstream.
-
-diff --git a/gfx/cairo/cairo/src/cairo-xlib-surface.c b/gfx/cairo/cairo/src/cairo-xlib-surface.c
---- a/gfx/cairo/cairo/src/cairo-xlib-surface.c
-+++ b/gfx/cairo/cairo/src/cairo-xlib-surface.c
-@@ -1310,7 +1310,11 @@
- 		int a, r, g, b;
- 
- 		if (image_masks.bpp == 1)
-+#ifdef WORDS_BIGENDIAN
-+		    in_pixel = !! (((uint8_t*)row)[x/8] & (1 << (7 - (x & 7))));
-+#else
-		    in_pixel = !! (((uint8_t*)row)[x/8] & (1 << (x & 7)));
-+#endif
- 		else if (image_masks.bpp <= 8)
- 		    in_pixel = ((uint8_t*)row)[x];
- 		else if (image_masks.bpp <= 16)