Changeset 71000 in webkit


Ignore:
Timestamp:
Oct 31, 2010 6:39:35 PM (13 years ago)
Author:
noam.rosenthal@nokia.com
Message:

2010-10-31 No'am Rosenthal <noam.rosenthal@nokia.com>

Reviewed by Andreas Kling.

[Texmap] [Qt] Texture mapper initial implementation
https://bugs.webkit.org/show_bug.cgi?id=47070

Build fix for X11.

No new tests; build fix.

  • plugins/qt/PluginViewQt.cpp: (WebCore::PluginView::invalidateRect): (WebCore::PluginView::platformStart):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r70996 r71000  
     12010-10-31  No'am Rosenthal  <noam.rosenthal@nokia.com>
     2
     3        Reviewed by Andreas Kling.
     4
     5        [Texmap] [Qt] Texture mapper initial implementation
     6        https://bugs.webkit.org/show_bug.cgi?id=47070
     7
     8        Build fix for X11.
     9
     10        No new tests; build fix.
     11
     12        * plugins/qt/PluginViewQt.cpp:
     13        (WebCore::PluginView::invalidateRect):
     14        (WebCore::PluginView::platformStart):
     15
    1162010-10-31  Andreas Kling  <kling@webkit.org>
    217
  • trunk/WebCore/plugins/qt/PluginViewQt.cpp

    r69981 r71000  
    785785void PluginView::invalidateRect(const IntRect& rect)
    786786{
    787 #if USE(ACCELERATED_COMPOSITING)
     787#if USE(ACCELERATED_COMPOSITING) && !USE(TEXTURE_MAPPER)
    788788    if (m_platformLayer) {
    789789        m_platformLayer->update(QRectF(rect));
     
    919919        m_pluginDisplay = getPluginDisplay();
    920920
    921 #if USE(ACCELERATED_COMPOSITING)
     921#if USE(ACCELERATED_COMPOSITING) && !USE(TEXTURE_MAPPER)
    922922        if (m_parentFrame->page()->chrome()->client()->allowsAcceleratedCompositing()
    923923            && m_parentFrame->page()->settings()
Note: See TracChangeset for help on using the changeset viewer.