| 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.h" | 8 #include "cc/compositor_frame.h" |
| 9 #include "cc/compositor_frame_ack.h" | 9 #include "cc/compositor_frame_ack.h" |
| 10 #include "cc/debug_border_draw_quad.h" | 10 #include "cc/debug_border_draw_quad.h" |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) | 169 IPC_STRUCT_TRAITS_BEGIN(cc::StreamVideoDrawQuad) |
| 170 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 170 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 171 IPC_STRUCT_TRAITS_MEMBER(texture_id) | 171 IPC_STRUCT_TRAITS_MEMBER(texture_id) |
| 172 IPC_STRUCT_TRAITS_MEMBER(matrix) | 172 IPC_STRUCT_TRAITS_MEMBER(matrix) |
| 173 IPC_STRUCT_TRAITS_END() | 173 IPC_STRUCT_TRAITS_END() |
| 174 | 174 |
| 175 IPC_STRUCT_TRAITS_BEGIN(cc::TextureDrawQuad) | 175 IPC_STRUCT_TRAITS_BEGIN(cc::TextureDrawQuad) |
| 176 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 176 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 177 IPC_STRUCT_TRAITS_MEMBER(resource_id) | 177 IPC_STRUCT_TRAITS_MEMBER(resource_id) |
| 178 IPC_STRUCT_TRAITS_MEMBER(premultiplied_alpha) | 178 IPC_STRUCT_TRAITS_MEMBER(premultiplied_alpha) |
| 179 IPC_STRUCT_TRAITS_MEMBER(uv_rect) | 179 IPC_STRUCT_TRAITS_MEMBER(uv_top_left) |
| 180 IPC_STRUCT_TRAITS_MEMBER(uv_bottom_right) |
| 180 IPC_STRUCT_TRAITS_MEMBER(flipped) | 181 IPC_STRUCT_TRAITS_MEMBER(flipped) |
| 181 IPC_STRUCT_TRAITS_END() | 182 IPC_STRUCT_TRAITS_END() |
| 182 | 183 |
| 183 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) | 184 IPC_STRUCT_TRAITS_BEGIN(cc::TileDrawQuad) |
| 184 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) | 185 IPC_STRUCT_TRAITS_PARENT(cc::DrawQuad) |
| 185 IPC_STRUCT_TRAITS_MEMBER(resource_id) | 186 IPC_STRUCT_TRAITS_MEMBER(resource_id) |
| 186 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) | 187 IPC_STRUCT_TRAITS_MEMBER(tex_coord_rect) |
| 187 IPC_STRUCT_TRAITS_MEMBER(texture_size) | 188 IPC_STRUCT_TRAITS_MEMBER(texture_size) |
| 188 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) | 189 IPC_STRUCT_TRAITS_MEMBER(swizzle_contents) |
| 189 IPC_STRUCT_TRAITS_MEMBER(left_edge_aa) | 190 IPC_STRUCT_TRAITS_MEMBER(left_edge_aa) |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 IPC_STRUCT_TRAITS_MEMBER(root_layer_size) | 233 IPC_STRUCT_TRAITS_MEMBER(root_layer_size) |
| 233 IPC_STRUCT_TRAITS_MEMBER(min_page_scale_factor) | 234 IPC_STRUCT_TRAITS_MEMBER(min_page_scale_factor) |
| 234 IPC_STRUCT_TRAITS_MEMBER(max_page_scale_factor) | 235 IPC_STRUCT_TRAITS_MEMBER(max_page_scale_factor) |
| 235 IPC_STRUCT_TRAITS_MEMBER(location_bar_offset) | 236 IPC_STRUCT_TRAITS_MEMBER(location_bar_offset) |
| 236 IPC_STRUCT_TRAITS_END() | 237 IPC_STRUCT_TRAITS_END() |
| 237 | 238 |
| 238 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 239 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 239 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 240 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 240 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 241 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
| 241 IPC_STRUCT_TRAITS_END() | 242 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |