summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
authorkaanb@chromium.org <kaanb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-05 03:17:21 +0000
committerkaanb@chromium.org <kaanb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-05 03:17:21 +0000
commit1d0ed36bb37f35138dd3d701ec9ebff99bc7127e (patch)
tree801b3dacf51fff324fa0d242518b6a347b89b516 /gpu
parentf2d22f38c49c91f1c6afaf0f9966129b950d5ebc (diff)
downloadchromium_src-1d0ed36bb37f35138dd3d701ec9ebff99bc7127e.zip
chromium_src-1d0ed36bb37f35138dd3d701ec9ebff99bc7127e.tar.gz
chromium_src-1d0ed36bb37f35138dd3d701ec9ebff99bc7127e.tar.bz2
gpu: Make getImageParameterivCHROMIUM actually call getImageParameterivCHROMIUMHelper instead of calling itself recursively
BUG=175012 Review URL: https://chromiumcodereview.appspot.com/16340003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@204143 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r--gpu/command_buffer/client/gles2_implementation.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gpu/command_buffer/client/gles2_implementation.cc b/gpu/command_buffer/client/gles2_implementation.cc
index b64c67b..cc4ca5b 100644
--- a/gpu/command_buffer/client/gles2_implementation.cc
+++ b/gpu/command_buffer/client/gles2_implementation.cc
@@ -3851,11 +3851,11 @@ void GLES2Implementation::GetImageParameterivCHROMIUM(
GLuint image_id, GLenum pname, GLint* params) {
GPU_CLIENT_SINGLE_THREAD_CHECK();
GPU_CLIENT_VALIDATE_DESTINATION_INITALIZATION(GLint, params);
- GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glMapImageCHROMIUM("
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glImageParameterivCHROMIUM("
<< image_id << ", "
<< GLES2Util::GetStringBufferParameter(pname) << ", "
<< static_cast<const void*>(params) << ")");
- GetImageParameterivCHROMIUM(image_id, pname, params);
+ GetImageParameterivCHROMIUMHelper(image_id, pname, params);
CheckGLError();
}