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

  /external/chromium_org/cc/test/
layer_test_common.h 10 EXPECT_CALL(*layer_tree_host_, SetNeedsCommit()).Times((expect)); \
12 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); \
17 EXPECT_CALL(*layer_tree_host_, SetNeedsUpdateLayers()).Times((expect)); \
19 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); \
fake_proxy.cc 10 layer_tree_host_ = host;
20 DCHECK(layer_tree_host_);
21 layer_tree_host_->OnCreateAndInitializeOutputSurfaceAttempted(true);
layer_tree_test.cc 404 layer_tree_host_ = LayerTreeHostForTesting::Create(
409 ASSERT_TRUE(layer_tree_host_);
414 layer_tree_host_->SetLayerTreeHostClientReady();
422 if (layer_tree_host_) {
423 static_cast<LayerTreeHostForTesting*>(layer_tree_host_.get())->
429 if (!layer_tree_host_->root_layer()) {
434 layer_tree_host_->SetRootLayer(root_layer);
437 gfx::Size root_bounds = layer_tree_host_->root_layer()->bounds();
439 gfx::ScaleSize(root_bounds, layer_tree_host_->device_scale_factor()));
440 layer_tree_host_->SetViewportSize(device_root_bounds)
    [all...]
fake_proxy.h 16 FakeProxy() : Proxy(NULL), layer_tree_host_(NULL) {}
20 layer_tree_host_(NULL) {}
53 LayerTreeHost* layer_tree_host_; member in class:cc::FakeProxy
layer_tree_test.h 150 return layer_tree_host_ ? layer_tree_host_->proxy() : NULL;
155 LayerTreeHost* layer_tree_host() { return layer_tree_host_.get(); }
168 scoped_ptr<LayerTreeHost> layer_tree_host_; member in class:cc::LayerTreeTest
  /external/chromium_org/webkit/support/
web_layer_tree_view_impl_for_testing.cc 49 layer_tree_host_ = cc::LayerTreeHost::Create(this, settings, NULL);
50 if (!layer_tree_host_)
56 layer_tree_host_->SetLayerTreeHostClientReady();
61 layer_tree_host_->SetRootLayer(
66 layer_tree_host_->SetRootLayer(scoped_refptr<cc::Layer>());
72 layer_tree_host_->SetViewportSize(device_viewport_size);
76 return layer_tree_host_->device_viewport_size();
80 return layer_tree_host_->device_viewport_size();
85 layer_tree_host_->SetDeviceScaleFactor(device_scale_factor);
89 return layer_tree_host_->device_scale_factor()
    [all...]
web_layer_tree_view_impl_for_testing.h 80 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; member in class:webkit::WebLayerTreeViewImplForTesting
  /external/chromium_org/cc/trees/
single_thread_proxy.cc 26 layer_tree_host_(layer_tree_host),
42 layer_tree_host_impl_ = layer_tree_host_->CreateLayerTreeHostImpl(this);
113 output_surface = layer_tree_host_->CreateOutputSurface();
122 layer_tree_host_->client()->OffscreenContextProviderForMainThread();
132 layer_tree_host_->DeleteContentsTexturesOnImplThread(
159 layer_tree_host_->OnCreateAndInitializeOutputSurfaceAttempted(success);
168 DCHECK(!layer_tree_host_->output_surface_lost());
179 layer_tree_host_->ScheduleComposite();
190 layer_tree_host_->rendering_stats_instrumentation();
195 if (layer_tree_host_->contents_texture_manager())
    [all...]
thread_proxy.cc 73 layer_tree_host_(layer_tree_host),
102 DCHECK(layer_tree_host_);
114 DCHECK(layer_tree_host_);
121 if (!layer_tree_host_->InitializeOutputSurfaceIfNeeded()) {
252 output_surface = layer_tree_host_->CreateOutputSurface();
263 offscreen_context_provider = layer_tree_host_->client()->
299 DCHECK(layer_tree_host_);
306 layer_tree_host_->OnCreateAndInitializeOutputSurfaceAttempted(success);
330 DCHECK(!layer_tree_host_->output_surface_lost());
444 if (!layer_tree_host_->contents_texture_manager()
    [all...]
single_thread_proxy.h 101 LayerTreeHost* layer_tree_host_; member in class:cc::SingleThreadProxy
thread_proxy.h 197 LayerTreeHost* layer_tree_host_; member in class:cc::ThreadProxy
  /external/chromium_org/cc/layers/
texture_layer_unittest.cc 55 layer_tree_host_.reset(new MockLayerTreeHost(&fake_client_));
59 Mock::VerifyAndClearExpectations(layer_tree_host_.get());
60 EXPECT_CALL(*layer_tree_host_, AcquireLayerTextures()).Times(AnyNumber());
61 EXPECT_CALL(*layer_tree_host_, SetNeedsCommit()).Times(AnyNumber());
63 layer_tree_host_->SetRootLayer(NULL);
64 layer_tree_host_.reset();
67 scoped_ptr<MockLayerTreeHost> layer_tree_host_; member in class:cc::__anon6490::TextureLayerTest
77 EXPECT_CALL(*layer_tree_host_, AcquireLayerTextures()).Times(AnyNumber());
78 EXPECT_CALL(*layer_tree_host_, SetNeedsCommit()).Times(AnyNumber());
79 layer_tree_host_->SetRootLayer(test_layer)
    [all...]
nine_patch_layer_unittest.cc 42 cc::Proxy* Proxy() const { return layer_tree_host_->proxy(); }
46 layer_tree_host_.reset(new MockLayerTreeHost(&fake_client_));
50 Mock::VerifyAndClearExpectations(layer_tree_host_.get());
53 scoped_ptr<MockLayerTreeHost> layer_tree_host_; member in class:cc::__anon6482::NinePatchLayerTest
63 layer_tree_host_->SetRootLayer(test_layer);
64 Mock::VerifyAndClearExpectations(layer_tree_host_.get());
65 EXPECT_EQ(test_layer->layer_tree_host(), layer_tree_host_.get());
67 layer_tree_host_->InitializeOutputSurfaceIfNeeded();
94 layer_tree_host_->contents_texture_manager()->SetMaxMemoryLimitBytes(
96 layer_tree_host_->contents_texture_manager()->PrioritizeTextures()
    [all...]
tiled_layer_unittest.cc 59 layer_tree_host_ = LayerTreeHost::Create(&fake_layer_impl_tree_host_client_,
62 proxy_ = layer_tree_host_->proxy();
64 layer_tree_host_->InitializeOutputSurfaceIfNeeded();
65 layer_tree_host_->SetRootLayer(Layer::Create());
123 occlusion_->SetRenderTarget(layer_tree_host_->root_layer());
126 layer_tree_host_->root_layer(),
127 layer_tree_host_->device_viewport_size(),
129 inputs.device_scale_factor = layer_tree_host_->device_scale_factor();
131 layer_tree_host_->GetRendererCapabilities().max_texture_size;
191 scoped_ptr<LayerTreeHost> layer_tree_host_; member in class:cc::__anon6494::TiledLayerTest
    [all...]
layer.cc 38 layer_tree_host_(NULL),
91 if (layer_tree_host_ == host)
94 layer_tree_host_ = host;
120 layer_tree_host_->set_needs_filter_context();
124 if (layer_tree_host_ && !ignore_set_needs_commit_)
125 layer_tree_host_->SetNeedsUpdateLayers();
129 if (!layer_tree_host_)
137 layer_tree_host_->SetNeedsCommit();
141 if (!layer_tree_host_)
144 layer_tree_host_->SetNeedsFullTreeSync()
    [all...]
scrollbar_layer_unittest.cc 419 layer_tree_host_.reset(
430 layer_tree_host_->InitializeOutputSurfaceIfNeeded();
431 layer_tree_host_->contents_texture_manager()->
433 layer_tree_host_->SetRootLayer(layer_tree_root);
447 testing::Mock::VerifyAndClearExpectations(layer_tree_host_.get());
448 EXPECT_EQ(scrollbar_layer->layer_tree_host(), layer_tree_host_.get());
456 layer_tree_host_->contents_texture_manager()->PrioritizeTextures();
461 testing::Mock::VerifyAndClearExpectations(layer_tree_host_.get());
469 scoped_ptr<MockLayerTreeHost> layer_tree_host_; member in class:cc::__anon6488::ScrollbarLayerTestResourceCreation
488 layer_tree_host_.reset
565 scoped_ptr<MockLayerTreeHost> layer_tree_host_; member in class:cc::__anon6488::ScaledScrollbarLayerTestResourceCreation
    [all...]
layer_unittest.cc 30 EXPECT_CALL(*layer_tree_host_, SetNeedsFullTreeSync()).Times((expect)); \
32 Mock::VerifyAndClearExpectations(layer_tree_host_.get()); \
67 layer_tree_host_.reset(new StrictMock<MockLayerTreeHost>(&fake_client_));
71 Mock::VerifyAndClearExpectations(layer_tree_host_.get());
72 EXPECT_CALL(*layer_tree_host_, SetNeedsFullTreeSync()).Times(AnyNumber());
81 layer_tree_host_->SetRootLayer(NULL);
82 layer_tree_host_.reset();
116 EXPECT_CALL(*layer_tree_host_, SetNeedsFullTreeSync()).Times(AnyNumber());
117 layer_tree_host_->SetRootLayer(parent_);
126 Mock::VerifyAndClearExpectations(layer_tree_host_.get())
135 scoped_ptr<StrictMock<MockLayerTreeHost> > layer_tree_host_; member in class:cc::__anon6480::LayerTest
    [all...]
layer.h 319 LayerTreeHost* layer_tree_host() const { return layer_tree_host_; }
472 LayerTreeHost* layer_tree_host_; member in class:cc::Layer
  /external/chromium_org/content/renderer/gpu/
render_widget_compositor.cc 309 return layer_tree_host_->GetInputHandler();
326 layer_tree_host_->UpdateClientAnimations(time);
330 layer_tree_host_->Composite(frame_begin_time);
334 layer_tree_host_->SetNeedsDisplayOnAllLayers();
338 cc::LayerTreeDebugState current = layer_tree_host_->debug_state();
340 layer_tree_host_->SetDebugState(current);
344 layer_tree_host_->CollectRenderingStats(stats);
351 layer_tree_host_->UpdateTopControlsState(constraints,
358 layer_tree_host_->SetOverdrawBottomHeight(overdraw_bottom_height);
362 layer_tree_host_->SetNeedsRedrawRect(damage_rect)
    [all...]
render_widget_compositor.h 121 scoped_ptr<cc::LayerTreeHost> layer_tree_host_; member in class:content::RenderWidgetCompositor

Completed in 488 milliseconds