diff options
author | reveman@chromium.org <reveman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-25 21:56:45 +0000 |
---|---|---|
committer | reveman@chromium.org <reveman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-11-25 21:56:45 +0000 |
commit | 9af66e09bc44f0ca9fb09963e89f8250b18c7bfd (patch) | |
tree | 79b509aea1667d04708d997387662a684a1e81d3 /gpu/command_buffer/build_gles2_cmd_buffer.py | |
parent | 3866929df9915f659854b574ff4af024502d430e (diff) | |
download | chromium_src-9af66e09bc44f0ca9fb09963e89f8250b18c7bfd.zip chromium_src-9af66e09bc44f0ca9fb09963e89f8250b18c7bfd.tar.gz chromium_src-9af66e09bc44f0ca9fb09963e89f8250b18c7bfd.tar.bz2 |
gpu: Don't put BindBuffer commands with PIXEL_UNPACK_TRANSFER_BUFFER target in command buffer.
The service side is not aware of the PIXEL_UNPACK_TRANSFER_BUFFER_CHROMIUM
target and will produce an error when processing BindBuffer commands
with this target.
BUG=162500
TEST=manual
Review URL: https://chromiumcodereview.appspot.com/11419152
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@169398 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/build_gles2_cmd_buffer.py')
-rwxr-xr-x | gpu/command_buffer/build_gles2_cmd_buffer.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gpu/command_buffer/build_gles2_cmd_buffer.py b/gpu/command_buffer/build_gles2_cmd_buffer.py index 33690bf..55f4458 100755 --- a/gpu/command_buffer/build_gles2_cmd_buffer.py +++ b/gpu/command_buffer/build_gles2_cmd_buffer.py @@ -1159,6 +1159,7 @@ _FUNCTION_INFO = { 'type': 'Bind', 'decoder_func': 'DoBindBuffer', 'gen_func': 'GenBuffersARB', + 'impl_func': False, }, 'BindFramebuffer': { 'type': 'Bind', |