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

  /external/chromium_org/cc/layers/
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...]
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.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...]
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_);
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...]
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...]
  /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/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...]
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...]
layer_tree_host_unittest.cc 16 #include "cc/layers/layer_impl.h"
3140 FakePictureLayerImpl* layer_impl = variable
    [all...]

Completed in 651 milliseconds