mozilla-bmo1504834-part1.patch
branchfirefox68
changeset 1101 a4709640638e
child 1119 4c5d44d40a03
equal deleted inserted replaced
1100:e1c5065a014f 1101:a4709640638e
       
     1 # HG changeset patch
       
     2 # Parent  051b75a600dfbf7503c3485cebfd34d4eb29be96
       
     3 Taken from https://bugzilla.mozilla.org/show_bug.cgi?id=1504834
       
     4 
       
     5 diff -r 051b75a600df gfx/2d/DrawTargetSkia.cpp
       
     6 --- a/gfx/2d/DrawTargetSkia.cpp	Fri Jul 05 12:42:44 2019 +0200
       
     7 +++ b/gfx/2d/DrawTargetSkia.cpp	Mon Jul 08 10:59:30 2019 +0200
       
     8 @@ -138,8 +138,7 @@
       
     9    return surfaceBounds.Intersect(bounds);
       
    10  }
       
    11  
       
    12 -static const int kARGBAlphaOffset =
       
    13 -    SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
       
    14 +static const int kARGBAlphaOffset = 0;  // Skia is always BGRA SurfaceFormat::A8R8G8B8_UINT32 == SurfaceFormat::B8G8R8A8 ? 3 : 0;
       
    15  
       
    16  static bool VerifyRGBXFormat(uint8_t* aData, const IntSize& aSize,
       
    17                               const int32_t aStride, SurfaceFormat aFormat) {
       
    18 diff -r 051b75a600df gfx/2d/Types.h
       
    19 --- a/gfx/2d/Types.h	Fri Jul 05 12:42:44 2019 +0200
       
    20 +++ b/gfx/2d/Types.h	Mon Jul 08 10:59:30 2019 +0200
       
    21 @@ -85,15 +85,8 @@
       
    22  // The following values are endian-independent synonyms. The _UINT32 suffix
       
    23  // indicates that the name reflects the layout when viewed as a uint32_t
       
    24  // value.
       
    25 -#if MOZ_LITTLE_ENDIAN
       
    26    A8R8G8B8_UINT32 = B8G8R8A8,  // 0xAARRGGBB
       
    27    X8R8G8B8_UINT32 = B8G8R8X8   // 0x00RRGGBB
       
    28 -#elif MOZ_BIG_ENDIAN
       
    29 -  A8R8G8B8_UINT32 = A8R8G8B8,  // 0xAARRGGBB
       
    30 -  X8R8G8B8_UINT32 = X8R8G8B8   // 0x00RRGGBB
       
    31 -#else
       
    32 -#  error "bad endianness"
       
    33 -#endif
       
    34  };
       
    35  
       
    36  static inline int BytesPerPixel(SurfaceFormat aFormat) {
       
    37 diff -r 051b75a600df gfx/skia/skia/third_party/skcms/skcms.cc
       
    38 --- a/gfx/skia/skia/third_party/skcms/skcms.cc	Fri Jul 05 12:42:44 2019 +0200
       
    39 +++ b/gfx/skia/skia/third_party/skcms/skcms.cc	Mon Jul 08 10:59:30 2019 +0200
       
    40 @@ -17,6 +17,8 @@
       
    41      #include <arm_neon.h>
       
    42  #elif defined(__SSE__)
       
    43      #include <immintrin.h>
       
    44 +#else
       
    45 +    #define SKCMS_PORTABLE
       
    46  #endif
       
    47  
       
    48  // sizeof(x) will return size_t, which is 32-bit on some machines and 64-bit on others.
       
    49 @@ -124,20 +126,28 @@
       
    50  static uint16_t read_big_u16(const uint8_t* ptr) {
       
    51      uint16_t be;
       
    52      memcpy(&be, ptr, sizeof(be));
       
    53 -#if defined(_MSC_VER)
       
    54 +#if __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__
       
    55 +    return be;
       
    56 +#else
       
    57 +    #if defined(_MSC_VER)
       
    58      return _byteswap_ushort(be);
       
    59 -#else
       
    60 +    #else
       
    61      return __builtin_bswap16(be);
       
    62 +    #endif
       
    63  #endif
       
    64  }
       
    65  
       
    66  static uint32_t read_big_u32(const uint8_t* ptr) {
       
    67      uint32_t be;
       
    68      memcpy(&be, ptr, sizeof(be));
       
    69 -#if defined(_MSC_VER)
       
    70 +#if __BYTE_ORDER == __ORDER_BIG_ENDIAN__
       
    71 +    return be;
       
    72 +#else
       
    73 +    #if defined(_MSC_VER)
       
    74      return _byteswap_ulong(be);
       
    75 -#else
       
    76 +    #else
       
    77      return __builtin_bswap32(be);
       
    78 +    #endif
       
    79  #endif
       
    80  }
       
    81