summaryrefslogtreecommitdiffstats
path: root/gpu
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-29 22:56:33 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-29 22:56:33 +0000
commit40ec4b5908d9acb1812cbcd748b9878bc6b05349 (patch)
treec575287ebbd0513e8c868739e0adf5cf3111db43 /gpu
parentea79efc4d7fd4c017b1887a9d488511ba85d1d6a (diff)
downloadchromium_src-40ec4b5908d9acb1812cbcd748b9878bc6b05349.zip
chromium_src-40ec4b5908d9acb1812cbcd748b9878bc6b05349.tar.gz
chromium_src-40ec4b5908d9acb1812cbcd748b9878bc6b05349.tar.bz2
Increased arbitrary ReadPixels size limit so pepper tests can pass.
TEST=trybots, npapi_pepper_test_plugin BUG=none Review URL: http://codereview.chromium.org/1575002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@43010 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r--gpu/command_buffer/service/gles2_cmd_decoder.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/gles2_cmd_decoder.cc b/gpu/command_buffer/service/gles2_cmd_decoder.cc
index 3bfc42b..fc44614 100644
--- a/gpu/command_buffer/service/gles2_cmd_decoder.cc
+++ b/gpu/command_buffer/service/gles2_cmd_decoder.cc
@@ -2891,7 +2891,7 @@ error::Error GLES2DecoderImpl::HandleReadPixels(
} else {
// TODO(gman): Get these values from the proper place.
max_width = 300;
- max_height = 150;
+ max_height = 300;
}
GLint max_x;