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

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

Issue 2127323002: cc: Use sublayer scale from effect tree (1) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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
« no previous file with comments | « no previous file | cc/trees/clip_node.h » ('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 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 "element_id.proto"; 7 import "element_id.proto";
8 import "rectf.proto"; 8 import "rectf.proto";
9 import "scroll_offset.proto"; 9 import "scroll_offset.proto";
10 import "size.proto"; 10 import "size.proto";
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 message TransformCachedNodeData { 61 message TransformCachedNodeData {
62 optional Transform from_target = 1; 62 optional Transform from_target = 1;
63 optional Transform to_target = 2; 63 optional Transform to_target = 2;
64 optional Transform from_screen = 3; 64 optional Transform from_screen = 3;
65 optional Transform to_screen = 4; 65 optional Transform to_screen = 4;
66 optional int64 target_id = 5; 66 optional int64 target_id = 5;
67 optional int64 content_target_id = 6; 67 optional int64 content_target_id = 6;
68 } 68 }
69 69
70 // Proto for struct ClipNodeData. 70 // Proto for struct ClipNodeData.
71 // NEXT ID: 12 71 // NEXT ID: 13
72 message ClipNodeData { 72 message ClipNodeData {
73 optional RectF clip = 1; 73 optional RectF clip = 1;
74 optional RectF combined_clip_in_target_space = 2; 74 optional RectF combined_clip_in_target_space = 2;
75 optional RectF clip_in_target_space = 3; 75 optional RectF clip_in_target_space = 3;
76 76
77 optional int64 transform_id = 4; 77 optional int64 transform_id = 4;
78 optional int64 target_id = 5; 78 optional int64 target_transform_id = 5;
79 optional int64 target_effect_id = 12;
79 optional bool applies_local_clip = 6; 80 optional bool applies_local_clip = 6;
80 optional bool layer_clipping_uses_only_local_clip = 7; 81 optional bool layer_clipping_uses_only_local_clip = 7;
81 optional bool target_is_clipped = 8; 82 optional bool target_is_clipped = 8;
82 optional bool layers_are_clipped = 9; 83 optional bool layers_are_clipped = 9;
83 optional bool layers_are_clipped_when_surfaces_disabled = 10; 84 optional bool layers_are_clipped_when_surfaces_disabled = 10;
84 optional bool resets_clip = 11; 85 optional bool resets_clip = 11;
85 } 86 }
86 87
87 // Proto for struct EffectNodeData. 88 // Proto for struct EffectNodeData.
88 // NEXT ID: 21 89 // NEXT ID: 21
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 optional bool full_tree_damaged = 12; 212 optional bool full_tree_damaged = 12;
212 optional int64 sequence_number = 6; 213 optional int64 sequence_number = 6;
213 optional bool is_main_thread = 13; 214 optional bool is_main_thread = 13;
214 optional bool is_active = 14; 215 optional bool is_active = 14;
215 216
216 optional Vector2dF inner_viewport_container_bounds_delta = 8; 217 optional Vector2dF inner_viewport_container_bounds_delta = 8;
217 optional Vector2dF outer_viewport_container_bounds_delta = 9; 218 optional Vector2dF outer_viewport_container_bounds_delta = 9;
218 optional Vector2dF inner_viewport_scroll_bounds_delta = 10; 219 optional Vector2dF inner_viewport_scroll_bounds_delta = 10;
219 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true]; 220 repeated int64 always_use_active_tree_opacity_effect_ids = 15 [packed = true];
220 } 221 }
OLDNEW
« no previous file with comments | « no previous file | cc/trees/clip_node.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698