Changeset 181110 in webkit


Ignore:
Timestamp:
Mar 5, 2015 3:56:25 PM (9 years ago)
Author:
commit-queue@webkit.org
Message:

Fix the build when NEON_INTRINSICS is enabled
https://bugs.webkit.org/show_bug.cgi?id=142361

Patch by Sandy Perez <sperez@indaba.es> on 2015-03-05
Reviewed by Csaba Osztrogonác.

  • platform/graphics/cpu/arm/filters/FEBlendNEON.h:

(WebCore::FEBlend::platformApplySoftware):

  • platform/graphics/filters/FEGaussianBlur.cpp:

(WebCore::standardBoxBlur):

Location:
trunk/Source/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r181107 r181110  
     12015-03-05  Sandy Perez  <sperez@indaba.es>
     2
     3        Fix the build when NEON_INTRINSICS is enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=142361
     5
     6        Reviewed by Csaba Osztrogonác.
     7
     8        * platform/graphics/cpu/arm/filters/FEBlendNEON.h:
     9        (WebCore::FEBlend::platformApplySoftware):
     10        * platform/graphics/filters/FEGaussianBlur.cpp:
     11        (WebCore::standardBoxBlur):
     12
    1132015-03-05  Benjamin Poulain  <bpoulain@apple.com>
    214
  • trunk/Source/WebCore/platform/graphics/cpu/arm/filters/FEBlendNEON.h

    r173397 r181110  
    127127    if (pixelArrayLength >= 8) {
    128128        platformApplyNEON(srcPixelArrayA->data(), srcPixelArrayB->data(), dstPixelArray->data(), pixelArrayLength);
    129         return
     129        return;
    130130    }
    131131    // If there is just one pixel we expand it to two.
  • trunk/Source/WebCore/platform/graphics/filters/FEGaussianBlur.cpp

    r180147 r181110  
    346346            kernelPosition(i, kernelSizeX, dxLeft, dxRight);
    347347#if HAVE(ARM_NEON_INTRINSICS)
    348             if (!isAlphaImage())
     348            if (!isAlphaImage)
    349349                boxBlurNEON(src, dst, kernelSizeX, dxLeft, dxRight, 4, stride, paintSize.width(), paintSize.height());
    350350            else
     
    359359            kernelPosition(i, kernelSizeY, dyLeft, dyRight);
    360360#if HAVE(ARM_NEON_INTRINSICS)
    361             if (!isAlphaImage())
     361            if (!isAlphaImage)
    362362                boxBlurNEON(src, dst, kernelSizeY, dyLeft, dyRight, stride, 4, paintSize.height(), paintSize.width());
    363363            else
Note: See TracChangeset for help on using the changeset viewer.