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

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

Issue 2007163002: cc: Separate raster and decode prepaint regions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
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 <stddef.h> 8 #include <stddef.h>
9 9
10 #include <vector> 10 #include <vector>
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 bool verify_clip_tree_calculations; 89 bool verify_clip_tree_calculations;
90 bool image_decode_tasks_enabled; 90 bool image_decode_tasks_enabled;
91 bool wait_for_beginframe_interval; 91 bool wait_for_beginframe_interval;
92 bool abort_commit_before_output_surface_creation; 92 bool abort_commit_before_output_surface_creation;
93 bool use_mouse_wheel_gestures; 93 bool use_mouse_wheel_gestures;
94 bool use_layer_lists; 94 bool use_layer_lists;
95 int max_staging_buffer_usage_in_bytes; 95 int max_staging_buffer_usage_in_bytes;
96 ManagedMemoryPolicy memory_policy_; 96 ManagedMemoryPolicy memory_policy_;
97 size_t gpu_decoded_image_budget_bytes; 97 size_t gpu_decoded_image_budget_bytes;
98 size_t software_decoded_image_budget_bytes; 98 size_t software_decoded_image_budget_bytes;
99 int max_preraster_distance_in_screen_pixels;
99 100
100 // If set to true, the display item list will internally cache a SkPicture for 101 // If set to true, the display item list will internally cache a SkPicture for
101 // raster rather than directly using the display items. 102 // raster rather than directly using the display items.
102 bool use_cached_picture_raster; 103 bool use_cached_picture_raster;
103 104
104 LayerTreeDebugState initial_debug_state; 105 LayerTreeDebugState initial_debug_state;
105 }; 106 };
106 107
107 } // namespace cc 108 } // namespace cc
108 109
109 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_ 110 #endif // CC_TREES_LAYER_TREE_SETTINGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698