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

  /external/chromium_org/cc/layers/
surface_layer.cc 35 SurfaceLayerImpl* layer_impl = static_cast<SurfaceLayerImpl*>(layer); local
37 layer_impl->SetSurfaceId(surface_id_);
nine_patch_layer.cc 55 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer); local
58 layer_impl->SetUIResourceId(0);
62 layer_impl->SetLayout(image_aperture_, border_, fill_center_);
picture_layer_unittest.cc 61 scoped_ptr<FakePictureLayerImpl> layer_impl = local
64 layer->PushPropertiesTo(layer_impl.get());
65 EXPECT_FALSE(layer_impl->CanHaveTilings());
66 EXPECT_TRUE(layer_impl->bounds() == gfx::Size(0, 0));
67 EXPECT_TRUE(layer_impl->pile()->tiling_rect() == gfx::Rect());
68 EXPECT_FALSE(layer_impl->pile()->HasRecordings());
surface_layer_impl.cc 34 SurfaceLayerImpl* layer_impl = static_cast<SurfaceLayerImpl*>(layer); local
36 layer_impl->SetSurfaceId(surface_id_);
solid_color_layer_impl_unittest.cc 134 scoped_ptr<SolidColorLayerImpl> layer_impl = local
137 layer->PushPropertiesTo(layer_impl.get());
140 EXPECT_TRUE(layer_impl->contents_opaque());
144 layer_impl->draw_properties().opacity = 1;
151 layer_impl->AppendQuads(&quad_culler, &data);
162 scoped_ptr<SolidColorLayerImpl> layer_impl = local
165 layer->PushPropertiesTo(layer_impl.get());
168 EXPECT_FALSE(layer_impl->contents_opaque());
172 layer_impl->draw_properties().opacity = 1;
179 layer_impl->AppendQuads(&quad_culler, &data)
    [all...]
ui_resource_layer.cc 150 UIResourceLayerImpl* layer_impl = static_cast<UIResourceLayerImpl*>(layer); local
153 layer_impl->SetUIResourceId(0);
159 layer_impl->SetUIResourceId(ui_resource_holder_->id());
160 layer_impl->SetImageBounds(image_size);
161 layer_impl->SetUV(uv_top_left_, uv_bottom_right_);
162 layer_impl->SetVertexOpacity(vertex_opacity_);
ui_resource_layer_impl.cc 37 UIResourceLayerImpl* layer_impl = static_cast<UIResourceLayerImpl*>(layer); local
39 layer_impl->SetUIResourceId(ui_resource_id_);
40 layer_impl->SetImageBounds(image_bounds_);
41 layer_impl->SetUV(uv_top_left_, uv_bottom_right_);
42 layer_impl->SetVertexOpacity(vertex_opacity_);
nine_patch_layer_impl.cc 30 NinePatchLayerImpl* layer_impl = static_cast<NinePatchLayerImpl*>(layer); local
32 layer_impl->SetLayout(image_aperture_, border_, fill_center_);
picture_layer.cc 41 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); local
43 if (layer_impl->bounds().IsEmpty()) {
45 // Using layer_impl because either bounds() or paint_properties().bounds
46 // may disagree and either one could have been pushed to layer_impl.
53 DCHECK_EQ(layer_impl->bounds().ToString(),
57 layer_impl->SetIsMask(is_mask_);
59 // Unlike other properties, invalidation must always be set on layer_impl.
61 layer_impl->invalidation_.Clear();
62 layer_impl->invalidation_.Swap(&pile_invalidation_);
63 layer_impl->pile_ = PicturePileImpl::CreateFromOther(pile_.get())
    [all...]
tiled_layer_unittest.cc 167 FakeTiledLayerImpl* layer_impl) {
170 layer->PushPropertiesTo(layer_impl);
261 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
270 UpdateAndPush(layer, layer_impl);
273 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 0));
274 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 1));
279 UpdateAndPush(layer, layer_impl);
283 EXPECT_TRUE(layer_impl->HasResourceIdForTileAt(0, 0));
284 EXPECT_FALSE(layer_impl->HasResourceIdForTileAt(0, 1));
290 scoped_ptr<FakeTiledLayerImpl> layer_impl local
331 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
370 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
410 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
550 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
573 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
677 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
724 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
753 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
786 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
824 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
912 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1083 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1099 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1114 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1130 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1139 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
1155 scoped_ptr<FakeTiledLayerImpl> layer_impl = local
    [all...]
picture_layer_impl.cc 86 PictureLayerImpl* layer_impl = static_cast<PictureLayerImpl*>(base_layer); local
94 if (layer_impl->tilings_)
95 layer_impl->tilings_->DidBecomeRecycled();
101 layer_impl->twin_layer_ = NULL;
104 layer_impl->SetIsMask(is_mask_);
105 layer_impl->pile_ = pile_;
108 layer_impl->tilings_.swap(tilings_);
114 layer_impl->tilings_->SetClient(layer_impl);
118 layer_impl->raster_page_scale_ = raster_page_scale_
    [all...]
  /external/chromium_org/cc/test/
fake_layer_tree_host.cc 31 scoped_ptr<LayerImpl> layer_impl = TreeSynchronizer::SynchronizeTrees( local
33 TreeSynchronizer::PushProperties(root_layer(), layer_impl.get());
35 active_tree()->SetRootLayer(layer_impl.Pass());
  /external/chromium_org/cc/trees/
tree_synchronizer.cc 16 #include "cc/layers/layer_impl.h"
26 scoped_ptr<LayerImpl> layer_impl) {
27 if (!layer_impl)
30 layer_impl->ClearScrollbars();
32 layer_impl->ToScrollbarLayer()) {
37 OwnedLayerImplList& children = layer_impl->children();
43 CollectExistingLayerImplRecursive(old_layers, layer_impl->TakeMaskLayer());
44 CollectExistingLayerImplRecursive(old_layers, layer_impl->TakeReplicaLayer());
46 int id = layer_impl->id();
47 old_layers->set(id, layer_impl.Pass())
92 scoped_ptr<LayerImpl> layer_impl = old_layers->take(layer->id()); local
    [all...]
layer_tree_impl.cc 802 LayerImpl* layer_impl = *it; local
803 layer_impl->GetAllTilesForTracing(tiles);
    [all...]
layer_tree_host_impl.cc 32 #include "cc/layers/layer_impl.h"
477 LayerImpl* layer_impl = local
482 device_viewport_point, type, layer_impl, &scroll_on_main_thread, NULL);
494 LayerImpl* layer_impl = local
498 return layer_impl != NULL;
1252 LayerImpl* layer_impl = local
1259 LayerImpl* layer_impl = local
2266 LayerImpl* layer_impl = local
2630 LayerImpl* layer_impl = local
    [all...]
layer_tree_host_unittest.cc 17 #include "cc/layers/layer_impl.h"
2734 FakePictureLayerImpl* layer_impl = variable
    [all...]

Completed in 718 milliseconds