| 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 9c6f95f3e278f70b5b914cfa89fc983b7373872b..d4eb37e7fcb6e444fa61275e4ed0ce2ed2845c5f 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
|
| @@ -3832,10 +3832,10 @@
|
| const volatile void* cmd_data) {
|
| const volatile gles2::cmds::CopyTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CopyTextureCHROMIUM*>(cmd_data);
|
| - GLuint source_id = static_cast<GLuint>(c.source_id);
|
| + 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);
|
| - GLuint dest_id = static_cast<GLuint>(c.dest_id);
|
| + 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);
|
| @@ -3860,10 +3860,10 @@
|
| const volatile gles2::cmds::CopySubTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CopySubTextureCHROMIUM*>(
|
| cmd_data);
|
| - GLuint source_id = static_cast<GLuint>(c.source_id);
|
| + 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);
|
| - GLuint dest_id = static_cast<GLuint>(c.dest_id);
|
| + 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);
|
| @@ -3892,8 +3892,8 @@
|
| const volatile gles2::cmds::CompressedCopyTextureCHROMIUM& c =
|
| *static_cast<const volatile gles2::cmds::CompressedCopyTextureCHROMIUM*>(
|
| cmd_data);
|
| - GLuint source_id = static_cast<GLuint>(c.source_id);
|
| - GLuint dest_id = static_cast<GLuint>(c.dest_id);
|
| + GLenum source_id = static_cast<GLenum>(c.source_id);
|
| + GLenum dest_id = static_cast<GLenum>(c.dest_id);
|
| error::Error error = DoCompressedCopyTextureCHROMIUM(source_id, dest_id);
|
| if (error != error::kNoError) {
|
| return error;
|
|
|