Title: [142129] trunk/Source/WTF
Revision
142129
Author
[email protected]
Date
2013-02-07 08:31:22 -0800 (Thu, 07 Feb 2013)

Log Message

[Qt] Fix build without 3D_GRAPHICS
https://bugs.webkit.org/show_bug.cgi?id=109194

Reviewed by Noam Rosenthal.

Now that Coordinated Graphics was moved to WebCore, we need to explicitly enable
it when we have 3D_GRAPHICS. This dependency was implicitly by the fact that
3D_GRAPHICS is a dependency of WebKit2 and Coordinated Graphics was only
available there. This should fix build for Qt SH4 Linux.

* wtf/Platform.h:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (142128 => 142129)


--- trunk/Source/WTF/ChangeLog	2013-02-07 16:30:20 UTC (rev 142128)
+++ trunk/Source/WTF/ChangeLog	2013-02-07 16:31:22 UTC (rev 142129)
@@ -1,3 +1,17 @@
+2013-02-07  Caio Marcelo de Oliveira Filho  <[email protected]>
+
+        [Qt] Fix build without 3D_GRAPHICS
+        https://bugs.webkit.org/show_bug.cgi?id=109194
+
+        Reviewed by Noam Rosenthal.
+
+        Now that Coordinated Graphics was moved to WebCore, we need to explicitly enable
+        it when we have 3D_GRAPHICS. This dependency was implicitly by the fact that
+        3D_GRAPHICS is a dependency of WebKit2 and Coordinated Graphics was only
+        available there. This should fix build for Qt SH4 Linux.
+
+        * wtf/Platform.h:
+
 2013-02-06  Zan Dobersek  <[email protected]>
 
         [WTFURL] Fix erroneous header inclusions in WTFURL code

Modified: trunk/Source/WTF/wtf/Platform.h (142128 => 142129)


--- trunk/Source/WTF/wtf/Platform.h	2013-02-07 16:30:20 UTC (rev 142128)
+++ trunk/Source/WTF/wtf/Platform.h	2013-02-07 16:31:22 UTC (rev 142129)
@@ -1077,7 +1077,7 @@
 #endif
 
 /* Compositing on the UI-process in WebKit2 */
-#if PLATFORM(QT)
+#if USE(3D_GRAPHICS) && PLATFORM(QT)
 #define WTF_USE_COORDINATED_GRAPHICS 1
 #endif
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to