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

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

Issue 1586883002: Converted Ppapi post swap buffer sync point to use sync tokens. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed some .get() booleans Created 4 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
« no previous file with comments | « content/renderer/pepper/ppb_graphics_3d_impl.cc ('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 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after
1035 ppapi::HostResource /* context */, 1035 ppapi::HostResource /* context */,
1036 int32_t /* put_offset */) 1036 int32_t /* put_offset */)
1037 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer, 1037 IPC_SYNC_MESSAGE_ROUTED2_2(PpapiHostMsg_PPBGraphics3D_CreateTransferBuffer,
1038 ppapi::HostResource /* context */, 1038 ppapi::HostResource /* context */,
1039 uint32_t /* size */, 1039 uint32_t /* size */,
1040 int32_t /* id */, 1040 int32_t /* id */,
1041 ppapi::proxy::SerializedHandle /* transfer_buffer */) 1041 ppapi::proxy::SerializedHandle /* transfer_buffer */)
1042 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer, 1042 IPC_SYNC_MESSAGE_ROUTED2_0(PpapiHostMsg_PPBGraphics3D_DestroyTransferBuffer,
1043 ppapi::HostResource /* context */, 1043 ppapi::HostResource /* context */,
1044 int32_t /* id */) 1044 int32_t /* id */)
1045 IPC_MESSAGE_ROUTED1(PpapiHostMsg_PPBGraphics3D_SwapBuffers, 1045 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_SwapBuffers,
1046 ppapi::HostResource /* graphics_3d */) 1046 ppapi::HostResource /* graphics_3d */,
1047 gpu::SyncToken /* sync_token */)
1047 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint, 1048 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertSyncPoint,
1048 ppapi::HostResource /* context */, 1049 ppapi::HostResource /* context */,
1049 uint32_t /* sync_point */) 1050 uint32_t /* sync_point */)
1050 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertFutureSyncPoint, 1051 IPC_SYNC_MESSAGE_ROUTED1_1(PpapiHostMsg_PPBGraphics3D_InsertFutureSyncPoint,
1051 ppapi::HostResource /* context */, 1052 ppapi::HostResource /* context */,
1052 uint32_t /* sync_point */) 1053 uint32_t /* sync_point */)
1053 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_RetireSyncPoint, 1054 IPC_MESSAGE_ROUTED2(PpapiHostMsg_PPBGraphics3D_RetireSyncPoint,
1054 ppapi::HostResource /* context */, 1055 ppapi::HostResource /* context */,
1055 uint32_t /* sync_point */) 1056 uint32_t /* sync_point */)
1056 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible, 1057 IPC_SYNC_MESSAGE_ROUTED1_0(PpapiHostMsg_PPBGraphics3D_EnsureWorkVisible,
(...skipping 1381 matching lines...) Expand 10 before | Expand all | Expand 10 after
2438 std::vector<ppapi::HostResource> /* buffers */, 2439 std::vector<ppapi::HostResource> /* buffers */,
2439 uint32_t /* buffer_size */) 2440 uint32_t /* buffer_size */)
2440 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus, 2441 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnStatus,
2441 uint32_t /* status */) 2442 uint32_t /* status */)
2442 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError, 2443 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnError,
2443 uint32_t /* error */) 2444 uint32_t /* error */)
2444 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady, 2445 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_VideoCapture_OnBufferReady,
2445 uint32_t /* buffer */) 2446 uint32_t /* buffer */)
2446 2447
2447 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 2448 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « content/renderer/pepper/ppb_graphics_3d_impl.cc ('k') | ppapi/proxy/ppb_graphics_3d_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698