Changeset 142129 in webkit


Ignore:
Timestamp:
Feb 7, 2013 8:31:22 AM (11 years ago)
Author:
caio.oliveira@openbossa.org
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:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r142022 r142129  
     12013-02-07  Caio Marcelo de Oliveira Filho  <caio.oliveira@openbossa.org>
     2
     3        [Qt] Fix build without 3D_GRAPHICS
     4        https://bugs.webkit.org/show_bug.cgi?id=109194
     5
     6        Reviewed by Noam Rosenthal.
     7
     8        Now that Coordinated Graphics was moved to WebCore, we need to explicitly enable
     9        it when we have 3D_GRAPHICS. This dependency was implicitly by the fact that
     10        3D_GRAPHICS is a dependency of WebKit2 and Coordinated Graphics was only
     11        available there. This should fix build for Qt SH4 Linux.
     12
     13        * wtf/Platform.h:
     14
    1152013-02-06  Zan Dobersek  <zdobersek@igalia.com>
    216
  • trunk/Source/WTF/wtf/Platform.h

    r141812 r142129  
    10781078
    10791079/* Compositing on the UI-process in WebKit2 */
    1080 #if PLATFORM(QT)
     1080#if USE(3D_GRAPHICS) && PLATFORM(QT)
    10811081#define WTF_USE_COORDINATED_GRAPHICS 1
    10821082#endif
Note: See TracChangeset for help on using the changeset viewer.