| 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 "cc/proto/gfx_conversions.h" | 7 #include "cc/proto/gfx_conversions.h" |
| 8 #include "third_party/khronos/GLES2/gl2.h" | 8 #include "third_party/khronos/GLES2/gl2.h" |
| 9 | 9 |
| 10 namespace cc { | 10 namespace cc { |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 use_partial_raster == other.use_partial_raster && | 72 use_partial_raster == other.use_partial_raster && |
| 73 enable_elastic_overscroll == other.enable_elastic_overscroll && | 73 enable_elastic_overscroll == other.enable_elastic_overscroll && |
| 74 ignore_root_layer_flings == other.ignore_root_layer_flings && | 74 ignore_root_layer_flings == other.ignore_root_layer_flings && |
| 75 scheduled_raster_task_limit == other.scheduled_raster_task_limit && | 75 scheduled_raster_task_limit == other.scheduled_raster_task_limit && |
| 76 use_occlusion_for_tile_prioritization == | 76 use_occlusion_for_tile_prioritization == |
| 77 other.use_occlusion_for_tile_prioritization && | 77 other.use_occlusion_for_tile_prioritization && |
| 78 verify_clip_tree_calculations == other.verify_clip_tree_calculations && | 78 verify_clip_tree_calculations == other.verify_clip_tree_calculations && |
| 79 verify_transform_tree_calculations == | 79 verify_transform_tree_calculations == |
| 80 other.verify_transform_tree_calculations && | 80 other.verify_transform_tree_calculations && |
| 81 image_decode_tasks_enabled == other.image_decode_tasks_enabled && | 81 image_decode_tasks_enabled == other.image_decode_tasks_enabled && |
| 82 wait_for_beginframe_interval == other.wait_for_beginframe_interval && | |
| 83 max_staging_buffer_usage_in_bytes == | 82 max_staging_buffer_usage_in_bytes == |
| 84 other.max_staging_buffer_usage_in_bytes && | 83 other.max_staging_buffer_usage_in_bytes && |
| 85 gpu_memory_policy == other.gpu_memory_policy && | 84 gpu_memory_policy == other.gpu_memory_policy && |
| 86 software_memory_policy == other.software_memory_policy && | 85 software_memory_policy == other.software_memory_policy && |
| 87 LayerTreeDebugState::Equal(initial_debug_state, | 86 LayerTreeDebugState::Equal(initial_debug_state, |
| 88 other.initial_debug_state) && | 87 other.initial_debug_state) && |
| 89 use_cached_picture_raster == other.use_cached_picture_raster; | 88 use_cached_picture_raster == other.use_cached_picture_raster; |
| 90 } | 89 } |
| 91 | 90 |
| 92 SchedulerSettings LayerTreeSettings::ToSchedulerSettings() const { | 91 SchedulerSettings LayerTreeSettings::ToSchedulerSettings() const { |
| 93 SchedulerSettings scheduler_settings; | 92 SchedulerSettings scheduler_settings; |
| 94 scheduler_settings.use_external_begin_frame_source = | |
| 95 use_external_begin_frame_source; | |
| 96 scheduler_settings.main_frame_before_activation_enabled = | 93 scheduler_settings.main_frame_before_activation_enabled = |
| 97 main_frame_before_activation_enabled; | 94 main_frame_before_activation_enabled; |
| 98 scheduler_settings.timeout_and_draw_when_animation_checkerboards = | 95 scheduler_settings.timeout_and_draw_when_animation_checkerboards = |
| 99 timeout_and_draw_when_animation_checkerboards; | 96 timeout_and_draw_when_animation_checkerboards; |
| 100 scheduler_settings.using_synchronous_renderer_compositor = | 97 scheduler_settings.using_synchronous_renderer_compositor = |
| 101 using_synchronous_renderer_compositor; | 98 using_synchronous_renderer_compositor; |
| 102 scheduler_settings.throttle_frame_production = wait_for_beginframe_interval; | |
| 103 scheduler_settings.background_frame_interval = | 99 scheduler_settings.background_frame_interval = |
| 104 base::TimeDelta::FromSecondsD(1.0 / background_animation_rate); | 100 base::TimeDelta::FromSecondsD(1.0 / background_animation_rate); |
| 105 scheduler_settings.abort_commit_before_compositor_frame_sink_creation = | 101 scheduler_settings.abort_commit_before_compositor_frame_sink_creation = |
| 106 abort_commit_before_compositor_frame_sink_creation; | 102 abort_commit_before_compositor_frame_sink_creation; |
| 107 return scheduler_settings; | 103 return scheduler_settings; |
| 108 } | 104 } |
| 109 | 105 |
| 110 } // namespace cc | 106 } // namespace cc |
| OLD | NEW |