Title: [228330] trunk
Revision
228330
Author
ross.kirsl...@sony.com
Date
2018-02-09 10:59:54 -0800 (Fri, 09 Feb 2018)

Log Message

Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
https://bugs.webkit.org/show_bug.cgi?id=182623

Reviewed by Alex Christensen.

PerformanceTests:

* StitchMarker/wtf/Platform.h:
Simplify #if.

Source/WTF:

* wtf/Platform.h:
Simplify #if.

Modified Paths

Diff

Modified: trunk/PerformanceTests/ChangeLog (228329 => 228330)


--- trunk/PerformanceTests/ChangeLog	2018-02-09 18:47:37 UTC (rev 228329)
+++ trunk/PerformanceTests/ChangeLog	2018-02-09 18:59:54 UTC (rev 228330)
@@ -1,3 +1,13 @@
+2018-02-09  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
+        https://bugs.webkit.org/show_bug.cgi?id=182623
+
+        Reviewed by Alex Christensen.
+
+        * StitchMarker/wtf/Platform.h:
+        Simplify #if.
+
 2018-02-01  Antti Koivisto  <an...@apple.com>
 
         StyleBench: Attribute selectors and other improvements

Modified: trunk/PerformanceTests/StitchMarker/wtf/Platform.h (228329 => 228330)


--- trunk/PerformanceTests/StitchMarker/wtf/Platform.h	2018-02-09 18:47:37 UTC (rev 228329)
+++ trunk/PerformanceTests/StitchMarker/wtf/Platform.h	2018-02-09 18:59:54 UTC (rev 228330)
@@ -1102,7 +1102,7 @@
 #define USE_VIDEOTOOLBOX 1
 #endif
 
-#if PLATFORM(COCOA) || PLATFORM(GTK) || PLATFORM(WPE)
+#if !PLATFORM(WIN)
 #define USE_REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR 1
 #endif
 

Modified: trunk/Source/WTF/ChangeLog (228329 => 228330)


--- trunk/Source/WTF/ChangeLog	2018-02-09 18:47:37 UTC (rev 228329)
+++ trunk/Source/WTF/ChangeLog	2018-02-09 18:59:54 UTC (rev 228330)
@@ -1,3 +1,13 @@
+2018-02-09  Ross Kirsling  <ross.kirsl...@sony.com>
+
+        Use REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR on any non-Windows port.
+        https://bugs.webkit.org/show_bug.cgi?id=182623
+
+        Reviewed by Alex Christensen.
+
+        * wtf/Platform.h:
+        Simplify #if.
+
 2018-02-08  Filip Pizlo  <fpi...@apple.com>
 
         Experiment with alternative implementation of memcpy/memset

Modified: trunk/Source/WTF/wtf/Platform.h (228329 => 228330)


--- trunk/Source/WTF/wtf/Platform.h	2018-02-09 18:47:37 UTC (rev 228329)
+++ trunk/Source/WTF/wtf/Platform.h	2018-02-09 18:59:54 UTC (rev 228330)
@@ -1128,7 +1128,7 @@
 #define HAVE_AVFOUNDATION_LOADER_DELEGATE 1
 #endif
 
-#if PLATFORM(COCOA) || PLATFORM(GTK) || PLATFORM(WPE)
+#if !PLATFORM(WIN)
 #define USE_REQUEST_ANIMATION_FRAME_DISPLAY_MONITOR 1
 #endif
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to