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 #ifndef CC_TREES_LAYER_TREE_SETTINGS_H_ | 5 #ifndef CC_TREES_LAYER_TREE_SETTINGS_H_ |
6 #define CC_TREES_LAYER_TREE_SETTINGS_H_ | 6 #define CC_TREES_LAYER_TREE_SETTINGS_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "cc/base/cc_export.h" | 9 #include "cc/base/cc_export.h" |
10 #include "cc/debug/layer_tree_debug_state.h" | 10 #include "cc/debug/layer_tree_debug_state.h" |
(...skipping 20 matching lines...) Expand all Loading... |
31 bool using_synchronous_renderer_compositor; | 31 bool using_synchronous_renderer_compositor; |
32 bool disable_hi_res_timer_tasks_on_battery; | 32 bool disable_hi_res_timer_tasks_on_battery; |
33 bool report_overscroll_only_for_scrollable_axes; | 33 bool report_overscroll_only_for_scrollable_axes; |
34 bool per_tile_painting_enabled; | 34 bool per_tile_painting_enabled; |
35 bool accelerated_animation_enabled; | 35 bool accelerated_animation_enabled; |
36 bool can_use_lcd_text; | 36 bool can_use_lcd_text; |
37 bool use_distance_field_text; | 37 bool use_distance_field_text; |
38 bool gpu_rasterization_enabled; | 38 bool gpu_rasterization_enabled; |
39 bool gpu_rasterization_forced; | 39 bool gpu_rasterization_forced; |
40 int gpu_rasterization_msaa_sample_count; | 40 int gpu_rasterization_msaa_sample_count; |
| 41 float gpu_rasterization_skewport_target_time_in_seconds; |
41 bool threaded_gpu_rasterization_enabled; | 42 bool threaded_gpu_rasterization_enabled; |
42 bool create_low_res_tiling; | 43 bool create_low_res_tiling; |
43 | 44 |
44 enum ScrollbarAnimator { | 45 enum ScrollbarAnimator { |
45 NoAnimator, | 46 NoAnimator, |
46 LinearFade, | 47 LinearFade, |
47 Thinning, | 48 Thinning, |
48 }; | 49 }; |
49 ScrollbarAnimator scrollbar_animator; | 50 ScrollbarAnimator scrollbar_animator; |
50 int scrollbar_fade_delay_ms; | 51 int scrollbar_fade_delay_ms; |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 bool use_display_lists; | 87 bool use_display_lists; |
87 bool verify_property_trees; | 88 bool verify_property_trees; |
88 skia::RefPtr<SkTypeface> hud_typeface; | 89 skia::RefPtr<SkTypeface> hud_typeface; |
89 | 90 |
90 LayerTreeDebugState initial_debug_state; | 91 LayerTreeDebugState initial_debug_state; |
91 }; | 92 }; |
92 | 93 |
93 } // namespace cc | 94 } // namespace cc |
94 | 95 |
95 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ | 96 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ |
OLD | NEW |