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

Side by Side Diff: cc/proto/layer_tree_settings.proto

Issue 2099903002: Make tile size a function of the device scale factor. Base URL: https://chromium.googlesource.com/chromium/src.git@layouttests-display
Patch Set: tilesize: . Created 4 years, 5 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 import "layer_tree_debug_state.proto"; 7 import "layer_tree_debug_state.proto";
8 import "managed_memory_policy.proto"; 8 import "managed_memory_policy.proto";
9 import "renderer_settings.proto"; 9 import "renderer_settings.proto";
10 import "size.proto"; 10 import "size.proto";
(...skipping 29 matching lines...) Expand all
40 optional int32 scrollbar_fade_duration_ms = 17; 40 optional int32 scrollbar_fade_duration_ms = 17;
41 optional uint32 solid_color_scrollbar_color = 18; /* SkColor */ 41 optional uint32 solid_color_scrollbar_color = 18; /* SkColor */
42 optional bool timeout_and_draw_when_animation_checkerboards = 19; 42 optional bool timeout_and_draw_when_animation_checkerboards = 19;
43 optional bool layer_transforms_should_scale_layer_contents = 20; 43 optional bool layer_transforms_should_scale_layer_contents = 20;
44 optional bool layers_always_allowed_lcd_text = 21; 44 optional bool layers_always_allowed_lcd_text = 21;
45 optional float minimum_contents_scale = 22; 45 optional float minimum_contents_scale = 22;
46 optional float low_res_contents_scale_factor = 23; 46 optional float low_res_contents_scale_factor = 23;
47 optional float top_controls_show_threshold = 24; 47 optional float top_controls_show_threshold = 24;
48 optional float top_controls_hide_threshold = 25; 48 optional float top_controls_hide_threshold = 25;
49 optional double background_animation_rate = 26; 49 optional double background_animation_rate = 26;
50 optional Size default_tile_size = 27;
51 optional Size max_untiled_layer_size = 28;
52 optional Size minimum_occlusion_tracking_size = 29; 50 optional Size minimum_occlusion_tracking_size = 29;
53 optional uint32 tiling_interest_area_padding = 30; 51 optional uint32 tiling_interest_area_padding = 30;
54 optional float skewport_target_time_in_seconds = 31; 52 optional float skewport_target_time_in_seconds = 31;
55 optional int32 skewport_extrapolation_limit_in_screen_pixels = 32; 53 optional int32 skewport_extrapolation_limit_in_screen_pixels = 32;
56 optional uint32 max_memory_for_prepaint_percentage = 33; 54 optional uint32 max_memory_for_prepaint_percentage = 33;
57 optional bool use_zero_copy = 35; 55 optional bool use_zero_copy = 35;
58 optional bool use_partial_raster = 36; 56 optional bool use_partial_raster = 36;
59 optional bool enable_elastic_overscroll = 37; 57 optional bool enable_elastic_overscroll = 37;
60 repeated uint32 use_image_texture_targets = 38; 58 repeated uint32 use_image_texture_targets = 38;
61 optional bool ignore_root_layer_flings = 39; 59 optional bool ignore_root_layer_flings = 39;
62 optional uint32 scheduled_raster_task_limit = 40; 60 optional uint32 scheduled_raster_task_limit = 40;
63 optional bool use_occlusion_for_tile_prioritization = 41; 61 optional bool use_occlusion_for_tile_prioritization = 41;
64 optional bool image_decode_tasks_enabled = 44; 62 optional bool image_decode_tasks_enabled = 44;
65 optional bool use_compositor_animation_timelines = 45; 63 optional bool use_compositor_animation_timelines = 45;
66 optional bool wait_for_beginframe_interval = 46; 64 optional bool wait_for_beginframe_interval = 46;
67 optional int32 max_staging_buffer_usage_in_bytes = 47; 65 optional int32 max_staging_buffer_usage_in_bytes = 47;
68 optional ManagedMemoryPolicy memory_policy = 48; 66 optional ManagedMemoryPolicy memory_policy = 48;
69 optional LayerTreeDebugState initial_debug_state = 49; 67 optional LayerTreeDebugState initial_debug_state = 49;
70 optional bool use_cached_picture_raster = 51; 68 optional bool use_cached_picture_raster = 51;
71 optional bool async_worker_context_enabled = 52; 69 optional bool async_worker_context_enabled = 52;
70 optional bool use_viewport_for_tile_size = 53;
72 } 71 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698