Changeset 147745 in webkit


Ignore:
Timestamp:
Apr 5, 2013 7:47:55 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[CoordGfx] Enable filter animations
https://bugs.webkit.org/show_bug.cgi?id=114027

Patch by Noam Rosenthal <Noam Rosenthal> on 2013-04-05
Reviewed by Allan Sandfeld Jensen.

Allow CoordinatedGraphicsLayer to serialize filter animations to the UI process.

Covered by animation tests in css3/filters.

  • platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:

(WebCore::CoordinatedGraphicsLayer::addAnimation):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147742 r147745  
     12013-04-05  Noam Rosenthal  <noam@webkit.org>
     2
     3        [CoordGfx] Enable filter animations
     4        https://bugs.webkit.org/show_bug.cgi?id=114027
     5
     6        Reviewed by Allan Sandfeld Jensen.
     7
     8        Allow CoordinatedGraphicsLayer to serialize filter animations to the UI process.
     9
     10        Covered by animation tests in css3/filters.
     11
     12        * platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp:
     13        (WebCore::CoordinatedGraphicsLayer::addAnimation):
     14
    1152013-04-05  Christophe Dumez  <ch.dumez@sisa.samsung.com>
    216
  • trunk/Source/WebCore/platform/graphics/texmap/coordinated/CoordinatedGraphicsLayer.cpp

    r146968 r147745  
    11401140    ASSERT(!keyframesName.isEmpty());
    11411141
    1142     if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2 || (valueList.property() != AnimatedPropertyWebkitTransform && valueList.property() != AnimatedPropertyOpacity))
     1142    if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2 || (valueList.property() != AnimatedPropertyWebkitTransform && valueList.property() != AnimatedPropertyOpacity && valueList.property() != AnimatedPropertyWebkitFilter))
    11431143        return false;
    11441144
Note: See TracChangeset for help on using the changeset viewer.