From 0844347457de44a1d72d29e49cdfde723a6ee0ce6b1c3080b848a59e484a3ab6 Mon Sep 17 00:00:00 2001 From: Wolfgang Rosenauer Date: Wed, 26 Feb 2020 08:14:44 +0000 Subject: [PATCH] - big endian fixes * mozilla-bmo1610814.patch (boo#1164845, bmo#1610814) (bmo#1614535, boo#1164646) OBS-URL: https://build.opensuse.org/package/show/mozilla:Factory/MozillaFirefox?expand=0&rev=807 --- MozillaFirefox.changes | 9 +++++++-- mozilla-bmo1504834-part2.patch | 8 ++++---- mozilla-bmo1504834-part4.patch | 2 +- mozilla-bmo849632.patch | 2 +- 4 files changed, 13 insertions(+), 8 deletions(-) diff --git a/MozillaFirefox.changes b/MozillaFirefox.changes index 3a3923e..4d2274d 100644 --- a/MozillaFirefox.changes +++ b/MozillaFirefox.changes @@ -1,8 +1,13 @@ +------------------------------------------------------------------- +Wed Feb 26 08:12:00 UTC 2020 - Wolfgang Rosenauer + +- big endian fixes + ------------------------------------------------------------------- Tue Feb 25 14:17:00 UTC 2020 - Guillaume GARDET - Fix build on aarch64/armv7 with: - * mozilla-bmo1610814.patch - boo#1164845 + * mozilla-bmo1610814.patch (boo#1164845, bmo#1610814) ------------------------------------------------------------------- Thu Feb 20 13:40:59 UTC 2020 - Wolfgang Rosenauer @@ -13,7 +18,7 @@ Thu Feb 20 13:40:59 UTC 2020 - Wolfgang Rosenauer * Fixed Firefox unexpectedly exiting when leaving Print Preview mode (bmo#1611133) * Fixed crashes when playing encrypted content on some Linux systems - (bmo#1614535) + (bmo#1614535, boo#1164646) - start in wayland mode when running under wayland session ------------------------------------------------------------------- diff --git a/mozilla-bmo1504834-part2.patch b/mozilla-bmo1504834-part2.patch index 1b13b21..9fe1b56 100644 --- a/mozilla-bmo1504834-part2.patch +++ b/mozilla-bmo1504834-part2.patch @@ -23,7 +23,7 @@ diff -r 0e579dcbf732 gfx/2d/ConvolutionFilter.cpp + void ConvolutionFilter::ConvolveHorizontally(const uint8_t* aSrc, uint8_t* aDst, bool aHasAlpha) { -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + int outputSize = mFilter->numValues(); + + // Input size isn't handed in, so we have to calculate it quickly @@ -40,7 +40,7 @@ diff -r 0e579dcbf732 gfx/2d/ConvolutionFilter.cpp + SkOpts::convolve_horizontally(aSrc, *mFilter, aDst, aHasAlpha); + -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + ByteSwapArray((uint8_t*)aSrc, inputSize); + ByteSwapArray(aDst, outputSize); +#endif @@ -52,7 +52,7 @@ diff -r 0e579dcbf732 gfx/2d/ConvolutionFilter.cpp auto filterValues = mFilter->FilterForValue(aRowIndex, &filterOffset, &filterLength); + -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + for (int filterY = 0; filterY < filterLength; filterY++) { + // Skia only knows LE, so we have to swizzle the input + ByteSwapArray(aSrc[filterY], aRowSize); @@ -62,7 +62,7 @@ diff -r 0e579dcbf732 gfx/2d/ConvolutionFilter.cpp SkOpts::convolve_vertically(filterValues, filterLength, aSrc, aRowSize, aDst, aHasAlpha); + -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + // After skia is finished, we swizzle back to BE, in case + // the input is used again somewhere else + for (int filterY = 0; filterY < filterLength; filterY++) { diff --git a/mozilla-bmo1504834-part4.patch b/mozilla-bmo1504834-part4.patch index be11964..6bc8c2b 100644 --- a/mozilla-bmo1504834-part4.patch +++ b/mozilla-bmo1504834-part4.patch @@ -17,7 +17,7 @@ diff -r 46ea866ca3ac -r 6ef20eee3f8f gfx/2d/DrawTargetSkia.cpp SkCanvas::kPreserveLCDText_SaveLayerFlag | (aCopyBackground ? SkCanvas::kInitWithPrevious_SaveLayerFlag : 0)); -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + // Pushing a layer where an aMask is defined produces wrong output. + // We _should_ endian swap the data, but I couldn't find a workable way to do so + // Therefore I deactivate those layers in the meantime. diff --git a/mozilla-bmo849632.patch b/mozilla-bmo849632.patch index f6dc2c7..76380b5 100644 --- a/mozilla-bmo849632.patch +++ b/mozilla-bmo849632.patch @@ -10,7 +10,7 @@ diff -r 6b017d3e9733 gfx/gl/GLContext.h BEFORE_GL_CALL; mSymbols.fReadPixels(x, y, width, height, format, type, pixels); OnSyncCall(); -+#if MOZ_BIG_ENDIAN ++#if MOZ_BIG_ENDIAN() + uint8_t* itr = (uint8_t*)pixels; + for (GLsizei i = 0; i < width * height; i++) { + NativeEndian::swapToLittleEndianInPlace((uint32_t*)itr, 1);