| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 IPC_ENUM_TRAITS_MAX_VALUE(cc::IOSurfaceDrawQuad::Orientation, | 131 IPC_ENUM_TRAITS_MAX_VALUE(cc::IOSurfaceDrawQuad::Orientation, |
| 132 cc::IOSurfaceDrawQuad::ORIENTATION_LAST) | 132 cc::IOSurfaceDrawQuad::ORIENTATION_LAST) |
| 133 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType, | 133 IPC_ENUM_TRAITS_MAX_VALUE(cc::FilterOperation::FilterType, |
| 134 cc::FilterOperation::FILTER_TYPE_LAST ) | 134 cc::FilterOperation::FILTER_TYPE_LAST ) |
| 135 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX) | 135 IPC_ENUM_TRAITS_MAX_VALUE(cc::ResourceFormat, cc::RESOURCE_FORMAT_MAX) |
| 136 IPC_ENUM_TRAITS_MAX_VALUE(cc::SelectionBoundType, cc::SELECTION_BOUND_TYPE_LAST) | 136 IPC_ENUM_TRAITS_MAX_VALUE(cc::SelectionBoundType, cc::SELECTION_BOUND_TYPE_LAST) |
| 137 IPC_ENUM_TRAITS_MAX_VALUE(SkXfermode::Mode, SkXfermode::kLastMode) | 137 IPC_ENUM_TRAITS_MAX_VALUE(SkXfermode::Mode, SkXfermode::kLastMode) |
| 138 IPC_ENUM_TRAITS_MAX_VALUE(cc::YUVVideoDrawQuad::ColorSpace, | 138 IPC_ENUM_TRAITS_MAX_VALUE(cc::YUVVideoDrawQuad::ColorSpace, |
| 139 cc::YUVVideoDrawQuad::COLOR_SPACE_LAST) | 139 cc::YUVVideoDrawQuad::COLOR_SPACE_LAST) |
| 140 | 140 |
| 141 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPass::Id) | 141 IPC_STRUCT_TRAITS_BEGIN(cc::RenderPassId) |
| 142 IPC_STRUCT_TRAITS_MEMBER(layer_id) | 142 IPC_STRUCT_TRAITS_MEMBER(layer_id) |
| 143 IPC_STRUCT_TRAITS_MEMBER(index) | 143 IPC_STRUCT_TRAITS_MEMBER(index) |
| 144 IPC_STRUCT_TRAITS_END() | 144 IPC_STRUCT_TRAITS_END() |
| 145 | 145 |
| 146 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceId) | 146 IPC_STRUCT_TRAITS_BEGIN(cc::SurfaceId) |
| 147 IPC_STRUCT_TRAITS_MEMBER(id) | 147 IPC_STRUCT_TRAITS_MEMBER(id) |
| 148 IPC_STRUCT_TRAITS_END() | 148 IPC_STRUCT_TRAITS_END() |
| 149 | 149 |
| 150 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad) | 150 IPC_STRUCT_TRAITS_BEGIN(cc::DrawQuad) |
| 151 IPC_STRUCT_TRAITS_MEMBER(material) | 151 IPC_STRUCT_TRAITS_MEMBER(material) |
| (...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 IPC_STRUCT_TRAITS_MEMBER(selection_end) | 288 IPC_STRUCT_TRAITS_MEMBER(selection_end) |
| 289 IPC_STRUCT_TRAITS_MEMBER(latency_info) | 289 IPC_STRUCT_TRAITS_MEMBER(latency_info) |
| 290 IPC_STRUCT_TRAITS_END() | 290 IPC_STRUCT_TRAITS_END() |
| 291 | 291 |
| 292 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) | 292 IPC_STRUCT_TRAITS_BEGIN(cc::GLFrameData) |
| 293 IPC_STRUCT_TRAITS_MEMBER(mailbox) | 293 IPC_STRUCT_TRAITS_MEMBER(mailbox) |
| 294 IPC_STRUCT_TRAITS_MEMBER(sync_point) | 294 IPC_STRUCT_TRAITS_MEMBER(sync_point) |
| 295 IPC_STRUCT_TRAITS_MEMBER(size) | 295 IPC_STRUCT_TRAITS_MEMBER(size) |
| 296 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) | 296 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) |
| 297 IPC_STRUCT_TRAITS_END() | 297 IPC_STRUCT_TRAITS_END() |
| OLD | NEW |