Title: [289770] trunk
Revision
289770
Author
[email protected]
Date
2022-02-14 14:59:46 -0800 (Mon, 14 Feb 2022)

Log Message

Enable accelerated drawing in the iOS simulator
https://bugs.webkit.org/show_bug.cgi?id=231828
rdar://problem/84315491

Reviewed by Simon Fraser.

Tools:

* WebKitTestRunner/TestOptions.cpp:
(WTR::TestOptions::defaults):

LayoutTests:

* platform/ios/compositing/canvas/accelerated-canvas-compositing-size-limit-expected.txt:

Modified Paths

Diff

Modified: trunk/LayoutTests/ChangeLog (289769 => 289770)


--- trunk/LayoutTests/ChangeLog	2022-02-14 22:59:12 UTC (rev 289769)
+++ trunk/LayoutTests/ChangeLog	2022-02-14 22:59:46 UTC (rev 289770)
@@ -1,3 +1,13 @@
+2022-02-07  Jon Lee  <[email protected]>
+
+        Enable accelerated drawing in the iOS simulator
+        https://bugs.webkit.org/show_bug.cgi?id=231828
+        rdar://problem/84315491
+
+        Reviewed by Simon Fraser.
+
+        * platform/ios/compositing/canvas/accelerated-canvas-compositing-size-limit-expected.txt:
+
 2022-02-14  Truitt Savell  <[email protected]>
 
         Mark imported/w3c/web-platform-tests/xhr/send-timeout-events.htm as failing on iOS aftet the changes in r289540

Modified: trunk/LayoutTests/platform/ios/compositing/canvas/accelerated-canvas-compositing-size-limit-expected.txt (289769 => 289770)


--- trunk/LayoutTests/platform/ios/compositing/canvas/accelerated-canvas-compositing-size-limit-expected.txt	2022-02-14 22:59:12 UTC (rev 289769)
+++ trunk/LayoutTests/platform/ios/compositing/canvas/accelerated-canvas-compositing-size-limit-expected.txt	2022-02-14 22:59:46 UTC (rev 289770)
@@ -7,6 +7,7 @@
     (GraphicsLayer
       (bounds 5208.00 6175.00)
       (contentsOpaque 1)
+      (acceleratesDrawing 1)
       (children 3
         (GraphicsLayer
           (position 8.00 52.00)
@@ -26,6 +27,7 @@
           (bounds 5200.00 2900.00)
           (usingTiledLayer 1)
           (drawsContent 1)
+          (acceleratesDrawing 1)
         )
       )
     )

Modified: trunk/Tools/ChangeLog (289769 => 289770)


--- trunk/Tools/ChangeLog	2022-02-14 22:59:12 UTC (rev 289769)
+++ trunk/Tools/ChangeLog	2022-02-14 22:59:46 UTC (rev 289770)
@@ -1,3 +1,14 @@
+2022-02-07  Jon Lee  <[email protected]>
+
+        Enable accelerated drawing in the iOS simulator
+        https://bugs.webkit.org/show_bug.cgi?id=231828
+        rdar://problem/84315491
+
+        Reviewed by Simon Fraser.
+
+        * WebKitTestRunner/TestOptions.cpp:
+        (WTR::TestOptions::defaults):
+
 2022-02-14  J Pascoe  <[email protected]>
 
         [WebAuthn] Access group not set in add query for importLocalAuthenticatorCredential

Modified: trunk/Tools/WebKitTestRunner/TestOptions.cpp (289769 => 289770)


--- trunk/Tools/WebKitTestRunner/TestOptions.cpp	2022-02-14 22:59:12 UTC (rev 289769)
+++ trunk/Tools/WebKitTestRunner/TestOptions.cpp	2022-02-14 22:59:46 UTC (rev 289770)
@@ -63,7 +63,9 @@
             // an experimental feature which gets enabled by default automatically)
             // as it adds a small amount of unnecessary work per-test.
 
+#if !PLATFORM(IOS_SIMULATOR)
             { "AcceleratedDrawingEnabled", false },
+#endif
             { "AllowFileAccessFromFileURLs", true },
             { "AllowTopNavigationToDataURLs", true },
             { "AllowUniversalAccessFromFileURLs", true },
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to