| 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 b0e70227c5f5b4e7551c2e63965e55046d8546a8..fa2f5799cae41c7d5f95b989c84053ae85acbb1c 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| @@ -4569,10 +4569,10 @@ error::Error GLES2DecoderImpl::HandleCopyTextureCHROMIUM(
|
| const volatile void* cmd_data) {
|
| const volatile gles2::cmds::CopyTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CopyTextureCHROMIUM*>(cmd_data);
|
| - GLenum source_id = static_cast<GLenum>(c.source_id);
|
| + GLuint source_id = static_cast<GLuint>(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);
|
| + GLuint dest_id = static_cast<GLuint>(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);
|
| @@ -4603,10 +4603,10 @@ error::Error GLES2DecoderImpl::HandleCopySubTextureCHROMIUM(
|
| const volatile gles2::cmds::CopySubTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CopySubTextureCHROMIUM*>(
|
| cmd_data);
|
| - GLenum source_id = static_cast<GLenum>(c.source_id);
|
| + GLuint source_id = static_cast<GLuint>(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);
|
| + GLuint dest_id = static_cast<GLuint>(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);
|
| @@ -4642,8 +4642,8 @@ error::Error GLES2DecoderImpl::HandleCompressedCopyTextureCHROMIUM(
|
| const volatile gles2::cmds::CompressedCopyTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CompressedCopyTextureCHROMIUM*>(
|
| cmd_data);
|
| - GLenum source_id = static_cast<GLenum>(c.source_id);
|
| - GLenum dest_id = static_cast<GLenum>(c.dest_id);
|
| + GLuint source_id = static_cast<GLuint>(c.source_id);
|
| + GLuint dest_id = static_cast<GLuint>(c.dest_id);
|
| DoCompressedCopyTextureCHROMIUM(source_id, dest_id);
|
| return error::kNoError;
|
| }
|
|
|