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 980a514dc7487859f35bf89d746b93a97401db10..129423ea02e34177a1d9900808ca95e352ee2335 100644 |
--- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h |
@@ -1630,11 +1630,11 @@ void GLES2Implementation::TexImageIOSurface2DCHROMIUM( |
void GLES2Implementation::CopyTextureCHROMIUM( |
GLenum target, GLenum source_id, GLenum dest_id, GLint level, |
- GLint internalformat) { |
+ GLint internalformat, GLint dest_type) { |
GPU_CLIENT_SINGLE_THREAD_CHECK(); |
- GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glCopyTextureCHROMIUM(" << GLES2Util::GetStringEnum(target) << ", " << GLES2Util::GetStringEnum(source_id) << ", " << GLES2Util::GetStringEnum(dest_id) << ", " << level << ", " << internalformat << ")"); // NOLINT |
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glCopyTextureCHROMIUM(" << GLES2Util::GetStringEnum(target) << ", " << GLES2Util::GetStringEnum(source_id) << ", " << GLES2Util::GetStringEnum(dest_id) << ", " << level << ", " << internalformat << ", " << dest_type << ")"); // NOLINT |
helper_->CopyTextureCHROMIUM( |
- target, source_id, dest_id, level, internalformat); |
+ target, source_id, dest_id, level, internalformat, dest_type); |
CheckGLError(); |
} |