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 // 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) | 188 IPC_STRUCT_TRAITS_MEMBER(post_sub_buffer) |
189 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) | 189 IPC_STRUCT_TRAITS_MEMBER(fast_npot_mo8_textures) |
190 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) | 190 IPC_STRUCT_TRAITS_MEMBER(egl_image_external) |
191 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) | 191 IPC_STRUCT_TRAITS_MEMBER(texture_format_bgra8888) |
192 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) | 192 IPC_STRUCT_TRAITS_MEMBER(texture_format_etc1) |
193 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) | 193 IPC_STRUCT_TRAITS_MEMBER(texture_rectangle) |
194 IPC_STRUCT_TRAITS_MEMBER(iosurface) | 194 IPC_STRUCT_TRAITS_MEMBER(iosurface) |
195 IPC_STRUCT_TRAITS_MEMBER(texture_usage) | 195 IPC_STRUCT_TRAITS_MEMBER(texture_usage) |
196 IPC_STRUCT_TRAITS_MEMBER(texture_storage) | 196 IPC_STRUCT_TRAITS_MEMBER(texture_storage) |
197 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) | 197 IPC_STRUCT_TRAITS_MEMBER(discard_framebuffer) |
198 IPC_STRUCT_TRAITS_MEMBER(map_image) | |
199 IPC_STRUCT_TRAITS_END() | 198 IPC_STRUCT_TRAITS_END() |
200 | 199 |
201 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) | 200 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats::ProcessStats) |
202 IPC_STRUCT_TRAITS_MEMBER(video_memory) | 201 IPC_STRUCT_TRAITS_MEMBER(video_memory) |
203 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) | 202 IPC_STRUCT_TRAITS_MEMBER(has_duplicates) |
204 IPC_STRUCT_TRAITS_END() | 203 IPC_STRUCT_TRAITS_END() |
205 | 204 |
206 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) | 205 IPC_STRUCT_TRAITS_BEGIN(content::GPUVideoMemoryUsageStats) |
207 IPC_STRUCT_TRAITS_MEMBER(process_map) | 206 IPC_STRUCT_TRAITS_MEMBER(process_map) |
208 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) | 207 IPC_STRUCT_TRAITS_MEMBER(bytes_allocated) |
(...skipping 563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
772 | 771 |
773 // Notify the renderer that an output buffer has been filled with encoded data. | 772 // Notify the renderer that an output buffer has been filled with encoded data. |
774 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, | 773 IPC_MESSAGE_ROUTED3(AcceleratedVideoEncoderHostMsg_BitstreamBufferReady, |
775 int32 /* bitstream_buffer_id */, | 774 int32 /* bitstream_buffer_id */, |
776 uint32 /* payload_size */, | 775 uint32 /* payload_size */, |
777 bool /* key_frame */) | 776 bool /* key_frame */) |
778 | 777 |
779 // Report error condition. | 778 // Report error condition. |
780 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, | 779 IPC_MESSAGE_ROUTED1(AcceleratedVideoEncoderHostMsg_NotifyError, |
781 media::VideoEncodeAccelerator::Error /* error */) | 780 media::VideoEncodeAccelerator::Error /* error */) |
OLD | NEW |