components/desktop/thunderbird/patches/firefox31-409-thumbnail-sparc.patch
changeset 5527 611b2d6efdfe
parent 5526 570ac9aab8b2
child 5528 f2f5af510081
equal deleted inserted replaced
5526:570ac9aab8b2 5527:611b2d6efdfe
     1 Either already fixed or we can send upstream.
       
     2 
       
     3 --- comm-esr31/mozilla/gfx/2d/DataSurfaceHelpers.cpp.orig	2015-06-04 17:42:52.952071382 -0700
       
     4 +++ comm-esr31/mozilla/gfx/2d/DataSurfaceHelpers.cpp	2015-06-04 17:42:52.954656062 -0700
       
     5 @@ -19,11 +19,7 @@
       
     6  
       
     7    for (int row = 0; row < aSize.height; ++row) {
       
     8      for (int column = 0; column < aSize.width; ++column) {
       
     9 -#ifdef IS_BIG_ENDIAN
       
    10 -      pixel[column] |= 0x000000FF;
       
    11 -#else
       
    12        pixel[column] |= 0xFF000000;
       
    13 -#endif
       
    14      }
       
    15      pixel += (aStride/4);
       
    16    }