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 <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 skewport_extrapolation_limit_in_content_pixels(2000), | 60 skewport_extrapolation_limit_in_content_pixels(2000), |
61 max_unused_resource_memory_percentage(100), | 61 max_unused_resource_memory_percentage(100), |
62 max_memory_for_prepaint_percentage(100), | 62 max_memory_for_prepaint_percentage(100), |
63 highp_threshold_min(0), | 63 highp_threshold_min(0), |
64 strict_layer_property_change_checking(false), | 64 strict_layer_property_change_checking(false), |
65 use_one_copy(false), | 65 use_one_copy(false), |
66 use_zero_copy(false), | 66 use_zero_copy(false), |
67 ignore_root_layer_flings(false), | 67 ignore_root_layer_flings(false), |
68 use_rgba_4444_textures(false), | 68 use_rgba_4444_textures(false), |
69 texture_id_allocation_chunk_size(64), | 69 texture_id_allocation_chunk_size(64), |
| 70 scheduled_raster_task_limit(32), |
70 use_occlusion_for_tile_prioritization(false), | 71 use_occlusion_for_tile_prioritization(false), |
71 record_full_layer(false) { | 72 record_full_layer(false) { |
72 } | 73 } |
73 | 74 |
74 LayerTreeSettings::~LayerTreeSettings() {} | 75 LayerTreeSettings::~LayerTreeSettings() {} |
75 | 76 |
76 } // namespace cc | 77 } // namespace cc |
OLD | NEW |