Title: [151858] trunk/Source/WebCore
Revision
151858
Author
achristen...@apple.com
Date
2013-06-21 14:55:47 -0700 (Fri, 21 Jun 2013)

Log Message

GraphicsContext3DNEON.h cannot be found on Windows and does not need to be found.
https://bugs.webkit.org/show_bug.cgi?id=117894

Reviewed by Brent Fulgham.

* platform/graphics/GraphicsContext3D.cpp:
Added #if HAVE(ARM_NEON_INTRINSICS) around #include "GraphicsContext3DNEON.h"

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (151857 => 151858)


--- trunk/Source/WebCore/ChangeLog	2013-06-21 21:33:02 UTC (rev 151857)
+++ trunk/Source/WebCore/ChangeLog	2013-06-21 21:55:47 UTC (rev 151858)
@@ -1,3 +1,13 @@
+2013-06-21  Alex Christensen  <achristen...@apple.com>
+
+        GraphicsContext3DNEON.h cannot be found on Windows and does not need to be found.
+        https://bugs.webkit.org/show_bug.cgi?id=117894
+
+        Reviewed by Brent Fulgham.
+
+        * platform/graphics/GraphicsContext3D.cpp:
+        Added #if HAVE(ARM_NEON_INTRINSICS) around #include "GraphicsContext3DNEON.h"
+
 2013-06-21  Robert Hogan  <rob...@webkit.org>
 
         Ignoring padding-right of inline elements in containers with undefined width

Modified: trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp (151857 => 151858)


--- trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2013-06-21 21:33:02 UTC (rev 151857)
+++ trunk/Source/WebCore/platform/graphics/GraphicsContext3D.cpp	2013-06-21 21:55:47 UTC (rev 151858)
@@ -30,7 +30,6 @@
 #if USE(3D_GRAPHICS)
 
 #include "GraphicsContext3D.h"
-#include "GraphicsContext3DNEON.h"
 
 #include "CheckedInt.h"
 #include "DrawingBuffer.h"
@@ -39,6 +38,10 @@
 #include "ImageData.h"
 #include "ImageObserver.h"
 
+#if HAVE(ARM_NEON_INTRINSICS)
+#include "GraphicsContext3DNEON.h"
+#endif
+
 #include <wtf/ArrayBufferView.h>
 #include <wtf/OwnArrayPtr.h>
 #include <wtf/PassOwnArrayPtr.h>
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to