OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 // IPC Messages sent between compositor instances. | 5 // IPC Messages sent between compositor instances. |
6 | 6 |
7 #include "cc/debug/latency_info.h" | 7 #include "cc/debug/latency_info.h" |
8 #include "cc/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
9 #include "cc/output/compositor_frame_ack.h" | 9 #include "cc/output/compositor_frame_ack.h" |
10 #include "cc/quads/checkerboard_draw_quad.h" | 10 #include "cc/quads/checkerboard_draw_quad.h" |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 IPC_STRUCT_TRAITS_BEGIN(cc::IOSurfaceDrawQuad) | 137 IPC_STRUCT_TRAITS_BEGIN(cc::IOSurfaceDrawQuad) |
138 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 138 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
139 IPC_STRUCT_TRAITS_MEMBER(io_surface_size) | 139 IPC_STRUCT_TRAITS_MEMBER(io_surface_size) |
140 IPC_STRUCT_TRAITS_MEMBER(io_surface_resource_id) | 140 IPC_STRUCT_TRAITS_MEMBER(io_surface_resource_id) |
141 IPC_STRUCT_TRAITS_MEMBER(orientation) | 141 IPC_STRUCT_TRAITS_MEMBER(orientation) |
142 IPC_STRUCT_TRAITS_END() | 142 IPC_STRUCT_TRAITS_END() |
143 | 143 |
144 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) | 144 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) |
145 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 145 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 146 IPC_STRUCT_TRAITS_MEMBER(render_pass_id) |
146 IPC_STRUCT_TRAITS_MEMBER(is_replica) | 147 IPC_STRUCT_TRAITS_MEMBER(is_replica) |
147 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) | 148 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) |
148 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) | 149 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) |
149 IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) | 150 IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) |
150 IPC_STRUCT_TRAITS_MEMBER(filters) | 151 IPC_STRUCT_TRAITS_MEMBER(filters) |
151 // TODO(piman): filter isn't being serialized. | 152 // TODO(piman): filter isn't being serialized. |
152 // IPC_STRUCT_TRAITS_MEMBER(filter) | 153 // IPC_STRUCT_TRAITS_MEMBER(filter) |
153 IPC_STRUCT_TRAITS_MEMBER(background_filters) | 154 IPC_STRUCT_TRAITS_MEMBER(background_filters) |
154 IPC_STRUCT_TRAITS_END() | 155 IPC_STRUCT_TRAITS_END() |
155 | 156 |
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
236 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 237 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
237 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 238 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
238 IPC_STRUCT_TRAITS_MEMBER(size) | 239 IPC_STRUCT_TRAITS_MEMBER(size) |
239 IPC_STRUCT_TRAITS_END() | 240 IPC_STRUCT_TRAITS_END() |
240 | 241 |
241 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) | 242 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) |
242 IPC_STRUCT_TRAITS_MEMBER(size) | 243 IPC_STRUCT_TRAITS_MEMBER(size) |
243 IPC_STRUCT_TRAITS_MEMBER(damage_rect) | 244 IPC_STRUCT_TRAITS_MEMBER(damage_rect) |
244 IPC_STRUCT_TRAITS_MEMBER(dib_id) | 245 IPC_STRUCT_TRAITS_MEMBER(dib_id) |
245 IPC_STRUCT_TRAITS_END() | 246 IPC_STRUCT_TRAITS_END() |
OLD | NEW |