Title: [164060] trunk/Source/WebCore
Revision
164060
Author
[email protected]
Date
2014-02-13 14:59:40 -0800 (Thu, 13 Feb 2014)

Log Message

Fix ARM NEON build following <http://trac.webkit.org/changeset/164058>
(https://bugs.webkit.org/show_bug.cgi?id=128767)

I inadvertently didn't include header NEONHelpers.h, which defines WebCore::loadRGBA8AsFloat().

* platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (164059 => 164060)


--- trunk/Source/WebCore/ChangeLog	2014-02-13 22:46:51 UTC (rev 164059)
+++ trunk/Source/WebCore/ChangeLog	2014-02-13 22:59:40 UTC (rev 164060)
@@ -1,5 +1,14 @@
 2014-02-13  Daniel Bates  <[email protected]>
 
+        Fix ARM NEON build following <http://trac.webkit.org/changeset/164058>
+        (https://bugs.webkit.org/show_bug.cgi?id=128767)
+
+        I inadvertently didn't include header NEONHelpers.h, which defines WebCore::loadRGBA8AsFloat().
+
+        * platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h:
+
+2014-02-13  Daniel Bates  <[email protected]>
+
         Write FEComposite::computeArithmeticPixelsNeon() in terms of loadRGBA8AsFloat()
         https://bugs.webkit.org/show_bug.cgi?id=128767
 

Modified: trunk/Source/WebCore/platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h (164059 => 164060)


--- trunk/Source/WebCore/platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h	2014-02-13 22:46:51 UTC (rev 164059)
+++ trunk/Source/WebCore/platform/graphics/cpu/arm/filters/FECompositeArithmeticNEON.h	2014-02-13 22:59:40 UTC (rev 164060)
@@ -30,6 +30,7 @@
 #if ENABLE(FILTERS) && HAVE(ARM_NEON_INTRINSICS)
 
 #include "FEComposite.h"
+#include "NEONHelpers.h"
 #include <arm_neon.h>
 
 namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to