Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(109)

Side by Side Diff: content/common/cc_messages.h

Issue 105743004: Add gpu::MailboxHolder to hold state for a gpu::Mailbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: c301e01d Rebase. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 IPC_STRUCT_TRAITS_MEMBER(content_bounds) 211 IPC_STRUCT_TRAITS_MEMBER(content_bounds)
212 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect) 212 IPC_STRUCT_TRAITS_MEMBER(visible_content_rect)
213 IPC_STRUCT_TRAITS_MEMBER(clip_rect) 213 IPC_STRUCT_TRAITS_MEMBER(clip_rect)
214 IPC_STRUCT_TRAITS_MEMBER(is_clipped) 214 IPC_STRUCT_TRAITS_MEMBER(is_clipped)
215 IPC_STRUCT_TRAITS_MEMBER(opacity) 215 IPC_STRUCT_TRAITS_MEMBER(opacity)
216 IPC_STRUCT_TRAITS_MEMBER(blend_mode) 216 IPC_STRUCT_TRAITS_MEMBER(blend_mode)
217 IPC_STRUCT_TRAITS_END() 217 IPC_STRUCT_TRAITS_END()
218 218
219 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource) 219 IPC_STRUCT_TRAITS_BEGIN(cc::TransferableResource)
220 IPC_STRUCT_TRAITS_MEMBER(id) 220 IPC_STRUCT_TRAITS_MEMBER(id)
221 IPC_STRUCT_TRAITS_MEMBER(sync_point)
222 IPC_STRUCT_TRAITS_MEMBER(format) 221 IPC_STRUCT_TRAITS_MEMBER(format)
223 IPC_STRUCT_TRAITS_MEMBER(target)
224 IPC_STRUCT_TRAITS_MEMBER(filter) 222 IPC_STRUCT_TRAITS_MEMBER(filter)
225 IPC_STRUCT_TRAITS_MEMBER(size) 223 IPC_STRUCT_TRAITS_MEMBER(size)
226 IPC_STRUCT_TRAITS_MEMBER(mailbox) 224 IPC_STRUCT_TRAITS_MEMBER(mailbox_holder)
227 IPC_STRUCT_TRAITS_MEMBER(is_software) 225 IPC_STRUCT_TRAITS_MEMBER(is_software)
228 IPC_STRUCT_TRAITS_END() 226 IPC_STRUCT_TRAITS_END()
229 227
230 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource) 228 IPC_STRUCT_TRAITS_BEGIN(cc::ReturnedResource)
231 IPC_STRUCT_TRAITS_MEMBER(id) 229 IPC_STRUCT_TRAITS_MEMBER(id)
232 IPC_STRUCT_TRAITS_MEMBER(sync_point) 230 IPC_STRUCT_TRAITS_MEMBER(sync_point)
233 IPC_STRUCT_TRAITS_MEMBER(count) 231 IPC_STRUCT_TRAITS_MEMBER(count)
234 IPC_STRUCT_TRAITS_MEMBER(lost) 232 IPC_STRUCT_TRAITS_MEMBER(lost)
235 IPC_STRUCT_TRAITS_END() 233 IPC_STRUCT_TRAITS_END()
236 234
(...skipping 23 matching lines...) Expand all
260 IPC_STRUCT_TRAITS_MEMBER(size) 258 IPC_STRUCT_TRAITS_MEMBER(size)
261 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect) 259 IPC_STRUCT_TRAITS_MEMBER(sub_buffer_rect)
262 IPC_STRUCT_TRAITS_END() 260 IPC_STRUCT_TRAITS_END()
263 261
264 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData) 262 IPC_STRUCT_TRAITS_BEGIN(cc::SoftwareFrameData)
265 IPC_STRUCT_TRAITS_MEMBER(id) 263 IPC_STRUCT_TRAITS_MEMBER(id)
266 IPC_STRUCT_TRAITS_MEMBER(size) 264 IPC_STRUCT_TRAITS_MEMBER(size)
267 IPC_STRUCT_TRAITS_MEMBER(damage_rect) 265 IPC_STRUCT_TRAITS_MEMBER(damage_rect)
268 IPC_STRUCT_TRAITS_MEMBER(handle) 266 IPC_STRUCT_TRAITS_MEMBER(handle)
269 IPC_STRUCT_TRAITS_END() 267 IPC_STRUCT_TRAITS_END()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698