| Index: ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_server.cc
|
| diff --git a/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_server.cc b/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_server.cc
|
| index 54187d0e2707a2181f8954b65c77645e09d8a48d..b40fd2d9c301150d98c8eefe1e04ddecc090b311 100644
|
| --- a/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_server.cc
|
| +++ b/ppapi/native_client/src/shared/ppapi_proxy/ppb_rpc_server.cc
|
| @@ -1160,23 +1160,22 @@ static void PPB_Graphics3DTrusted_InitCommandBufferDispatcher(
|
| rpc,
|
| done,
|
| inputs[0]->u.ival,
|
| - inputs[1]->u.ival,
|
| &(outputs[0]->u.ival)
|
| );
|
| }
|
|
|
| -static void PPB_Graphics3DTrusted_GetRingBufferDispatcher(
|
| +static void PPB_Graphics3DTrusted_SetGetBufferDispatcher(
|
| NaClSrpcRpc* rpc,
|
| NaClSrpcArg** inputs,
|
| NaClSrpcArg** outputs,
|
| NaClSrpcClosure* done
|
| ) {
|
| - PpbGraphics3DRpcServer::PPB_Graphics3DTrusted_GetRingBuffer(
|
| + UNREFERENCED_PARAMETER(outputs);
|
| + PpbGraphics3DRpcServer::PPB_Graphics3DTrusted_SetGetBuffer(
|
| rpc,
|
| done,
|
| inputs[0]->u.ival,
|
| - &(outputs[0]->u.hval),
|
| - &(outputs[1]->u.ival)
|
| + inputs[1]->u.ival
|
| );
|
| }
|
|
|
| @@ -2619,8 +2618,8 @@ NaClSrpcHandlerDesc PpbRpcs::srpc_methods[] = {
|
| { "PPB_Graphics3D_GetError:i:i", PPB_Graphics3D_GetErrorDispatcher },
|
| { "PPB_Graphics3D_SwapBuffers:ii:i", PPB_Graphics3D_SwapBuffersDispatcher },
|
| { "PPB_Graphics3DTrusted_CreateRaw:iiI:i", PPB_Graphics3DTrusted_CreateRawDispatcher },
|
| - { "PPB_Graphics3DTrusted_InitCommandBuffer:ii:i", PPB_Graphics3DTrusted_InitCommandBufferDispatcher },
|
| - { "PPB_Graphics3DTrusted_GetRingBuffer:i:hi", PPB_Graphics3DTrusted_GetRingBufferDispatcher },
|
| + { "PPB_Graphics3DTrusted_InitCommandBuffer:i:i", PPB_Graphics3DTrusted_InitCommandBufferDispatcher },
|
| + { "PPB_Graphics3DTrusted_SetGetBuffer:ii:", PPB_Graphics3DTrusted_SetGetBufferDispatcher },
|
| { "PPB_Graphics3DTrusted_GetState:i:C", PPB_Graphics3DTrusted_GetStateDispatcher },
|
| { "PPB_Graphics3DTrusted_Flush:ii:", PPB_Graphics3DTrusted_FlushDispatcher },
|
| { "PPB_Graphics3DTrusted_FlushSync:ii:C", PPB_Graphics3DTrusted_FlushSyncDispatcher },
|
|
|