OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "cc/test/layer_tree_host_common_test.h" | 5 #include "cc/test/layer_tree_host_common_test.h" |
6 | 6 |
7 #include "cc/layers/layer.h" | 7 #include "cc/layers/layer.h" |
8 #include "cc/layers/layer_impl.h" | 8 #include "cc/layers/layer_impl.h" |
9 #include "cc/trees/layer_tree_host_common.h" | 9 #include "cc/trees/layer_tree_host_common.h" |
10 | 10 |
11 namespace cc { | 11 namespace cc { |
12 | 12 |
13 LayerTreeHostCommonTestBase::LayerTreeHostCommonTestBase() | 13 LayerTreeHostCommonTestBase::LayerTreeHostCommonTestBase() |
14 : render_surface_layer_list_count_(0) { | 14 : render_surface_layer_list_count_(0) { |
15 } | 15 } |
16 | 16 |
17 LayerTreeHostCommonTestBase::~LayerTreeHostCommonTestBase() { | 17 LayerTreeHostCommonTestBase::~LayerTreeHostCommonTestBase() { |
18 } | 18 } |
19 | 19 |
20 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting( | 20 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting( |
21 Layer* layer, | 21 Layer* layer, |
22 const gfx::Transform& transform, | 22 const gfx::Transform& transform, |
23 const gfx::Point3F& transform_origin, | 23 const gfx::Point3F& transform_origin, |
24 const gfx::PointF& position, | 24 const gfx::PointF& position, |
25 const gfx::Size& bounds, | 25 const gfx::Size& bounds, |
26 bool flatten_transform, | 26 bool flatten_transform, |
27 bool is_3d_sorted) { | 27 bool is_3d_sorted) { |
28 SetLayerPropertiesForTestingInternal<Layer>(layer, | 28 SetLayerPropertiesForTestingInternal(layer, |
29 transform, | 29 transform, |
30 transform_origin, | 30 transform_origin, |
31 position, | 31 position, |
32 bounds, | 32 bounds, |
33 flatten_transform, | 33 flatten_transform, |
34 is_3d_sorted); | 34 is_3d_sorted); |
35 } | 35 } |
36 | 36 |
37 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting( | 37 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTesting( |
38 LayerImpl* layer, | 38 LayerImpl* layer, |
39 const gfx::Transform& transform, | 39 const gfx::Transform& transform, |
40 const gfx::Point3F& transform_origin, | 40 const gfx::Point3F& transform_origin, |
41 const gfx::PointF& position, | 41 const gfx::PointF& position, |
42 const gfx::Size& bounds, | 42 const gfx::Size& bounds, |
43 bool flatten_transform, | 43 bool flatten_transform, |
| 44 bool is_3d_sorted, |
| 45 bool create_render_surface) { |
| 46 SetLayerPropertiesForTestingInternal(layer, |
| 47 transform, |
| 48 transform_origin, |
| 49 position, |
| 50 bounds, |
| 51 flatten_transform, |
| 52 is_3d_sorted, |
| 53 create_render_surface); |
| 54 layer->SetContentBounds(bounds); |
| 55 } |
| 56 |
| 57 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTestingInternal( |
| 58 Layer* layer, |
| 59 const gfx::Transform& transform, |
| 60 const gfx::Point3F& transform_origin, |
| 61 const gfx::PointF& position, |
| 62 const gfx::Size& bounds, |
| 63 bool flatten_transform, |
44 bool is_3d_sorted) { | 64 bool is_3d_sorted) { |
45 SetLayerPropertiesForTestingInternal<LayerImpl>(layer, | 65 layer->SetTransform(transform); |
46 transform, | 66 layer->SetTransformOrigin(transform_origin); |
47 transform_origin, | 67 layer->SetPosition(position); |
48 position, | 68 layer->SetBounds(bounds); |
49 bounds, | 69 layer->SetShouldFlattenTransform(flatten_transform); |
50 flatten_transform, | 70 layer->Set3dSortingContextId(is_3d_sorted ? 1 : 0); |
51 is_3d_sorted); | 71 } |
52 layer->SetContentBounds(bounds); | 72 |
| 73 void LayerTreeHostCommonTestBase::SetLayerPropertiesForTestingInternal( |
| 74 LayerImpl* layer, |
| 75 const gfx::Transform& transform, |
| 76 const gfx::Point3F& transform_origin, |
| 77 const gfx::PointF& position, |
| 78 const gfx::Size& bounds, |
| 79 bool flatten_transform, |
| 80 bool is_3d_sorted, |
| 81 bool create_render_surface) { |
| 82 layer->SetTransform(transform); |
| 83 layer->SetTransformOrigin(transform_origin); |
| 84 layer->SetPosition(position); |
| 85 layer->SetBounds(bounds); |
| 86 layer->SetShouldFlattenTransform(flatten_transform); |
| 87 layer->Set3dSortingContextId(is_3d_sorted ? 1 : 0); |
| 88 if (create_render_surface) { |
| 89 layer->SetHasRenderSurface(true); |
| 90 } |
53 } | 91 } |
54 | 92 |
55 void LayerTreeHostCommonTestBase::ExecuteCalculateDrawProperties( | 93 void LayerTreeHostCommonTestBase::ExecuteCalculateDrawProperties( |
56 Layer* root_layer, | 94 Layer* root_layer, |
57 float device_scale_factor, | 95 float device_scale_factor, |
58 float page_scale_factor, | 96 float page_scale_factor, |
59 Layer* page_scale_application_layer, | 97 Layer* page_scale_application_layer, |
60 bool can_use_lcd_text) { | 98 bool can_use_lcd_text) { |
61 EXPECT_TRUE(page_scale_application_layer || (page_scale_factor == 1.f)); | 99 EXPECT_TRUE(page_scale_application_layer || (page_scale_factor == 1.f)); |
62 gfx::Transform identity_matrix; | 100 gfx::Transform identity_matrix; |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 inputs.can_adjust_raster_scales = true; | 142 inputs.can_adjust_raster_scales = true; |
105 | 143 |
106 ++render_surface_layer_list_count_; | 144 ++render_surface_layer_list_count_; |
107 inputs.current_render_surface_layer_list_id = | 145 inputs.current_render_surface_layer_list_id = |
108 render_surface_layer_list_count_; | 146 render_surface_layer_list_count_; |
109 | 147 |
110 LayerTreeHostCommon::CalculateDrawProperties(&inputs); | 148 LayerTreeHostCommon::CalculateDrawProperties(&inputs); |
111 } | 149 } |
112 | 150 |
113 } // namespace cc | 151 } // namespace cc |
OLD | NEW |