Title: [103143] trunk/Source/WebCore
- Revision
- 103143
- Author
- [email protected]
- Date
- 2011-12-16 21:53:42 -0800 (Fri, 16 Dec 2011)
Log Message
FEComposite does not build when you disable filters on ARMv7
https://bugs.webkit.org/show_bug.cgi?id=74772
Patch by Benjamin Poulain <[email protected]> on 2011-12-16
Reviewed by David Kilzer.
Add the missing ENABLE(FILTERS).
* platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp:
* platform/graphics/filters/arm/FECompositeArithmeticNEON.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (103142 => 103143)
--- trunk/Source/WebCore/ChangeLog 2011-12-17 04:50:01 UTC (rev 103142)
+++ trunk/Source/WebCore/ChangeLog 2011-12-17 05:53:42 UTC (rev 103143)
@@ -1,3 +1,15 @@
+2011-12-16 Benjamin Poulain <[email protected]>
+
+ FEComposite does not build when you disable filters on ARMv7
+ https://bugs.webkit.org/show_bug.cgi?id=74772
+
+ Reviewed by David Kilzer.
+
+ Add the missing ENABLE(FILTERS).
+
+ * platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp:
+ * platform/graphics/filters/arm/FECompositeArithmeticNEON.h:
+
2011-12-16 Ryosuke Niwa <[email protected]>
Mac build fix after r103104.
Modified: trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp (103142 => 103143)
--- trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp 2011-12-17 04:50:01 UTC (rev 103142)
+++ trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.cpp 2011-12-17 05:53:42 UTC (rev 103143)
@@ -25,6 +25,8 @@
*/
#include "config.h"
+
+#if ENABLE(FILTERS)
#include "FECompositeArithmeticNEON.h"
#if CPU(ARM_NEON) && COMPILER(GCC)
@@ -148,3 +150,6 @@
} // namespace WebCore
#endif // CPU(ARM_NEON) && COMPILER(GCC)
+
+#endif // ENABLE(FILTERS)
+
Modified: trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.h (103142 => 103143)
--- trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.h 2011-12-17 04:50:01 UTC (rev 103142)
+++ trunk/Source/WebCore/platform/graphics/filters/arm/FECompositeArithmeticNEON.h 2011-12-17 05:53:42 UTC (rev 103143)
@@ -29,6 +29,7 @@
#include <wtf/Platform.h>
+#if ENABLE(FILTERS)
#if CPU(ARM_NEON) && COMPILER(GCC)
#include "FEComposite.h"
@@ -47,5 +48,6 @@
} // namespace WebCore
#endif // CPU(ARM_NEON) && COMPILER(GCC)
+#endif // ENABLE(FILTERS)
#endif // FECompositeArithmeticNEON_h
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes