Changeset 165015 in webkit


Ignore:
Timestamp:
Mar 3, 2014 3:36:20 PM (10 years ago)
Author:
Simon Fraser
Message:

Composited masks not working on iOS after r164890
https://bugs.webkit.org/show_bug.cgi?id=129630

Reviewed by Jer Noble.

Fix typo in UIView-related masks code; set the mask layer
on the view, not the maskView.

  • Shared/mac/RemoteLayerTreePropertyApplier.mm:

(WebKit::RemoteLayerTreePropertyApplier::applyProperties):

Location:
trunk/Source/WebKit2
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r165014 r165015  
     12014-03-03  Simon Fraser  <simon.fraser@apple.com>
     2
     3        Composited masks not working on iOS after r164890
     4        https://bugs.webkit.org/show_bug.cgi?id=129630
     5
     6        Reviewed by Jer Noble.
     7       
     8        Fix typo in UIView-related masks code; set the mask layer
     9        on the view, not the maskView.
     10
     11        * Shared/mac/RemoteLayerTreePropertyApplier.mm:
     12        (WebKit::RemoteLayerTreePropertyApplier::applyProperties):
     13
    1142014-02-28  Chris Fleizach  <cfleizach@apple.com>
    215
  • trunk/Source/WebKit2/Shared/mac/RemoteLayerTreePropertyApplier.mm

    r164910 r165015  
    257257            ASSERT(!maskView.layer.superlayer);
    258258            if (!maskView.layer.superlayer)
    259                 maskView.layer.mask = maskView.layer;
     259                view.layer.mask = maskView.layer;
    260260        }
    261261    }
Note: See TracChangeset for help on using the changeset viewer.