| OLD | NEW |
| 1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 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/trees/layer_tree_settings.h" | 5 #include "cc/trees/layer_tree_settings.h" |
| 6 | 6 |
| 7 #include "third_party/khronos/GLES2/gl2.h" | 7 #include "third_party/khronos/GLES2/gl2.h" |
| 8 | 8 |
| 9 namespace cc { | 9 namespace cc { |
| 10 | 10 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 other.using_synchronous_renderer_compositor && | 31 other.using_synchronous_renderer_compositor && |
| 32 enable_latency_recovery == other.enable_latency_recovery && | 32 enable_latency_recovery == other.enable_latency_recovery && |
| 33 can_use_lcd_text == other.can_use_lcd_text && | 33 can_use_lcd_text == other.can_use_lcd_text && |
| 34 use_distance_field_text == other.use_distance_field_text && | 34 use_distance_field_text == other.use_distance_field_text && |
| 35 gpu_rasterization_forced == other.gpu_rasterization_forced && | 35 gpu_rasterization_forced == other.gpu_rasterization_forced && |
| 36 async_worker_context_enabled == other.async_worker_context_enabled && | 36 async_worker_context_enabled == other.async_worker_context_enabled && |
| 37 gpu_rasterization_msaa_sample_count == | 37 gpu_rasterization_msaa_sample_count == |
| 38 other.gpu_rasterization_msaa_sample_count && | 38 other.gpu_rasterization_msaa_sample_count && |
| 39 create_low_res_tiling == other.create_low_res_tiling && | 39 create_low_res_tiling == other.create_low_res_tiling && |
| 40 scrollbar_animator == other.scrollbar_animator && | 40 scrollbar_animator == other.scrollbar_animator && |
| 41 scrollbar_fade_delay == other.scrollbar_fade_delay && | 41 scrollbar_fade_in_delay == other.scrollbar_fade_in_delay && |
| 42 scrollbar_fade_resize_delay == other.scrollbar_fade_resize_delay && | 42 scrollbar_fade_out_delay == other.scrollbar_fade_out_delay && |
| 43 scrollbar_fade_duration == other.scrollbar_fade_duration && | 43 scrollbar_fade_out_resize_delay == |
| 44 other.scrollbar_fade_out_resize_delay && |
| 45 scrollbar_fade_out_duration == other.scrollbar_fade_out_duration && |
| 44 solid_color_scrollbar_color == other.solid_color_scrollbar_color && | 46 solid_color_scrollbar_color == other.solid_color_scrollbar_color && |
| 45 timeout_and_draw_when_animation_checkerboards == | 47 timeout_and_draw_when_animation_checkerboards == |
| 46 other.timeout_and_draw_when_animation_checkerboards && | 48 other.timeout_and_draw_when_animation_checkerboards && |
| 47 layer_transforms_should_scale_layer_contents == | 49 layer_transforms_should_scale_layer_contents == |
| 48 other.layer_transforms_should_scale_layer_contents && | 50 other.layer_transforms_should_scale_layer_contents && |
| 49 layers_always_allowed_lcd_text == | 51 layers_always_allowed_lcd_text == |
| 50 other.layers_always_allowed_lcd_text && | 52 other.layers_always_allowed_lcd_text && |
| 51 minimum_contents_scale == other.minimum_contents_scale && | 53 minimum_contents_scale == other.minimum_contents_scale && |
| 52 low_res_contents_scale_factor == other.low_res_contents_scale_factor && | 54 low_res_contents_scale_factor == other.low_res_contents_scale_factor && |
| 53 top_controls_show_threshold == other.top_controls_show_threshold && | 55 top_controls_show_threshold == other.top_controls_show_threshold && |
| (...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 99 TileManagerSettings LayerTreeSettings::ToTileManagerSettings() const { | 101 TileManagerSettings LayerTreeSettings::ToTileManagerSettings() const { |
| 100 TileManagerSettings tile_manager_settings; | 102 TileManagerSettings tile_manager_settings; |
| 101 tile_manager_settings.use_partial_raster = use_partial_raster; | 103 tile_manager_settings.use_partial_raster = use_partial_raster; |
| 102 tile_manager_settings.check_tile_priority_inversion = | 104 tile_manager_settings.check_tile_priority_inversion = |
| 103 check_tile_priority_inversion; | 105 check_tile_priority_inversion; |
| 104 tile_manager_settings.enable_checker_imaging = enable_checker_imaging; | 106 tile_manager_settings.enable_checker_imaging = enable_checker_imaging; |
| 105 return tile_manager_settings; | 107 return tile_manager_settings; |
| 106 } | 108 } |
| 107 | 109 |
| 108 } // namespace cc | 110 } // namespace cc |
| OLD | NEW |