| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 max_memory_for_prepaint_percentage == | 68 max_memory_for_prepaint_percentage == |
| 69 other.max_memory_for_prepaint_percentage && | 69 other.max_memory_for_prepaint_percentage && |
| 70 use_zero_copy == other.use_zero_copy && | 70 use_zero_copy == other.use_zero_copy && |
| 71 use_partial_raster == other.use_partial_raster && | 71 use_partial_raster == other.use_partial_raster && |
| 72 enable_elastic_overscroll == other.enable_elastic_overscroll && | 72 enable_elastic_overscroll == other.enable_elastic_overscroll && |
| 73 ignore_root_layer_flings == other.ignore_root_layer_flings && | 73 ignore_root_layer_flings == other.ignore_root_layer_flings && |
| 74 scheduled_raster_task_limit == other.scheduled_raster_task_limit && | 74 scheduled_raster_task_limit == other.scheduled_raster_task_limit && |
| 75 use_occlusion_for_tile_prioritization == | 75 use_occlusion_for_tile_prioritization == |
| 76 other.use_occlusion_for_tile_prioritization && | 76 other.use_occlusion_for_tile_prioritization && |
| 77 verify_clip_tree_calculations == other.verify_clip_tree_calculations && | 77 verify_clip_tree_calculations == other.verify_clip_tree_calculations && |
| 78 verify_transform_tree_calculations == | |
| 79 other.verify_transform_tree_calculations && | |
| 80 image_decode_tasks_enabled == other.image_decode_tasks_enabled && | 78 image_decode_tasks_enabled == other.image_decode_tasks_enabled && |
| 81 max_staging_buffer_usage_in_bytes == | 79 max_staging_buffer_usage_in_bytes == |
| 82 other.max_staging_buffer_usage_in_bytes && | 80 other.max_staging_buffer_usage_in_bytes && |
| 83 gpu_memory_policy == other.gpu_memory_policy && | 81 gpu_memory_policy == other.gpu_memory_policy && |
| 84 software_memory_policy == other.software_memory_policy && | 82 software_memory_policy == other.software_memory_policy && |
| 85 LayerTreeDebugState::Equal(initial_debug_state, | 83 LayerTreeDebugState::Equal(initial_debug_state, |
| 86 other.initial_debug_state) && | 84 other.initial_debug_state) && |
| 87 use_cached_picture_raster == other.use_cached_picture_raster; | 85 use_cached_picture_raster == other.use_cached_picture_raster; |
| 88 } | 86 } |
| 89 | 87 |
| 90 SchedulerSettings LayerTreeSettings::ToSchedulerSettings() const { | 88 SchedulerSettings LayerTreeSettings::ToSchedulerSettings() const { |
| 91 SchedulerSettings scheduler_settings; | 89 SchedulerSettings scheduler_settings; |
| 92 scheduler_settings.main_frame_before_activation_enabled = | 90 scheduler_settings.main_frame_before_activation_enabled = |
| 93 main_frame_before_activation_enabled; | 91 main_frame_before_activation_enabled; |
| 94 scheduler_settings.timeout_and_draw_when_animation_checkerboards = | 92 scheduler_settings.timeout_and_draw_when_animation_checkerboards = |
| 95 timeout_and_draw_when_animation_checkerboards; | 93 timeout_and_draw_when_animation_checkerboards; |
| 96 scheduler_settings.using_synchronous_renderer_compositor = | 94 scheduler_settings.using_synchronous_renderer_compositor = |
| 97 using_synchronous_renderer_compositor; | 95 using_synchronous_renderer_compositor; |
| 98 scheduler_settings.enable_latency_recovery = enable_latency_recovery; | 96 scheduler_settings.enable_latency_recovery = enable_latency_recovery; |
| 99 scheduler_settings.background_frame_interval = | 97 scheduler_settings.background_frame_interval = |
| 100 base::TimeDelta::FromSecondsD(1.0 / background_animation_rate); | 98 base::TimeDelta::FromSecondsD(1.0 / background_animation_rate); |
| 101 scheduler_settings.abort_commit_before_compositor_frame_sink_creation = | 99 scheduler_settings.abort_commit_before_compositor_frame_sink_creation = |
| 102 abort_commit_before_compositor_frame_sink_creation; | 100 abort_commit_before_compositor_frame_sink_creation; |
| 103 return scheduler_settings; | 101 return scheduler_settings; |
| 104 } | 102 } |
| 105 | 103 |
| 106 } // namespace cc | 104 } // namespace cc |
| OLD | NEW |