| 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 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 231 IPC_STRUCT_TRAITS_MEMBER(y_flipped) | 231 IPC_STRUCT_TRAITS_MEMBER(y_flipped) |
| 232 IPC_STRUCT_TRAITS_MEMBER(nearest_neighbor) | 232 IPC_STRUCT_TRAITS_MEMBER(nearest_neighbor) |
| 233 IPC_STRUCT_TRAITS_END() | 233 IPC_STRUCT_TRAITS_END() |
| 234 | 234 |
| 235 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) | 235 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) |
| 236 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 236 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 237 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) | 237 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) |
| 238 IPC_STRUCT_TRAITS_MEMBER(texture_size) | 238 IPC_STRUCT_TRAITS_MEMBER(texture_size) |
| 239 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) | 239 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) |
| 240 IPC_STRUCT_TRAITS_MEMBER(nearest_neighbor) | 240 IPC_STRUCT_TRAITS_MEMBER(nearest_neighbor) |
| 241 IPC_STRUCT_TRAITS_MEMBER(allow_overlay) |
| 241 IPC_STRUCT_TRAITS_END() | 242 IPC_STRUCT_TRAITS_END() |
| 242 | 243 |
| 243 IPC_STRUCT_TRAITS_BEGIN(cc::YUVVideoDrawQuad) | 244 IPC_STRUCT_TRAITS_BEGIN(cc::YUVVideoDrawQuad) |
| 244 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 245 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 245 IPC_STRUCT_TRAITS_MEMBER(ya_tex_coord_rect) | 246 IPC_STRUCT_TRAITS_MEMBER(ya_tex_coord_rect) |
| 246 IPC_STRUCT_TRAITS_MEMBER(uv_tex_coord_rect) | 247 IPC_STRUCT_TRAITS_MEMBER(uv_tex_coord_rect) |
| 247 IPC_STRUCT_TRAITS_MEMBER(ya_tex_size) | 248 IPC_STRUCT_TRAITS_MEMBER(ya_tex_size) |
| 248 IPC_STRUCT_TRAITS_MEMBER(uv_tex_size) | 249 IPC_STRUCT_TRAITS_MEMBER(uv_tex_size) |
| 249 IPC_STRUCT_TRAITS_MEMBER(color_space) | 250 IPC_STRUCT_TRAITS_MEMBER(color_space) |
| 250 IPC_STRUCT_TRAITS_END() | 251 IPC_STRUCT_TRAITS_END() |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 321 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
| 321 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) | 322 IPC_STRUCT_TRAITS_MEMBER(satisfies_sequences) |
| 322 IPC_STRUCT_TRAITS_END() | 323 IPC_STRUCT_TRAITS_END() |
| 323 | 324 |
| 324 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 325 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 325 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 326 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 326 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 327 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
| 327 IPC_STRUCT_TRAITS_MEMBER(size) | 328 IPC_STRUCT_TRAITS_MEMBER(size) |
| 328 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 329 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 329 IPC_STRUCT_TRAITS_END() | 330 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |