| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 IPC_STRUCT_TRAITS_END() | 150 IPC_STRUCT_TRAITS_END() |
| 151 | 151 |
| 152 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) | 152 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) |
| 153 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 153 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 154 IPC_STRUCT_TRAITS_MEMBER(render_pass_id) | 154 IPC_STRUCT_TRAITS_MEMBER(render_pass_id) |
| 155 IPC_STRUCT_TRAITS_MEMBER(is_replica) | 155 IPC_STRUCT_TRAITS_MEMBER(is_replica) |
| 156 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) | 156 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) |
| 157 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) | 157 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) |
| 158 IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) | 158 IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) |
| 159 IPC_STRUCT_TRAITS_MEMBER(filters) | 159 IPC_STRUCT_TRAITS_MEMBER(filters) |
| 160 IPC_STRUCT_TRAITS_MEMBER(filter) | |
| 161 IPC_STRUCT_TRAITS_MEMBER(background_filters) | 160 IPC_STRUCT_TRAITS_MEMBER(background_filters) |
| 162 IPC_STRUCT_TRAITS_END() | 161 IPC_STRUCT_TRAITS_END() |
| 163 | 162 |
| 164 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) | 163 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) |
| 165 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 164 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 166 IPC_STRUCT_TRAITS_MEMBER(color) | 165 IPC_STRUCT_TRAITS_MEMBER(color) |
| 167 IPC_STRUCT_TRAITS_MEMBER(force_anti_aliasing_off) | 166 IPC_STRUCT_TRAITS_MEMBER(force_anti_aliasing_off) |
| 168 IPC_STRUCT_TRAITS_END() | 167 IPC_STRUCT_TRAITS_END() |
| 169 | 168 |
| 170 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) | 169 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 255 IPC_STRUCT_TRAITS_MEMBER(size) | 254 IPC_STRUCT_TRAITS_MEMBER(size) |
| 256 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 255 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 257 IPC_STRUCT_TRAITS_END() | 256 IPC_STRUCT_TRAITS_END() |
| 258 | 257 |
| 259 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) | 258 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) |
| 260 IPC_STRUCT_TRAITS_MEMBER(id) | 259 IPC_STRUCT_TRAITS_MEMBER(id) |
| 261 IPC_STRUCT_TRAITS_MEMBER(size) | 260 IPC_STRUCT_TRAITS_MEMBER(size) |
| 262 IPC_STRUCT_TRAITS_MEMBER(damage_rect) | 261 IPC_STRUCT_TRAITS_MEMBER(damage_rect) |
| 263 IPC_STRUCT_TRAITS_MEMBER(handle) | 262 IPC_STRUCT_TRAITS_MEMBER(handle) |
| 264 IPC_STRUCT_TRAITS_END() | 263 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |