Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: cc/trees/layer_tree_settings.h

Issue 196473007: Add --disable-low-res-tiling. Disable low res tiling to save power. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Resolve merge conflicts Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/trees/layer_tree_settings.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 18 matching lines...) Expand all
29 bool partial_swap_enabled; 29 bool partial_swap_enabled;
30 bool accelerated_animation_enabled; 30 bool accelerated_animation_enabled;
31 bool can_use_lcd_text; 31 bool can_use_lcd_text;
32 bool should_clear_root_render_pass; 32 bool should_clear_root_render_pass;
33 enum RasterizationSite { 33 enum RasterizationSite {
34 CpuRasterization, 34 CpuRasterization,
35 HybridRasterization, 35 HybridRasterization,
36 GpuRasterization, 36 GpuRasterization,
37 }; 37 };
38 RasterizationSite rasterization_site; 38 RasterizationSite rasterization_site;
39 bool create_low_res_tiling;
39 40
40 enum ScrollbarAnimator { 41 enum ScrollbarAnimator {
41 NoAnimator, 42 NoAnimator,
42 LinearFade, 43 LinearFade,
43 Thinning, 44 Thinning,
44 }; 45 };
45 ScrollbarAnimator scrollbar_animator; 46 ScrollbarAnimator scrollbar_animator;
46 int scrollbar_linear_fade_delay_ms; 47 int scrollbar_linear_fade_delay_ms;
47 int scrollbar_linear_fade_length_ms; 48 int scrollbar_linear_fade_length_ms;
48 SkColor solid_color_scrollbar_color; 49 SkColor solid_color_scrollbar_color;
(...skipping 26 matching lines...) Expand all
75 bool use_rgba_4444_textures; 76 bool use_rgba_4444_textures;
76 bool touch_hit_testing; 77 bool touch_hit_testing;
77 size_t texture_id_allocation_chunk_size; 78 size_t texture_id_allocation_chunk_size;
78 79
79 LayerTreeDebugState initial_debug_state; 80 LayerTreeDebugState initial_debug_state;
80 }; 81 };
81 82
82 } // namespace cc 83 } // namespace cc
83 84
84 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ 85 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_
OLDNEW
« no previous file with comments | « cc/layers/picture_layer_impl.cc ('k') | cc/trees/layer_tree_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698