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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 2086363004: mac: Finish plumbing for Pepper3D Image Chromium. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp98_native_gmb
Patch Set: Rebase error. Created 4 years, 5 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
« no previous file with comments | « gpu/ipc/common/gpu_param_traits_macros.h ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 6
7 #include <stdint.h> 7 #include <stdint.h>
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after
1079 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 1079 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
1080 ppapi::HostResource /* context */, 1080 ppapi::HostResource /* context */,
1081 int32_t /* id */) 1081 int32_t /* id */)
1082 // The receiver of this message takes ownership of the front buffer of the GL 1082 // The receiver of this message takes ownership of the front buffer of the GL
1083 // context. Each call to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be preceded 1083 // context. Each call to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be preceded
1084 // by exactly one call to PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer. The 1084 // by exactly one call to PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer. The
1085 // SyncToken passed to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be generated 1085 // SyncToken passed to PpapiHostMsg_PPBGraphics3D_SwapBuffers must be generated
1086 // after this message is sent. 1086 // after this message is sent.
1087 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer, 1087 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_TakeFrontBuffer,
1088 ppapi::HostResource /* graphics_3d */) 1088 ppapi::HostResource /* graphics_3d */)
1089 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 1089 IPC_MESSAGE_ROUTED4(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
1090 ppapi::HostResource /* graphics_3d */, 1090 ppapi::HostResource /* graphics_3d */,
1091 gpu::SyncToken /* sync_token */) 1091 gpu::SyncToken /* sync_token */,
1092 int32_t /* width*/,
1093 int32_t /* height*/)
1092 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible, 1094 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible,
1093 ppapi::HostResource /* context */) 1095 ppapi::HostResource /* context */)
1094 1096
1095 // PPB_ImageData. 1097 // PPB_ImageData.
1096 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform, 1098 IPC_SYNC_MESSAGE_ROUTED4_3(PpapiHostMsg_PPBImageData_CreatePlatform,
1097 PP_Instance /* instance */, 1099 PP_Instance /* instance */,
1098 int32_t /* format */, 1100 int32_t /* format */,
1099 PP_Size /* size */, 1101 PP_Size /* size */,
1100 PP_Bool /* init_to_zero */, 1102 PP_Bool /* init_to_zero */,
1101 ppapi::HostResource /* result_resource */, 1103 ppapi::HostResource /* result_resource */,
(...skipping 1419 matching lines...) Expand 10 before | Expand all | Expand 10 after
2521 std::vector<ppapi::HostResource> /* buffers */, 2523 std::vector<ppapi::HostResource> /* buffers */,
2522 uint32_t /* buffer_size */) 2524 uint32_t /* buffer_size */)
2523 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2524 uint32_t /* status */) 2526 uint32_t /* status */)
2525 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2526 uint32_t /* error */) 2528 uint32_t /* error */)
2527 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2529 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2528 uint32_t /* buffer */) 2530 uint32_t /* buffer */)
2529 2531
2530 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2532 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « gpu/ipc/common/gpu_param_traits_macros.h ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698