Index: cc/test/test_gles2_interface.cc |
diff --git a/cc/test/test_gles2_interface.cc b/cc/test/test_gles2_interface.cc |
index 732c8a24916b14d1e7bc84508e7a80c048627c69..26055ba6791c1cecf194276e07351646fecf43dc 100644 |
--- a/cc/test/test_gles2_interface.cc |
+++ b/cc/test/test_gles2_interface.cc |
@@ -275,16 +275,18 @@ void TestGLES2Interface::WaitAsyncTexImage2DCHROMIUM(GLenum target) { |
GLuint TestGLES2Interface::CreateImageCHROMIUM(GLsizei width, |
GLsizei height, |
- GLenum internalformat) { |
- return test_context_->createImageCHROMIUM(width, height, internalformat); |
+ GLenum internalformat, |
+ GLenum usage) { |
+ return test_context_->createImageCHROMIUM( |
+ width, height, internalformat, usage); |
} |
void TestGLES2Interface::DestroyImageCHROMIUM(GLuint image_id) { |
test_context_->destroyImageCHROMIUM(image_id); |
} |
-void* TestGLES2Interface::MapImageCHROMIUM(GLuint image_id, GLenum access) { |
- return test_context_->mapImageCHROMIUM(image_id, access); |
+void* TestGLES2Interface::MapImageCHROMIUM(GLuint image_id) { |
+ return test_context_->mapImageCHROMIUM(image_id); |
} |
void TestGLES2Interface::GetImageParameterivCHROMIUM(GLuint image_id, |