| Index: gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| index 811f0a138463cda4ac06186173d0d78ec46ec99c..9e6c461650cbbfca311879615036975c7e654ddf 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_passthrough_handlers_autogen.cc
|
| @@ -3677,7 +3677,9 @@ error::Error GLES2DecoderPassthroughImpl::HandleCopyTextureCHROMIUM(
|
| const volatile gles2::cmds::CopyTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CopyTextureCHROMIUM*>(cmd_data);
|
| GLenum source_id = static_cast<GLenum>(c.source_id);
|
| + GLint source_level = static_cast<GLint>(c.source_level);
|
| GLenum dest_id = static_cast<GLenum>(c.dest_id);
|
| + GLint dest_level = static_cast<GLint>(c.dest_level);
|
| GLint internalformat = static_cast<GLint>(c.internalformat);
|
| GLenum dest_type = static_cast<GLenum>(c.dest_type);
|
| GLboolean unpack_flip_y = static_cast<GLboolean>(c.unpack_flip_y);
|
| @@ -3686,8 +3688,8 @@ error::Error GLES2DecoderPassthroughImpl::HandleCopyTextureCHROMIUM(
|
| GLboolean unpack_unmultiply_alpha =
|
| static_cast<GLboolean>(c.unpack_unmultiply_alpha);
|
| error::Error error = DoCopyTextureCHROMIUM(
|
| - source_id, dest_id, internalformat, dest_type, unpack_flip_y,
|
| - unpack_premultiply_alpha, unpack_unmultiply_alpha);
|
| + source_id, source_level, dest_id, dest_level, internalformat, dest_type,
|
| + unpack_flip_y, unpack_premultiply_alpha, unpack_unmultiply_alpha);
|
| if (error != error::kNoError) {
|
| return error;
|
| }
|
| @@ -3701,7 +3703,9 @@ error::Error GLES2DecoderPassthroughImpl::HandleCopySubTextureCHROMIUM(
|
| *static_cast<const volatile gles2::cmds::CopySubTextureCHROMIUM*>(
|
| cmd_data);
|
| GLenum source_id = static_cast<GLenum>(c.source_id);
|
| + GLint source_level = static_cast<GLint>(c.source_level);
|
| GLenum dest_id = static_cast<GLenum>(c.dest_id);
|
| + GLint dest_level = static_cast<GLint>(c.dest_level);
|
| GLint xoffset = static_cast<GLint>(c.xoffset);
|
| GLint yoffset = static_cast<GLint>(c.yoffset);
|
| GLint x = static_cast<GLint>(c.x);
|
| @@ -3714,8 +3718,9 @@ error::Error GLES2DecoderPassthroughImpl::HandleCopySubTextureCHROMIUM(
|
| GLboolean unpack_unmultiply_alpha =
|
| static_cast<GLboolean>(c.unpack_unmultiply_alpha);
|
| error::Error error = DoCopySubTextureCHROMIUM(
|
| - source_id, dest_id, xoffset, yoffset, x, y, width, height, unpack_flip_y,
|
| - unpack_premultiply_alpha, unpack_unmultiply_alpha);
|
| + source_id, source_level, dest_id, dest_level, xoffset, yoffset, x, y,
|
| + width, height, unpack_flip_y, unpack_premultiply_alpha,
|
| + unpack_unmultiply_alpha);
|
| if (error != error::kNoError) {
|
| return error;
|
| }
|
|
|