OLD | NEW |
---|---|
(Empty) | |
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 | |
3 // found in the LICENSE file. | |
4 | |
5 syntax = "proto2"; | |
6 | |
7 import "display_item.proto"; | |
8 import "rect.proto"; | |
9 import "size.proto"; | |
10 | |
11 option optimize_for = LITE_RUNTIME; | |
12 | |
13 package cc.proto; | |
14 | |
15 // A serialized representation of the DisplayListRecordingSource class. | |
16 message DisplayListRecordingSource { | |
17 // required | |
vmpstr
2015/12/10 01:12:19
Skip these comments.. Maybe just say a blanket "al
David Trainor- moved to gerrit
2015/12/10 17:10:10
Done.
| |
18 optional Rect recorded_viewport = 1; | |
19 // required | |
20 optional Size size = 2; | |
21 // required | |
22 optional int64 slow_down_raster_scale_factor_for_debug = 3; | |
23 // required | |
24 optional bool generate_discardable_images_metadata = 4; | |
25 // required | |
26 optional bool requires_clear = 5; | |
27 // required | |
28 optional bool is_solid_color = 6; | |
29 // required | |
30 optional bool clear_canvas_with_debug_color = 7; | |
31 // required | |
32 optional uint64 solid_color = 8; | |
33 // required | |
34 optional uint64 background_color = 9; | |
35 // required | |
36 optional DisplayItemList display_list = 10; | |
37 } | |
OLD | NEW |