HomeSort by relevance Sort by last modified time
    Searched refs:masks_to_bounds (Results 1 - 10 of 10) sorted by null

  /external/chromium_org/webkit/renderer/compositor_bindings/
web_layer_impl.cc 88 void WebLayerImpl::setMasksToBounds(bool masks_to_bounds) {
89 layer_->SetMasksToBounds(masks_to_bounds);
92 bool WebLayerImpl::masksToBounds() const { return layer_->masks_to_bounds(); }
web_layer_impl.h 63 virtual void setMasksToBounds(bool masks_to_bounds);
  /external/chromium_org/cc/layers/
layer.h 102 void SetMasksToBounds(bool masks_to_bounds);
103 bool masks_to_bounds() const { return masks_to_bounds_; } function in class:cc::Layer
layer_impl.h 166 void SetMasksToBounds(bool masks_to_bounds);
167 bool masks_to_bounds() const { return masks_to_bounds_; } function in class:cc::LayerImpl
layer_impl.cc 575 if (masks_to_bounds())
715 void LayerImpl::SetMasksToBounds(bool masks_to_bounds) {
716 if (masks_to_bounds_ == masks_to_bounds)
719 masks_to_bounds_ = masks_to_bounds;
    [all...]
layer.cc 427 void Layer::SetMasksToBounds(bool masks_to_bounds) {
429 if (masks_to_bounds_ == masks_to_bounds)
431 masks_to_bounds_ = masks_to_bounds;
  /external/chromium_org/ui/compositor/
layer.h 142 void SetMasksToBounds(bool masks_to_bounds);
layer.cc 221 void Layer::SetMasksToBounds(bool masks_to_bounds) {
222 cc_layer_->SetMasksToBounds(masks_to_bounds);
226 return cc_layer_->masks_to_bounds();
  /external/chromium_org/cc/trees/
layer_tree_host_common.cc 146 return layer->masks_to_bounds() || layer->mask_layer();
    [all...]
layer_tree_host_common_unittest.cc     [all...]

Completed in 461 milliseconds