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/output/begin_frame_args.h" | 7 #include "cc/output/begin_frame_args.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/output/filter_operation.h" | 10 #include "cc/output/filter_operation.h" |
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
200 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) | 200 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) |
201 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 201 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
202 IPC_STRUCT_TRAITS_MEMBER(resource_id) | 202 IPC_STRUCT_TRAITS_MEMBER(resource_id) |
203 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) | 203 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) |
204 IPC_STRUCT_TRAITS_MEMBER(texture_size) | 204 IPC_STRUCT_TRAITS_MEMBER(texture_size) |
205 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) | 205 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) |
206 IPC_STRUCT_TRAITS_END() | 206 IPC_STRUCT_TRAITS_END() |
207 | 207 |
208 IPC_STRUCT_TRAITS_BEGIN(cc::YUVVideoDrawQuad) | 208 IPC_STRUCT_TRAITS_BEGIN(cc::YUVVideoDrawQuad) |
209 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 209 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
210 IPC_STRUCT_TRAITS_MEMBER(tex_scale) | 210 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) |
211 IPC_STRUCT_TRAITS_MEMBER(y_plane_resource_id) | 211 IPC_STRUCT_TRAITS_MEMBER(y_plane_resource_id) |
212 IPC_STRUCT_TRAITS_MEMBER(u_plane_resource_id) | 212 IPC_STRUCT_TRAITS_MEMBER(u_plane_resource_id) |
213 IPC_STRUCT_TRAITS_MEMBER(v_plane_resource_id) | 213 IPC_STRUCT_TRAITS_MEMBER(v_plane_resource_id) |
214 IPC_STRUCT_TRAITS_MEMBER(a_plane_resource_id) | 214 IPC_STRUCT_TRAITS_MEMBER(a_plane_resource_id) |
215 IPC_STRUCT_TRAITS_END() | 215 IPC_STRUCT_TRAITS_END() |
216 | 216 |
217 IPC_STRUCT_TRAITS_BEGIN(cc::SharedQuadState) | 217 IPC_STRUCT_TRAITS_BEGIN(cc::SharedQuadState) |
218 IPC_STRUCT_TRAITS_MEMBER(content_to_target_transform) | 218 IPC_STRUCT_TRAITS_MEMBER(content_to_target_transform) |
219 IPC_STRUCT_TRAITS_MEMBER(content_bounds) | 219 IPC_STRUCT_TRAITS_MEMBER(content_bounds) |
220 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect) | 220 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect) |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
266 IPC_STRUCT_TRAITS_MEMBER(size) | 266 IPC_STRUCT_TRAITS_MEMBER(size) |
267 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 267 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
268 IPC_STRUCT_TRAITS_END() | 268 IPC_STRUCT_TRAITS_END() |
269 | 269 |
270 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) | 270 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) |
271 IPC_STRUCT_TRAITS_MEMBER(id) | 271 IPC_STRUCT_TRAITS_MEMBER(id) |
272 IPC_STRUCT_TRAITS_MEMBER(size) | 272 IPC_STRUCT_TRAITS_MEMBER(size) |
273 IPC_STRUCT_TRAITS_MEMBER(damage_rect) | 273 IPC_STRUCT_TRAITS_MEMBER(damage_rect) |
274 IPC_STRUCT_TRAITS_MEMBER(handle) | 274 IPC_STRUCT_TRAITS_MEMBER(handle) |
275 IPC_STRUCT_TRAITS_END() | 275 IPC_STRUCT_TRAITS_END() |
OLD | NEW |