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

  /external/chromium_org/cc/trees/
tree_synchronizer.cc 13 #include "cc/layers/layer_impl.h"
23 scoped_ptr<LayerImpl> layer_impl) {
24 if (!layer_impl)
27 OwnedLayerImplList& children = layer_impl->children();
33 CollectExistingLayerImplRecursive(old_layers, layer_impl->TakeMaskLayer());
34 CollectExistingLayerImplRecursive(old_layers, layer_impl->TakeReplicaLayer());
36 int id = layer_impl->id();
37 old_layers->set(id, layer_impl.Pass());
82 scoped_ptr<LayerImpl> layer_impl = old_layers->take(layer->id()); local
84 if (!layer_impl)
    [all...]
tree_synchronizer.h 48 LayerImpl* layer_impl,
layer_tree_host_impl.cc 29 #include "cc/layers/layer_impl.h"
399 LayerImpl* layer_impl = LayerTreeHostCommon::FindLayerThatIsHitByPoint( local
405 for (; layer_impl; layer_impl = layer_impl->parent()) {
407 layer_impl))
1853 LayerImpl* layer_impl = LayerTreeHostCommon::FindLayerThatIsHitByPoint( local
    [all...]
tree_synchronizer_unittest.cc 12 #include "cc/layers/layer_impl.h"
58 virtual void PushPropertiesTo(LayerImpl* layer_impl) OVERRIDE {
59 Layer::PushPropertiesTo(layer_impl);
61 MockLayerImpl* mock_layer_impl = static_cast<MockLayerImpl*>(layer_impl);
99 LayerImpl* layer_impl,
102 ASSERT_TRUE(layer_impl);
104 EXPECT_EQ(layer->id(), layer_impl->id());
105 EXPECT_EQ(layer_impl->layer_tree_impl(), tree_impl);
108 layer_impl->non_fast_scrollable_region());
110 ASSERT_EQ(!!layer->mask_layer(), !!layer_impl->mask_layer())
    [all...]
layer_tree_impl.h 14 #include "cc/layers/layer_impl.h"
106 void set_hud_layer(HeadsUpDisplayLayerImpl* layer_impl) {
107 hud_layer_ = layer_impl;
layer_sorter.h 13 #include "cc/layers/layer_impl.h"
54 explicit GraphNode(LayerImpl* layer_impl);
layer_tree_host_common.cc 13 #include "cc/layers/layer_impl.h"
    [all...]
layer_sorter.cc 62 GraphNode::GraphNode(LayerImpl* layer_impl)
63 : layer(layer_impl),
layer_tree_host_common.h 111 LayerImpl* layer_impl);
layer_tree_host_impl.h 434 LayerImpl* layer_impl,
layer_tree_host_unittest.cc 16 #include "cc/layers/layer_impl.h"
3140 FakePictureLayerImpl* layer_impl = variable
    [all...]
  /external/chromium_org/cc/layers/
picture_layer.cc 40 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); local
42 layer_impl->UpdateTwinLayer();
44 if (layer_impl->bounds().IsEmpty()) {
46 // Using layer_impl because either bounds() or paint_properties().bounds
47 // may disagree and either one could have been pushed to layer_impl.
48 pile_->Resize(layer_impl->bounds());
56 layer_impl->SetIsMask(is_mask_);
57 layer_impl->CreateTilingSetIfNeeded();
58 // Unlike other properties, invalidation must always be set on layer_impl.
60 layer_impl->invalidation_.Clear()
    [all...]
solid_color_layer_impl_unittest.cc 121 scoped_ptr<SolidColorLayerImpl> layer_impl = local
124 layer->PushPropertiesTo(layer_impl.get());
127 EXPECT_TRUE(layer_impl->contents_opaque());
131 layer_impl->draw_properties().opacity = 1;
135 layer_impl->AppendQuads(&quad_culler, &data);
146 scoped_ptr<SolidColorLayerImpl> layer_impl = local
149 layer->PushPropertiesTo(layer_impl.get());
152 EXPECT_FALSE(layer_impl->contents_opaque());
156 layer_impl->draw_properties().opacity = 1;
160 layer_impl->AppendQuads(&quad_culler, &data)
    [all...]
tiled_layer_unittest.cc 109 FakeTiledLayerImpl* layer_impl) {
112 layer->PushPropertiesTo(layer_impl);
200 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
209 UpdateAndPush(layer, layer_impl);
212 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 0));
213 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 1));
218 UpdateAndPush(layer, layer_impl);
222 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 0));
223 EXPECT_FALSE(layer_impl->HasResourceIdForTileAt(0, 1));
229 scoped_ptr<FakeTiledLayerImpl> layer_impl local
281 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
320 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
360 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
500 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
526 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
630 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
677 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
706 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
739 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
777 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
865 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1035 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1052 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1067 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1084 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1093 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1110 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
    [all...]
nine_patch_layer.cc 106 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer); local
110 layer_impl->SetResourceId(resource_->texture()->resource_id());
111 layer_impl->SetLayout(
picture_layer_impl.cc 69 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); local
77 if (layer_impl->tilings_)
78 layer_impl->tilings_->DidBecomeRecycled();
84 layer_impl->twin_layer_ = NULL;
87 layer_impl->SetIsMask(is_mask_);
88 layer_impl->pile_ = pile_;
91 layer_impl->tilings_.swap(tilings_);
92 layer_impl->tilings_->SetClient(layer_impl);
96 layer_impl->raster_page_scale_ = raster_page_scale_
    [all...]
nine_patch_layer_impl.cc 32 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer); local
37 layer_impl->SetResourceId(resource_id_);
38 layer_impl->SetLayout(image_bounds_, image_aperture_);
layer_impl.h 449 LayerImpl(LayerTreeImpl* layer_impl, int id);
  /external/chromium_org/cc/test/
fake_layer_tree_host.h 43 scoped_ptr<LayerImpl> layer_impl = local
48 TreeSynchronizer::PushProperties(root_layer(), layer_impl.get());
50 active_tree()->SetRootLayer(layer_impl.Pass());
  /external/chromium_org/cc/
cc.target.darwin-arm.mk 70 cc/layers/layer_impl.cc \
cc.target.darwin-mips.mk 70 cc/layers/layer_impl.cc \
cc.target.darwin-x86.mk 70 cc/layers/layer_impl.cc \
cc.target.linux-arm.mk 70 cc/layers/layer_impl.cc \
cc.target.linux-mips.mk 70 cc/layers/layer_impl.cc \
cc.target.linux-x86.mk 70 cc/layers/layer_impl.cc \

Completed in 246 milliseconds