| Index: components/mus/public/cpp/lib/command_buffer_client_impl.cc
|
| diff --git a/components/mus/public/cpp/lib/command_buffer_client_impl.cc b/components/mus/public/cpp/lib/command_buffer_client_impl.cc
|
| index ebbee055ca086f572a6cf2934775d996fc7b292b..3cb165f46f5bb574d7e304086d64e69ea0824aab 100644
|
| --- a/components/mus/public/cpp/lib/command_buffer_client_impl.cc
|
| +++ b/components/mus/public/cpp/lib/command_buffer_client_impl.cc
|
| @@ -271,6 +271,14 @@ int32_t CommandBufferClientImpl::CreateGpuMemoryBufferImage(
|
| return CreateImage(buffer->AsClientBuffer(), width, height, internalformat);
|
| }
|
|
|
| +int32_t CommandBufferClientImpl::GetImageGpuMemoryBufferId(unsigned image_id) {
|
| + // TODO(erikchen): Once this class supports IOSurface GpuMemoryBuffer backed
|
| + // images, it will also need to keep a local cache from image id to
|
| + // GpuMemoryBuffer id.
|
| + NOTIMPLEMENTED();
|
| + return -1;
|
| +}
|
| +
|
| void CommandBufferClientImpl::SignalQuery(uint32_t query,
|
| const base::Closure& callback) {
|
| // TODO(piman)
|
|
|