mozilla-bmo1504834-part4.patch
branchfirefox73
changeset 1122 a9cd24eaa361
parent 1114 572ec48f3fe8
child 1123 7fa561e5d7c7
equal deleted inserted replaced
1121:004e4b1efb26 1122:a9cd24eaa361
    15 +++ b/gfx/2d/DrawTargetSkia.cpp	Thu Oct 31 09:11:56 2019 +0100
    15 +++ b/gfx/2d/DrawTargetSkia.cpp	Thu Oct 31 09:11:56 2019 +0100
    16 @@ -1861,6 +1861,14 @@
    16 @@ -1861,6 +1861,14 @@
    17        SkCanvas::kPreserveLCDText_SaveLayerFlag |
    17        SkCanvas::kPreserveLCDText_SaveLayerFlag |
    18            (aCopyBackground ? SkCanvas::kInitWithPrevious_SaveLayerFlag : 0));
    18            (aCopyBackground ? SkCanvas::kInitWithPrevious_SaveLayerFlag : 0));
    19  
    19  
    20 +#if MOZ_BIG_ENDIAN
    20 +#if MOZ_BIG_ENDIAN()
    21 +  // Pushing a layer where an aMask is defined produces wrong output.
    21 +  // Pushing a layer where an aMask is defined produces wrong output.
    22 +  // We _should_ endian swap the data, but I couldn't find a workable way to do so
    22 +  // We _should_ endian swap the data, but I couldn't find a workable way to do so
    23 +  // Therefore I deactivate those layers in the meantime.
    23 +  // Therefore I deactivate those layers in the meantime.
    24 +  // The result is: Tab-titles that are longer than the available space should be faded out.
    24 +  // The result is: Tab-titles that are longer than the available space should be faded out.
    25 +  //                The fading doesn't work, so we deactivate the fading-effect here.
    25 +  //                The fading doesn't work, so we deactivate the fading-effect here.