| Index: cc/test/test_gles2_interface.cc
|
| diff --git a/cc/test/test_gles2_interface.cc b/cc/test/test_gles2_interface.cc
|
| index db410d5afc6af0315ed48346765cd0b32be025e2..eec1782bb9831fbe3fee741e6918a2405012526d 100644
|
| --- a/cc/test/test_gles2_interface.cc
|
| +++ b/cc/test/test_gles2_interface.cc
|
| @@ -306,41 +306,17 @@ void TestGLES2Interface::WaitAsyncTexImage2DCHROMIUM(GLenum target) {
|
| test_context_->waitAsyncTexImage2DCHROMIUM(target);
|
| }
|
|
|
| -GLuint TestGLES2Interface::CreateImageCHROMIUM(GLsizei width,
|
| +GLuint TestGLES2Interface::CreateImageCHROMIUM(ClientBuffer buffer,
|
| + GLsizei width,
|
| GLsizei height,
|
| - GLenum internalformat,
|
| - GLenum usage) {
|
| - return test_context_->createImageCHROMIUM(
|
| - width, height, internalformat, usage);
|
| + GLenum internalformat) {
|
| + return test_context_->createImageCHROMIUM(width, height, internalformat);
|
| }
|
|
|
| void TestGLES2Interface::DestroyImageCHROMIUM(GLuint image_id) {
|
| test_context_->destroyImageCHROMIUM(image_id);
|
| }
|
|
|
| -void* TestGLES2Interface::MapImageCHROMIUM(GLuint image_id) {
|
| - return test_context_->mapImageCHROMIUM(image_id);
|
| -}
|
| -
|
| -void TestGLES2Interface::GetImageParameterivCHROMIUM(GLuint image_id,
|
| - GLenum pname,
|
| - GLint* params) {
|
| - test_context_->getImageParameterivCHROMIUM(image_id, pname, params);
|
| -}
|
| -
|
| -void TestGLES2Interface::UnmapImageCHROMIUM(GLuint image_id) {
|
| - test_context_->unmapImageCHROMIUM(image_id);
|
| -}
|
| -
|
| -GLuint TestGLES2Interface::CreateGpuMemoryBufferImageCHROMIUM(
|
| - GLsizei width,
|
| - GLsizei height,
|
| - GLenum internalformat,
|
| - GLenum usage) {
|
| - return test_context_->createGpuMemoryBufferImageCHROMIUM(
|
| - width, height, internalformat, usage);
|
| -}
|
| -
|
| void TestGLES2Interface::BindTexImage2DCHROMIUM(GLenum target, GLint image_id) {
|
| test_context_->bindTexImage2DCHROMIUM(target, image_id);
|
| }
|
|
|