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

1 2 3

  /external/chromium_org/cc/base/
swap_promise_monitor.cc 7 #include "cc/trees/layer_tree_host.h"
12 SwapPromiseMonitor::SwapPromiseMonitor(LayerTreeHost* layer_tree_host,
14 : layer_tree_host_(layer_tree_host),
16 DCHECK((layer_tree_host && !layer_tree_host_impl) ||
17 (!layer_tree_host && layer_tree_host_impl));
swap_promise_monitor.h 26 // If the monitor lives on the main thread, pass in layer_tree_host
29 // and set layer_tree_host to NULL.
30 SwapPromiseMonitor(LayerTreeHost* layer_tree_host,
latency_info_swap_promise_monitor.cc 8 #include "cc/trees/layer_tree_host.h"
16 LayerTreeHost* layer_tree_host,
18 : SwapPromiseMonitor(layer_tree_host, layer_tree_host_impl),
latency_info_swap_promise_monitor.h 23 LayerTreeHost* layer_tree_host,
  /external/chromium_org/cc/layers/
heads_up_display_unittest.cc 8 #include "cc/trees/layer_tree_host.h"
50 ASSERT_TRUE(layer_tree_host()->hud_layer());
55 layer_tree_host()->SetRootLayer(root_layer1_);
58 EXPECT_EQ(root_layer1_.get(), layer_tree_host()->hud_layer()->parent());
60 layer_tree_host()->SetRootLayer(NULL);
63 EXPECT_EQ(0, layer_tree_host()->hud_layer()->parent());
65 layer_tree_host()->SetRootLayer(root_layer1_);
68 EXPECT_EQ(root_layer1_.get(), layer_tree_host()->hud_layer()->parent());
70 layer_tree_host()->SetRootLayer(NULL);
73 EXPECT_EQ(0, layer_tree_host()->hud_layer()->parent())
    [all...]
texture_layer.cc 15 #include "cc/trees/layer_tree_host.h"
44 if (rate_limit_context_ && client_ && layer_tree_host())
45 layer_tree_host()->StopRateLimiter();
109 if (!rate_limit && rate_limit_context_ && client_ && layer_tree_host())
110 layer_tree_host()->StopRateLimiter();
175 if (rate_limit_context_ && client_ && layer_tree_host() && DrawsContent())
176 layer_tree_host()->StartRateLimiter();
180 if (layer_tree_host() == host) {
185 if (layer_tree_host()) {
187 layer_tree_host()->StopRateLimiter()
    [all...]
picture_layer.cc 49 layer_tree_host()->source_frame_number()) {
90 update_source_frame_number_ = layer_tree_host()->source_frame_number();
108 layer_tree_host()->source_frame_number());
110 devtools_instrumentation::kUpdateLayer, id(), layer_tree_host()->id());
119 if (layer_tree_host()->settings().record_full_layer) {
158 switch (layer_tree_host()->settings().recording_mode) {
heads_up_display_layer.cc 11 #include "cc/trees/layer_tree_host.h"
33 if (layer_tree_host()->debug_state().ShowHudRects()) {
35 layer_tree_host()->GetRendererCapabilities().max_texture_size;
ui_resource_layer.cc 13 #include "cc/trees/layer_tree_host.h"
105 if (host == layer_tree_host())
116 if (!layer_tree_host() || bitmap_.empty())
120 ScopedUIResourceHolder::Create(layer_tree_host(), bitmap_);
155 DCHECK(layer_tree_host());
158 layer_tree_host()->GetUIResourceSize(ui_resource_holder_->id());
content_layer.cc 14 #include "cc/trees/layer_tree_host.h"
101 if (layer_tree_host()->settings().per_tile_painting_enabled) {
117 layer_tree_host()->GetRendererCapabilities().best_texture_format);
159 layer_tree_host()->GetRendererCapabilities().best_texture_format);
nine_patch_layer.cc 13 #include "cc/trees/layer_tree_host.h"
60 DCHECK(layer_tree_host());
image_layer.cc 12 #include "cc/trees/layer_tree_host.h"
60 layer_tree_host()->GetRendererCapabilities().best_texture_format);
86 layer_tree_host()->GetRendererCapabilities().best_texture_format);
ui_resource_layer_unittest.cc 16 #include "cc/trees/layer_tree_host.h"
57 EXPECT_EQ(test_layer->layer_tree_host(), layer_tree_host_.get());
85 EXPECT_EQ(test_layer->layer_tree_host(), layer_tree_host_.get());
  /external/chromium_org/cc/trees/
layer_tree_host_common_perftest.cc 49 layer_tree_host()->SetViewportSize(viewport);
53 layer_tree_host()->SetRootLayer(root);
89 layer_tree_host()->root_layer(),
90 layer_tree_host()->device_viewport_size(),
92 layer_tree_host()->device_scale_factor(),
93 layer_tree_host()->page_scale_factor(),
94 layer_tree_host()->page_scale_layer(),
96 layer_tree_host()->settings().can_use_lcd_text,
98 layer_tree_host()
layer_tree_host_unittest_animation.cc 5 #include "cc/trees/layer_tree_host.h"
26 layer_tree_host()->root_layer()->set_layer_animation_delegate(this);
48 layer_tree_host()->SetNeedsAnimate();
57 EXPECT_FALSE(layer_tree_host()->CommitRequested());
58 layer_tree_host()->SetNeedsAnimate();
59 EXPECT_FALSE(layer_tree_host()->CommitRequested());
64 EXPECT_FALSE(layer_tree_host()->CommitRequested());
95 layer_tree_host()->SetNeedsAnimate();
123 PostAddInstantAnimationToMainThread(layer_tree_host()->root_layer());
160 layer_tree_host()->root_layer()->layer_animation_controller()
    [all...]
layer_tree_host_unittest_picture.cc 5 #include "cc/trees/layer_tree_host.h"
32 layer_tree_host()->root_layer()->AddChild(picture);
41 switch (layer_tree_host()->source_frame_number()) {
44 layer_tree_host()->root_layer()->children()[0]->RemoveFromParent();
50 layer_tree_host()->root_layer()->AddChild(picture);
layer_tree_host_unittest.cc 5 #include "cc/trees/layer_tree_host.h"
149 layer_tree_host()->SetRootLayer(root);
171 SetBeforeValues(layer_tree_host()->root_layer());
172 VerifyBeforeValues(layer_tree_host()->root_layer());
180 SetAfterValues(layer_tree_host()->root_layer());
285 layer_tree_host()->SetRootLayer(root_layer_);
286 layer_tree_host()->SetViewportSize(bounds_);
346 layer_tree_host()->SetRootLayer(root_layer_);
358 switch (layer_tree_host()->source_frame_number()) {
363 layer_tree_host()->SetDeviceScaleFactor(4.f)
    [all...]
layer_tree_host_unittest_context.cc 5 #include "cc/trees/layer_tree_host.h"
195 layer_tree_host()->root_layer()->SetNeedsDisplay();
196 layer_tree_host()->SetNeedsCommit();
319 layer_tree_host()->SetRootLayer(root_);
432 layer_tree_host()->SetRootLayer(layer_);
582 layer_tree_host()->SetRootLayer(parent_);
620 layer_tree_host()->SetRootLayer(root_);
818 layer_tree_host()->SetDebugState(debug_state);
827 layer_tree_host()->SetRootLayer(root);
861 if (layer_tree_host()->source_frame_number() > 0)
    [all...]
thread_proxy.cc 26 #include "cc/trees/layer_tree_host.h"
37 explicit SwapPromiseChecker(cc::LayerTreeHost* layer_tree_host)
38 : layer_tree_host_(layer_tree_host) {}
63 LayerTreeHost* layer_tree_host,
65 return make_scoped_ptr(new ThreadProxy(layer_tree_host, impl_task_runner))
70 LayerTreeHost* layer_tree_host,
73 main_thread_only_vars_unsafe_(this, layer_tree_host->id()),
74 main_thread_or_blocked_vars_unsafe_(layer_tree_host),
75 compositor_thread_vars_unsafe_(this, layer_tree_host->id()) {
78 DCHECK(this->layer_tree_host());
553 LayerTreeHost* ThreadProxy::layer_tree_host() { function in class:cc::ThreadProxy
557 const LayerTreeHost* ThreadProxy::layer_tree_host() const { function in class:cc::ThreadProxy
    [all...]
layer_tree_host_unittest_copyrequest.cc 32 layer_tree_host()->SetRootLayer(root);
48 int frame = layer_tree_host()->source_frame_number();
96 EXPECT_TRUE(layer_tree_host()->proxy()->IsMainThread());
161 layer_tree_host()->SetRootLayer(root_);
171 int frame = layer_tree_host()->source_frame_number();
192 layer_tree_host()->SetViewportSize(gfx::Size());
196 layer_tree_host()->SetNeedsCommit();
211 layer_tree_host()->SetNeedsCommit();
222 EXPECT_TRUE(layer_tree_host()->proxy()->IsMainThread());
259 layer_tree_host()->SetRootLayer(root_)
    [all...]
layer_tree_host_unittest_damage.cc 5 #include "cc/trees/layer_tree_host.h"
34 layer_tree_host()->SetRootLayer(root);
44 switch (layer_tree_host()->source_frame_number()) {
46 layer_tree_host()->SetNeedsRedraw();
96 layer_tree_host()->SetRootLayer(root);
106 switch (layer_tree_host()->source_frame_number()) {
108 layer_tree_host()->SetViewportSize(gfx::Size(15, 15));
168 layer_tree_host()->SetRootLayer(root);
209 int next_frame = layer_tree_host()->source_frame_number();
212 layer_tree_host()->SetNeedsCommit()
    [all...]
layer_tree_host_unittest_scroll.cc 5 #include "cc/trees/layer_tree_host.h"
35 Layer* root_layer = layer_tree_host()->root_layer();
45 layer_tree_host()->RegisterViewportLayers(root_layer, scroll_layer, NULL);
50 Layer* root = layer_tree_host()->root_layer();
52 if (!layer_tree_host()->source_frame_number()) {
110 Layer* root_layer = layer_tree_host()->root_layer();
120 layer_tree_host()->RegisterViewportLayers(root_layer, scroll_layer_, NULL);
125 switch (layer_tree_host()->source_frame_number()) {
206 Layer* root_layer = layer_tree_host()->root_layer();
215 layer_tree_host()->RegisterViewportLayers
1128 scoped_ptr<LayerTreeHost> layer_tree_host = local
    [all...]
layer_tree_host_perftest.cc 5 #include "cc/trees/layer_tree_host.h"
58 layer_tree_host()->SetNeedsAnimate();
59 layer_tree_host()->SetNextCommitForcesRedraw();
136 layer_tree_host()->SetViewportSize(viewport);
140 layer_tree_host()->SetRootLayer(root);
185 for (layer_to_invalidate_ = layer_tree_host()->root_layer();
226 scrollable_ = layer_tree_host()->root_layer()->children()[1];
266 layer_tree_host()->root_layer()->children()[0]->
292 layer_tree_host()->SetNeedsCommit();
layer_tree_host_unittest_video.cc 5 #include "cc/trees/layer_tree_host.h"
37 layer_tree_host()->SetRootLayer(root);
38 layer_tree_host()->SetDeviceScaleFactor(2.f);
layer_tree_host_unittest_occlusion.cc 5 #include "cc/trees/layer_tree_host.h"
67 TestLayer* root = static_cast<TestLayer*>(layer_tree_host()->root_layer());
137 layer_tree_host()->SetRootLayer(root_);
167 layer_tree_host()->SetRootLayer(root_);
200 layer_tree_host()->SetRootLayer(root_);
234 layer_tree_host()->SetRootLayer(root_);
269 layer_tree_host()->SetRootLayer(root_);
303 layer_tree_host()->SetRootLayer(root_);
338 layer_tree_host()->SetRootLayer(root_);
372 layer_tree_host()->SetRootLayer(root_)
    [all...]

Completed in 176 milliseconds

1 2 3