| Index: ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| diff --git a/ppapi/proxy/ppapi_command_buffer_proxy.cc b/ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| index 60c81400720b784f32308b5c2d59544c5c25ba18..7a2783a20064415baa55dc52cf01cfcc2a25b07d 100644
|
| --- a/ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| +++ b/ppapi/proxy/ppapi_command_buffer_proxy.cc
|
| @@ -195,18 +195,25 @@ gpu::Capabilities PpapiCommandBufferProxy::GetCapabilities() {
|
| return gpu::Capabilities();
|
| }
|
|
|
| -gfx::GpuMemoryBuffer* PpapiCommandBufferProxy::CreateGpuMemoryBuffer(
|
| - size_t width,
|
| - size_t height,
|
| - unsigned internalformat,
|
| - unsigned usage,
|
| - int32* id) {
|
| +int32 PpapiCommandBufferProxy::CreateImage(ClientBuffer buffer,
|
| + size_t width,
|
| + size_t height,
|
| + unsigned internalformat) {
|
| + NOTREACHED();
|
| + return -1;
|
| +}
|
| +
|
| +void PpapiCommandBufferProxy::DestroyImage(int32 id) {
|
| NOTREACHED();
|
| - return NULL;
|
| }
|
|
|
| -void PpapiCommandBufferProxy::DestroyGpuMemoryBuffer(int32 id) {
|
| +int32 PpapiCommandBufferProxy::CreateGpuMemoryBufferImage(
|
| + size_t width,
|
| + size_t height,
|
| + unsigned internalformat,
|
| + unsigned usage) {
|
| NOTREACHED();
|
| + return -1;
|
| }
|
|
|
| bool PpapiCommandBufferProxy::Send(IPC::Message* msg) {
|
|
|