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

Side by Side Diff: content/common/gpu/gpu_messages.h

Issue 11194042: Implement TextureImageTransportSurface using texture mailbox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased, fixed post sub buffer, use multiple mailbox names Created 8 years, 1 month 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 // Multiply-included message file, hence no include guard here, but see below 5 // Multiply-included message file, hence no include guard here, but see below
6 // for a much smaller-than-usual include guard section. 6 // for a much smaller-than-usual include guard section.
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 28 matching lines...) Expand all
39 IPC_STRUCT_MEMBER(std::vector<int>, attribs) 39 IPC_STRUCT_MEMBER(std::vector<int>, attribs)
40 IPC_STRUCT_MEMBER(GURL, active_url) 40 IPC_STRUCT_MEMBER(GURL, active_url)
41 IPC_STRUCT_MEMBER(gfx::GpuPreference, gpu_preference) 41 IPC_STRUCT_MEMBER(gfx::GpuPreference, gpu_preference)
42 IPC_STRUCT_END() 42 IPC_STRUCT_END()
43 43
44 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceNew_Params) 44 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceNew_Params)
45 IPC_STRUCT_MEMBER(int32, surface_id) 45 IPC_STRUCT_MEMBER(int32, surface_id)
46 IPC_STRUCT_MEMBER(int32, width) 46 IPC_STRUCT_MEMBER(int32, width)
47 IPC_STRUCT_MEMBER(int32, height) 47 IPC_STRUCT_MEMBER(int32, height)
48 IPC_STRUCT_MEMBER(uint64, surface_handle) 48 IPC_STRUCT_MEMBER(uint64, surface_handle)
49 IPC_STRUCT_MEMBER(std::vector<signed char>, mailbox_name)
49 IPC_STRUCT_MEMBER(int32, route_id) 50 IPC_STRUCT_MEMBER(int32, route_id)
50 #if defined(OS_MACOSX) 51 #if defined(OS_MACOSX)
51 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) 52 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window)
52 IPC_STRUCT_MEMBER(bool, create_transport_dib) 53 IPC_STRUCT_MEMBER(bool, create_transport_dib)
53 #endif 54 #endif
54 IPC_STRUCT_END() 55 IPC_STRUCT_END()
55 56
56 #undef IPC_MESSAGE_EXPORT 57 #undef IPC_MESSAGE_EXPORT
57 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT 58 #define IPC_MESSAGE_EXPORT CONTENT_EXPORT
58 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params) 59 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params)
59 IPC_STRUCT_MEMBER(int32, surface_id) 60 IPC_STRUCT_MEMBER(int32, surface_id)
60 IPC_STRUCT_MEMBER(uint64, surface_handle) 61 IPC_STRUCT_MEMBER(uint64, surface_handle)
61 IPC_STRUCT_MEMBER(int32, route_id) 62 IPC_STRUCT_MEMBER(int32, route_id)
62 IPC_STRUCT_MEMBER(gfx::Size, size) 63 IPC_STRUCT_MEMBER(gfx::Size, size)
63 #if defined(OS_MACOSX) 64 #if defined(OS_MACOSX)
64 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) 65 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window)
65 #endif 66 #endif
66 IPC_STRUCT_MEMBER(uint32, protection_state_id)
67 IPC_STRUCT_MEMBER(bool, skip_ack)
68 IPC_STRUCT_END() 67 IPC_STRUCT_END()
69 #undef IPC_MESSAGE_EXPORT 68 #undef IPC_MESSAGE_EXPORT
70 #define IPC_MESSAGE_EXPORT 69 #define IPC_MESSAGE_EXPORT
71 70
72 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params) 71 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfacePostSubBuffer_Params)
73 IPC_STRUCT_MEMBER(int32, surface_id) 72 IPC_STRUCT_MEMBER(int32, surface_id)
74 IPC_STRUCT_MEMBER(uint64, surface_handle) 73 IPC_STRUCT_MEMBER(uint64, surface_handle)
75 IPC_STRUCT_MEMBER(int32, route_id) 74 IPC_STRUCT_MEMBER(int32, route_id)
76 IPC_STRUCT_MEMBER(int, x) 75 IPC_STRUCT_MEMBER(int, x)
77 IPC_STRUCT_MEMBER(int, y) 76 IPC_STRUCT_MEMBER(int, y)
78 IPC_STRUCT_MEMBER(int, width) 77 IPC_STRUCT_MEMBER(int, width)
79 IPC_STRUCT_MEMBER(int, height) 78 IPC_STRUCT_MEMBER(int, height)
80 IPC_STRUCT_MEMBER(gfx::Size, surface_size) 79 IPC_STRUCT_MEMBER(gfx::Size, surface_size)
81 #if defined(OS_MACOSX) 80 #if defined(OS_MACOSX)
82 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) 81 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window)
83 #endif 82 #endif
84 IPC_STRUCT_MEMBER(uint32, protection_state_id)
85 IPC_STRUCT_END() 83 IPC_STRUCT_END()
86 84
87 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params) 85 IPC_STRUCT_BEGIN(GpuHostMsg_AcceleratedSurfaceRelease_Params)
88 IPC_STRUCT_MEMBER(int32, surface_id) 86 IPC_STRUCT_MEMBER(int32, surface_id)
89 IPC_STRUCT_MEMBER(uint64, identifier) 87 IPC_STRUCT_MEMBER(uint64, identifier)
90 IPC_STRUCT_MEMBER(int32, route_id) 88 IPC_STRUCT_MEMBER(int32, route_id)
91 #if defined(OS_MACOSX) 89 #if defined(OS_MACOSX)
92 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window) 90 IPC_STRUCT_MEMBER(gfx::PluginWindowHandle, window)
93 #endif 91 #endif
94 IPC_STRUCT_END() 92 IPC_STRUCT_END()
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have) 188 IPC_STRUCT_TRAITS_MEMBER(bytes_nice_to_have)
191 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) 189 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated)
192 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested) 190 IPC_STRUCT_TRAITS_MEMBER(backbuffer_requested)
193 IPC_STRUCT_TRAITS_END() 191 IPC_STRUCT_TRAITS_END()
194 192
195 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle) 193 IPC_STRUCT_TRAITS_BEGIN(gfx::GLSurfaceHandle)
196 IPC_STRUCT_TRAITS_MEMBER(handle) 194 IPC_STRUCT_TRAITS_MEMBER(handle)
197 IPC_STRUCT_TRAITS_MEMBER(transport) 195 IPC_STRUCT_TRAITS_MEMBER(transport)
198 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id) 196 IPC_STRUCT_TRAITS_MEMBER(parent_gpu_process_id)
199 IPC_STRUCT_TRAITS_MEMBER(parent_client_id) 197 IPC_STRUCT_TRAITS_MEMBER(parent_client_id)
200 IPC_STRUCT_TRAITS_MEMBER(parent_context_id)
201 IPC_STRUCT_TRAITS_MEMBER(parent_texture_id[0])
202 IPC_STRUCT_TRAITS_MEMBER(parent_texture_id[1])
203 IPC_STRUCT_TRAITS_MEMBER(sync_point)
204 IPC_STRUCT_TRAITS_END() 198 IPC_STRUCT_TRAITS_END()
205 199
206 IPC_ENUM_TRAITS(content::CauseForGpuLaunch) 200 IPC_ENUM_TRAITS(content::CauseForGpuLaunch)
207 IPC_ENUM_TRAITS(gfx::GpuPreference) 201 IPC_ENUM_TRAITS(gfx::GpuPreference)
208 IPC_ENUM_TRAITS(gpu::error::ContextLostReason) 202 IPC_ENUM_TRAITS(gpu::error::ContextLostReason)
209 203
210 IPC_ENUM_TRAITS(media::VideoCodecProfile) 204 IPC_ENUM_TRAITS(media::VideoCodecProfile)
211 205
212 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats) 206 IPC_STRUCT_TRAITS_BEGIN(content::GpuRenderingStats)
213 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count) 207 IPC_STRUCT_TRAITS_MEMBER(global_texture_upload_count)
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 267
274 // Tells the GPU process' memory manager how many visible windows there are, so 268 // Tells the GPU process' memory manager how many visible windows there are, so
275 // it can partition memory amongst them. 269 // it can partition memory amongst them.
276 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount, 270 IPC_MESSAGE_CONTROL1(GpuMsg_SetVideoMemoryWindowCount,
277 uint32 /* window_count */) 271 uint32 /* window_count */)
278 272
279 // Tells the GPU process that the browser process has finished resizing the 273 // Tells the GPU process that the browser process has finished resizing the
280 // view. 274 // view.
281 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK) 275 IPC_MESSAGE_ROUTED0(AcceleratedSurfaceMsg_ResizeViewACK)
282 276
283 // Tells the GPU process if it's worth suggesting release of the front surface.
284 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_SetFrontSurfaceIsProtected,
285 bool /* is_protected */,
286 uint32 /* protection_state_id */)
287
288 // Tells the GPU process that the browser process has handled the swap 277 // Tells the GPU process that the browser process has handled the swap
289 // buffers or post sub-buffer request. A non-zero sync point means 278 // buffers or post sub-buffer request. A non-zero sync point means
290 // that we should wait for the sync point. 279 // that we should wait for the sync point.
291 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented, 280 IPC_MESSAGE_ROUTED2(AcceleratedSurfaceMsg_BufferPresented,
292 bool /* presented */, 281 uint64 /* surface_handle */,
piman 2012/11/09 22:02:01 Please document above what this surface handle rep
no sievers 2012/11/19 20:30:44 Done.
293 uint32 /* sync_point */) 282 uint32 /* sync_point */)
294 283
295 // Tells the GPU process to remove all contexts. 284 // Tells the GPU process to remove all contexts.
296 IPC_MESSAGE_CONTROL0(GpuMsg_Clean) 285 IPC_MESSAGE_CONTROL0(GpuMsg_Clean)
297 286
298 // Tells the GPU process to crash. 287 // Tells the GPU process to crash.
299 IPC_MESSAGE_CONTROL0(GpuMsg_Crash) 288 IPC_MESSAGE_CONTROL0(GpuMsg_Crash)
300 289
301 // Tells the GPU process to hang. 290 // Tells the GPU process to hang.
302 IPC_MESSAGE_CONTROL0(GpuMsg_Hang) 291 IPC_MESSAGE_CONTROL0(GpuMsg_Hang)
(...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 668
680 // Confirm decoder has been flushed. 669 // Confirm decoder has been flushed.
681 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) 670 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone)
682 671
683 // Confirm decoder has been reset. 672 // Confirm decoder has been reset.
684 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone) 673 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_ResetDone)
685 674
686 // Video decoder has encountered an error. 675 // Video decoder has encountered an error.
687 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, 676 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification,
688 uint32) /* Error ID */ 677 uint32) /* Error ID */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698