Changeset 65502 in webkit


Ignore:
Timestamp:
Aug 17, 2010 7:54:31 AM (14 years ago)
Author:
noam.rosenthal@nokia.com
Message:

2010-08-17 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Ariya Hidayat.

[Qt] Move the accelerated compositing build flag to the right place
https://bugs.webkit.org/show_bug.cgi?id=43882

  • wtf/Platform.h:

2010-08-17 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Ariya Hidayat.

[Qt] Move the accelerated compositing build flag to the right place
https://bugs.webkit.org/show_bug.cgi?id=43882

No new tests: build fix.

  • WebCore.pro:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r65493 r65502  
     12010-08-17  No'am Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Ariya Hidayat.
     4
     5        [Qt] Move the accelerated compositing build flag to the right place
     6        https://bugs.webkit.org/show_bug.cgi?id=43882
     7
     8        * wtf/Platform.h:
     9
    1102010-08-17  Yuta Kitamura  <yutak@chromium.org>
    211
  • trunk/JavaScriptCore/wtf/Platform.h

    r65081 r65502  
    10531053#endif
    10541054
     1055#if PLATFORM(QT)
     1056#define WTF_USE_ACCELERATED_COMPOSITING 1
     1057#endif
     1058
    10551059/* FIXME: Defining ENABLE_3D_RENDERING here isn't really right, but it's always used with
    10561060   with WTF_USE_ACCELERATED_COMPOSITING, and it allows the feature to be turned on and
  • trunk/WebCore/ChangeLog

    r65501 r65502  
     12010-08-17  No'am Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Ariya Hidayat.
     4
     5        [Qt] Move the accelerated compositing build flag to the right place
     6        https://bugs.webkit.org/show_bug.cgi?id=43882
     7
     8        No new tests: build fix.
     9
     10        * WebCore.pro:
     11
    1122010-08-17  Sheriff Bot  <webkit.review.bot@gmail.com>
    213
  • trunk/WebCore/WebCore.pro

    r65501 r65502  
    896896    platform/graphics/Gradient.cpp \
    897897    platform/graphics/GraphicsContext.cpp \
     898    platform/graphics/GraphicsLayer.cpp \
    898899    platform/graphics/GraphicsTypes.cpp \
    899900    platform/graphics/Image.cpp \
     
    10041005    rendering/RenderInline.cpp \
    10051006    rendering/RenderLayer.cpp \
     1007    rendering/RenderLayerBacking.cpp \
     1008    rendering/RenderLayerCompositor.cpp \
    10061009    rendering/RenderLineBoxList.cpp \
    10071010    rendering/RenderListBox.cpp \
     
    16801683    platform/graphics/Gradient.h \
    16811684    platform/graphics/GraphicsContext.h \
     1685    platform/graphics/GraphicsLayer.h \
     1686    platform/graphics/GraphicsLayerClient.h \
    16821687    platform/graphics/GraphicsTypes.h \
    16831688    platform/graphics/Image.h \
     
    16931698    platform/graphics/qt/ContextShadow.h \
    16941699    platform/graphics/qt/FontCustomPlatformData.h \
     1700    platform/graphics/qt/GraphicsLayerQt.h \
    16951701    platform/graphics/qt/ImageDecoderQt.h \
    16961702    platform/graphics/qt/StillImageQt.h \
     
    18211827    rendering/RenderInputSpeech.h \
    18221828    rendering/RenderLayer.h \
     1829    rendering/RenderLayerBacking.h \
     1830    rendering/RenderLayerCompositor.h \
    18231831    rendering/RenderLineBoxList.h \
    18241832    rendering/RenderListBox.h \
     
    21952203    platform/graphics/qt/GradientQt.cpp \
    21962204    platform/graphics/qt/GraphicsContextQt.cpp \
     2205    platform/graphics/qt/GraphicsLayerQt.cpp \
    21972206    platform/graphics/qt/IconQt.cpp \
    21982207    platform/graphics/qt/ImageBufferQt.cpp \
     
    32463255    }
    32473256}
    3248 contains(DEFINES, WTF_USE_ACCELERATED_COMPOSITING) {
    3249 HEADERS += \
    3250     rendering/RenderLayerBacking.h \
    3251     rendering/RenderLayerCompositor.h \
    3252     platform/graphics/GraphicsLayer.h \
    3253     platform/graphics/GraphicsLayerClient.h \
    3254     platform/graphics/qt/GraphicsLayerQt.h
    3255 SOURCES += \
    3256     platform/graphics/GraphicsLayer.cpp \
    3257     platform/graphics/qt/GraphicsLayerQt.cpp \
    3258     rendering/RenderLayerBacking.cpp \
    3259     rendering/RenderLayerCompositor.cpp
    3260 }
    32613257
    32623258symbian {
Note: See TracChangeset for help on using the changeset viewer.