| 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 d7a45ce1d95cc0b9dc4d7f0bb493361af2966aa8..c0b8403a61e6523f4a886b4b0b794d999967c248 100644
|
| --- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h
|
| @@ -2534,6 +2534,24 @@ void GLES2Implementation::CopyTextureCHROMIUM(GLenum target,
|
| CheckGLError();
|
| }
|
|
|
| +void GLES2Implementation::CopyCompressedTextureCHROMIUM(GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLenum internalformat,
|
| + GLenum dest_type) {
|
| + GPU_CLIENT_SINGLE_THREAD_CHECK();
|
| + GPU_CLIENT_LOG(
|
| + "[" << GetLogPrefix() << "] glCopyCompressedTextureCHROMIUM("
|
| + << GLES2Util::GetStringEnum(target) << ", "
|
| + << GLES2Util::GetStringEnum(source_id) << ", "
|
| + << GLES2Util::GetStringEnum(dest_id) << ", "
|
| + << GLES2Util::GetStringCompressedTextureFormat(internalformat) << ", "
|
| + << GLES2Util::GetStringPixelType(dest_type) << ")");
|
| + helper_->CopyCompressedTextureCHROMIUM(target, source_id, dest_id,
|
| + internalformat, dest_type);
|
| + CheckGLError();
|
| +}
|
| +
|
| void GLES2Implementation::GenValuebuffersCHROMIUM(GLsizei n, GLuint* buffers) {
|
| GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glGenValuebuffersCHROMIUM(" << n
|
| << ", " << static_cast<const void*>(buffers) << ")");
|
|
|