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/checkerboard_draw_quad.h" | 7 #include "cc/checkerboard_draw_quad.h" |
8 #include "cc/compositor_frame_ack.h" | 8 #include "cc/compositor_frame_ack.h" |
9 #include "cc/debug_border_draw_quad.h" | 9 #include "cc/debug_border_draw_quad.h" |
10 #include "cc/draw_quad.h" | 10 #include "cc/draw_quad.h" |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 IPC_STRUCT_TRAITS_MEMBER(io_surface_size) | 146 IPC_STRUCT_TRAITS_MEMBER(io_surface_size) |
147 IPC_STRUCT_TRAITS_MEMBER(io_surface_texture_id) | 147 IPC_STRUCT_TRAITS_MEMBER(io_surface_texture_id) |
148 IPC_STRUCT_TRAITS_MEMBER(orientation) | 148 IPC_STRUCT_TRAITS_MEMBER(orientation) |
149 IPC_STRUCT_TRAITS_END() | 149 IPC_STRUCT_TRAITS_END() |
150 | 150 |
151 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) | 151 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassDrawQuad) |
152 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 152 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
153 IPC_STRUCT_TRAITS_MEMBER(is_replica) | 153 IPC_STRUCT_TRAITS_MEMBER(is_replica) |
154 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) | 154 IPC_STRUCT_TRAITS_MEMBER(mask_resource_id) |
155 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) | 155 IPC_STRUCT_TRAITS_MEMBER(contents_changed_since_last_frame) |
156 IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_scale_x) | 156 IPC_STRUCT_TRAITS_MEMBER(mask_uv_rect) |
157 IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_scale_y) | |
158 IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_offset_x) | |
159 IPC_STRUCT_TRAITS_MEMBER(mask_tex_coord_offset_y) | |
160 IPC_STRUCT_TRAITS_END() | 157 IPC_STRUCT_TRAITS_END() |
161 | 158 |
162 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) | 159 IPC_STRUCT_TRAITS_BEGIN(cc::SolidColorDrawQuad) |
163 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 160 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
164 IPC_STRUCT_TRAITS_MEMBER(color) | 161 IPC_STRUCT_TRAITS_MEMBER(color) |
165 IPC_STRUCT_TRAITS_END() | 162 IPC_STRUCT_TRAITS_END() |
166 | 163 |
167 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) | 164 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) |
168 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 165 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
169 IPC_STRUCT_TRAITS_MEMBER(texture_id) | 166 IPC_STRUCT_TRAITS_MEMBER(texture_id) |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 IPC_STRUCT_TRAITS_END() | 212 IPC_STRUCT_TRAITS_END() |
216 | 213 |
217 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResourceList) | 214 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResourceList) |
218 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 215 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
219 IPC_STRUCT_TRAITS_MEMBER(resources) | 216 IPC_STRUCT_TRAITS_MEMBER(resources) |
220 IPC_STRUCT_TRAITS_END() | 217 IPC_STRUCT_TRAITS_END() |
221 | 218 |
222 IPC_STRUCT_TRAITS_BEGIN(cc::CompositorFrameAck) | 219 IPC_STRUCT_TRAITS_BEGIN(cc::CompositorFrameAck) |
223 IPC_STRUCT_TRAITS_MEMBER(resources) | 220 IPC_STRUCT_TRAITS_MEMBER(resources) |
224 IPC_STRUCT_TRAITS_END() | 221 IPC_STRUCT_TRAITS_END() |
OLD | NEW |