Changeset 147746 in webkit


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

[Texmap] css3/filters/filter-animation-from-none-hw.html does not animate
https://bugs.webkit.org/show_bug.cgi?id=114026

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

Allow the filter's blending function to take place when animating from/to none.

  • platform/graphics/GraphicsLayerAnimation.cpp:

(WebCore::applyFilterAnimation):

Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147745 r147746  
     12013-04-05  Noam Rosenthal  <noam@webkit.org>
     2
     3        [Texmap] css3/filters/filter-animation-from-none-hw.html does not animate
     4        https://bugs.webkit.org/show_bug.cgi?id=114026
     5
     6        Reviewed by Allan Sandfeld Jensen.
     7
     8        Allow the filter's blending function to take place when animating from/to none.
     9
     10        * platform/graphics/GraphicsLayerAnimation.cpp:
     11        (WebCore::applyFilterAnimation):
     12
    1132013-04-05  Noam Rosenthal  <noam@webkit.org>
    214
  • trunk/Source/WebCore/platform/graphics/GraphicsLayerAnimation.cpp

    r136953 r147746  
    5050        return *to;
    5151
    52     if (!from->operationsMatch(*to))
     52    if (!from->isEmpty() && !to->isEmpty() && !from->operationsMatch(*to))
    5353        return *to;
    5454
Note: See TracChangeset for help on using the changeset viewer.