OLD | NEW |
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 "rectf.proto"; | 7 import "rectf.proto"; |
8 import "scroll_offset.proto"; | 8 import "scroll_offset.proto"; |
9 import "transform.proto"; | 9 import "transform.proto"; |
10 import "vector2df.proto"; | 10 import "vector2df.proto"; |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 optional float local_maximum_animation_target_scale = 30; | 51 optional float local_maximum_animation_target_scale = 30; |
52 optional float local_starting_animation_scale = 31; | 52 optional float local_starting_animation_scale = 31; |
53 optional float combined_maximum_animation_target_scale = 32; | 53 optional float combined_maximum_animation_target_scale = 32; |
54 optional float combined_starting_animation_scale = 33; | 54 optional float combined_starting_animation_scale = 33; |
55 | 55 |
56 optional Vector2dF sublayer_scale = 34; | 56 optional Vector2dF sublayer_scale = 34; |
57 optional ScrollOffset scroll_offset = 35; | 57 optional ScrollOffset scroll_offset = 35; |
58 optional Vector2dF scroll_snap = 36; | 58 optional Vector2dF scroll_snap = 36; |
59 optional Vector2dF source_offset = 37; | 59 optional Vector2dF source_offset = 37; |
60 optional Vector2dF source_to_parent = 38; | 60 optional Vector2dF source_to_parent = 38; |
| 61 optional int64 sorting_context_id = 39; |
61 } | 62 } |
62 | 63 |
63 // Proto for struct ClipNodeData. | 64 // Proto for struct ClipNodeData. |
64 message ClipNodeData { | 65 message ClipNodeData { |
65 optional RectF clip = 1; | 66 optional RectF clip = 1; |
66 optional RectF combined_clip_in_target_space = 2; | 67 optional RectF combined_clip_in_target_space = 2; |
67 optional RectF clip_in_target_space = 3; | 68 optional RectF clip_in_target_space = 3; |
68 | 69 |
69 optional int64 transform_id = 4; | 70 optional int64 transform_id = 4; |
70 optional int64 target_id = 5; | 71 optional int64 target_id = 5; |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 message PropertyTrees { | 156 message PropertyTrees { |
156 optional PropertyTree transform_tree = 1; | 157 optional PropertyTree transform_tree = 1; |
157 optional PropertyTree effect_tree = 2; | 158 optional PropertyTree effect_tree = 2; |
158 optional PropertyTree clip_tree = 3; | 159 optional PropertyTree clip_tree = 3; |
159 optional PropertyTree scroll_tree = 4; | 160 optional PropertyTree scroll_tree = 4; |
160 | 161 |
161 optional bool needs_rebuild = 5; | 162 optional bool needs_rebuild = 5; |
162 optional bool non_root_surfaces_enabled = 6; | 163 optional bool non_root_surfaces_enabled = 6; |
163 optional int64 sequence_number = 7; | 164 optional int64 sequence_number = 7; |
164 } | 165 } |
OLD | NEW |