| Index: gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| index 562b12f437f443a6c5ed068e0f21d9de33e2c423..db5d667d6069f29efdd5c93291e0ec8ccebd05d4 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| @@ -3111,10 +3111,10 @@ void GLES2Implementation::GetTranslatedShaderSourceANGLE(GLuint shader,
|
| CheckGLError();
|
| }
|
| void GLES2Implementation::CopyTextureCHROMIUM(
|
| - GLenum source_id,
|
| + GLuint source_id,
|
| GLint source_level,
|
| GLenum dest_target,
|
| - GLenum dest_id,
|
| + GLuint dest_id,
|
| GLint dest_level,
|
| GLint internalformat,
|
| GLenum dest_type,
|
| @@ -3123,12 +3123,11 @@ void GLES2Implementation::CopyTextureCHROMIUM(
|
| GLboolean unpack_unmultiply_alpha) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| GPU_CLIENT_LOG(
|
| - "[" << GetLogPrefix() << "] glCopyTextureCHROMIUM("
|
| - << GLES2Util::GetStringEnum(source_id) << ", " << source_level << ", "
|
| - << GLES2Util::GetStringEnum(dest_target) << ", "
|
| - << GLES2Util::GetStringEnum(dest_id) << ", " << dest_level << ", "
|
| - << internalformat << ", " << GLES2Util::GetStringPixelType(dest_type)
|
| - << ", " << GLES2Util::GetStringBool(unpack_flip_y) << ", "
|
| + "[" << GetLogPrefix() << "] glCopyTextureCHROMIUM(" << source_id << ", "
|
| + << source_level << ", " << GLES2Util::GetStringEnum(dest_target)
|
| + << ", " << dest_id << ", " << dest_level << ", " << internalformat
|
| + << ", " << GLES2Util::GetStringPixelType(dest_type) << ", "
|
| + << GLES2Util::GetStringBool(unpack_flip_y) << ", "
|
| << GLES2Util::GetStringBool(unpack_premultiply_alpha) << ", "
|
| << GLES2Util::GetStringBool(unpack_unmultiply_alpha) << ")");
|
| helper_->CopyTextureCHROMIUM(source_id, source_level, dest_target, dest_id,
|
| @@ -3139,10 +3138,10 @@ void GLES2Implementation::CopyTextureCHROMIUM(
|
| }
|
|
|
| void GLES2Implementation::CopySubTextureCHROMIUM(
|
| - GLenum source_id,
|
| + GLuint source_id,
|
| GLint source_level,
|
| GLenum dest_target,
|
| - GLenum dest_id,
|
| + GLuint dest_id,
|
| GLint dest_level,
|
| GLint xoffset,
|
| GLint yoffset,
|
| @@ -3155,12 +3154,11 @@ void GLES2Implementation::CopySubTextureCHROMIUM(
|
| GLboolean unpack_unmultiply_alpha) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| GPU_CLIENT_LOG(
|
| - "[" << GetLogPrefix() << "] glCopySubTextureCHROMIUM("
|
| - << GLES2Util::GetStringEnum(source_id) << ", " << source_level << ", "
|
| - << GLES2Util::GetStringEnum(dest_target) << ", "
|
| - << GLES2Util::GetStringEnum(dest_id) << ", " << dest_level << ", "
|
| - << xoffset << ", " << yoffset << ", " << x << ", " << y << ", "
|
| - << width << ", " << height << ", "
|
| + "[" << GetLogPrefix() << "] glCopySubTextureCHROMIUM(" << source_id
|
| + << ", " << source_level << ", "
|
| + << GLES2Util::GetStringEnum(dest_target) << ", " << dest_id << ", "
|
| + << dest_level << ", " << xoffset << ", " << yoffset << ", " << x
|
| + << ", " << y << ", " << width << ", " << height << ", "
|
| << GLES2Util::GetStringBool(unpack_flip_y) << ", "
|
| << GLES2Util::GetStringBool(unpack_premultiply_alpha) << ", "
|
| << GLES2Util::GetStringBool(unpack_unmultiply_alpha) << ")");
|
| @@ -3179,12 +3177,11 @@ void GLES2Implementation::CopySubTextureCHROMIUM(
|
| CheckGLError();
|
| }
|
|
|
| -void GLES2Implementation::CompressedCopyTextureCHROMIUM(GLenum source_id,
|
| - GLenum dest_id) {
|
| +void GLES2Implementation::CompressedCopyTextureCHROMIUM(GLuint source_id,
|
| + GLuint dest_id) {
|
| GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glCompressedCopyTextureCHROMIUM("
|
| - << GLES2Util::GetStringEnum(source_id) << ", "
|
| - << GLES2Util::GetStringEnum(dest_id) << ")");
|
| + << source_id << ", " << dest_id << ")");
|
| helper_->CompressedCopyTextureCHROMIUM(source_id, dest_id);
|
| CheckGLError();
|
| }
|
|
|