| Index: gpu/gles2_conform_support/egl/display.cc
|
| diff --git a/gpu/gles2_conform_support/egl/display.cc b/gpu/gles2_conform_support/egl/display.cc
|
| index a5cd9c4d2fe99c24a1f978747b27b596209c4419..afd5908878f753776981bf53bdaaf34e44a94a1c 100644
|
| --- a/gpu/gles2_conform_support/egl/display.cc
|
| +++ b/gpu/gles2_conform_support/egl/display.cc
|
| @@ -273,20 +273,26 @@ gpu::Capabilities Display::GetCapabilities() {
|
| return decoder_->GetCapabilities();
|
| }
|
|
|
| -gfx::GpuMemoryBuffer* Display::CreateGpuMemoryBuffer(
|
| - size_t width,
|
| - size_t height,
|
| - unsigned internalformat,
|
| - unsigned usage,
|
| - int32* id) {
|
| +int32_t Display::CreateImage(ClientBuffer buffer,
|
| + size_t width,
|
| + size_t height,
|
| + unsigned internalformat) {
|
| NOTIMPLEMENTED();
|
| - return NULL;
|
| + return -1;
|
| }
|
|
|
| -void Display::DestroyGpuMemoryBuffer(int32 id) {
|
| +void Display::DestroyImage(int32 id) {
|
| NOTIMPLEMENTED();
|
| }
|
|
|
| +int32_t Display::CreateGpuMemoryBufferImage(size_t width,
|
| + size_t height,
|
| + unsigned internalformat,
|
| + unsigned usage) {
|
| + NOTIMPLEMENTED();
|
| + return -1;
|
| +}
|
| +
|
| uint32 Display::InsertSyncPoint() {
|
| NOTIMPLEMENTED();
|
| return 0u;
|
|
|