Changeset 55697 in webkit


Ignore:
Timestamp:
Mar 8, 2010 4:56:01 PM (14 years ago)
Author:
cmarrin@apple.com
Message:

This turns back on HW comp on Leopard (which I turned off in http://trac.webkit.org/changeset/55696) if you have WebGL turned on. I've added the failing tests to the Skipped file instead

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/platform/mac-leopard/Skipped

    r55690 r55697  
    5353animation/fill-mode-transform.html
    5454
     55# Disable tests until we can turn on HW comp as described in https://bugs.webkit.org/show_bug.cgi?id=35897
     56fast/media/mq-transform-02.html
     57fast/media/mq-transform-03.html
  • trunk/WebKit/mac/WebView/WebView.mm

    r55696 r55697  
    13491349    // FIXME: Enabling accelerated compositing when WebGL is enabled causes tests to fail on Leopard which expect HW compositing to be disabled.
    13501350    // Until we fix that, I will comment out the test (CFM)
    1351     settings->setAcceleratedCompositingEnabled((coreVideoHas7228836Fix() /*|| [preferences webGLEnabled]*/) && [preferences acceleratedCompositingEnabled]);
    1352 
     1351    settings->setAcceleratedCompositingEnabled((coreVideoHas7228836Fix() || [preferences webGLEnabled]) && [preferences acceleratedCompositingEnabled]);
    13531352    settings->setShowDebugBorders([preferences showDebugBorders]);
    13541353    settings->setShowRepaintCounter([preferences showRepaintCounter]);
Note: See TracChangeset for help on using the changeset viewer.