diff options
author | alexst@chromium.org <alexst@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-06 17:16:54 +0000 |
---|---|---|
committer | alexst@chromium.org <alexst@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-06 17:16:54 +0000 |
commit | d0eed26269fb7026938db68094e1e30077a044e5 (patch) | |
tree | 2971bd9c2bf6339437c729ea29295ce3a7ee8ce9 /cc/test/test_gles2_interface.cc | |
parent | 9af439a537208fc73a8b513c6f2440606890ad44 (diff) | |
download | chromium_src-d0eed26269fb7026938db68094e1e30077a044e5.zip chromium_src-d0eed26269fb7026938db68094e1e30077a044e5.tar.gz chromium_src-d0eed26269fb7026938db68094e1e30077a044e5.tar.bz2 |
Rearrange GLImage API to create them with a usage type
instead of using usage type while mapping the buffer.
BUG=
Review URL: https://codereview.chromium.org/255713008
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@268548 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/test/test_gles2_interface.cc')
-rw-r--r-- | cc/test/test_gles2_interface.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/cc/test/test_gles2_interface.cc b/cc/test/test_gles2_interface.cc index 732c8a2..26055ba 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, |