Title: [223854] trunk/Source/WebCore
Revision
223854
Author
[email protected]
Date
2017-10-23 13:59:40 -0700 (Mon, 23 Oct 2017)

Log Message

Attempt to stop iOS Simulator tests from failing because
we don't support Accelerated ImageBuffer.

* html/ImageBitmap.cpp:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (223853 => 223854)


--- trunk/Source/WebCore/ChangeLog	2017-10-23 20:42:50 UTC (rev 223853)
+++ trunk/Source/WebCore/ChangeLog	2017-10-23 20:59:40 UTC (rev 223854)
@@ -1,3 +1,10 @@
+2017-10-23  Dean Jackson  <[email protected]>
+
+        Attempt to stop iOS Simulator tests from failing because
+        we don't support Accelerated ImageBuffer.
+
+        * html/ImageBitmap.cpp:
+
 2017-10-23  Zalan Bujtas  <[email protected]>
 
         [FrameView::layout cleanup] Make m_subtreeLayoutRoot weak.

Modified: trunk/Source/WebCore/html/ImageBitmap.cpp (223853 => 223854)


--- trunk/Source/WebCore/html/ImageBitmap.cpp	2017-10-23 20:42:50 UTC (rev 223853)
+++ trunk/Source/WebCore/html/ImageBitmap.cpp	2017-10-23 20:59:40 UTC (rev 223854)
@@ -48,7 +48,7 @@
 
 namespace WebCore {
 
-#if PLATFORM(COCOA)
+#if PLATFORM(COCOA) && !PLATFORM(IOS_SIMULATOR)
 static RenderingMode bufferRenderingMode = Accelerated;
 #else
 static RenderingMode bufferRenderingMode = Unaccelerated;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to