| Index: gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| index 1e30865884e393f5e5ef3c0016c19cf83426afdf..cc4a9fd180b9a4a783a85065499316850aa18c67 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| @@ -4571,6 +4571,7 @@ error::Error GLES2DecoderImpl::HandleCopyTextureCHROMIUM(
|
| *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_target = static_cast<GLenum>(c.dest_target);
|
| 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);
|
| @@ -4590,8 +4591,8 @@ error::Error GLES2DecoderImpl::HandleCopyTextureCHROMIUM(
|
| "dest_type");
|
| return error::kNoError;
|
| }
|
| - DoCopyTextureCHROMIUM(source_id, source_level, dest_id, dest_level,
|
| - internalformat, dest_type, unpack_flip_y,
|
| + DoCopyTextureCHROMIUM(source_id, source_level, dest_target, dest_id,
|
| + dest_level, internalformat, dest_type, unpack_flip_y,
|
| unpack_premultiply_alpha, unpack_unmultiply_alpha);
|
| return error::kNoError;
|
| }
|
| @@ -4604,6 +4605,7 @@ error::Error GLES2DecoderImpl::HandleCopySubTextureCHROMIUM(
|
| cmd_data);
|
| GLenum source_id = static_cast<GLenum>(c.source_id);
|
| GLint source_level = static_cast<GLint>(c.source_level);
|
| + GLenum dest_target = static_cast<GLenum>(c.dest_target);
|
| 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);
|
| @@ -4627,9 +4629,10 @@ error::Error GLES2DecoderImpl::HandleCopySubTextureCHROMIUM(
|
| "height < 0");
|
| return error::kNoError;
|
| }
|
| - DoCopySubTextureCHROMIUM(source_id, source_level, dest_id, dest_level,
|
| - xoffset, yoffset, x, y, width, height, unpack_flip_y,
|
| - unpack_premultiply_alpha, unpack_unmultiply_alpha);
|
| + DoCopySubTextureCHROMIUM(source_id, source_level, dest_target, dest_id,
|
| + dest_level, xoffset, yoffset, x, y, width, height,
|
| + unpack_flip_y, unpack_premultiply_alpha,
|
| + unpack_unmultiply_alpha);
|
| return error::kNoError;
|
| }
|
|
|
|
|