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 e386b5147d3799d32827023ad56d90542c06f39e..37867994591f1739b559b5b0f3fa258848d631ce 100644 |
--- a/gpu/command_buffer/client/gles2_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_implementation_impl_autogen.h |
@@ -3195,6 +3195,18 @@ void GLES2Implementation::CopySubTextureCHROMIUM(GLenum target, |
CheckGLError(); |
} |
+void GLES2Implementation::CompressedCopyTextureCHROMIUM(GLenum target, |
+ GLenum source_id, |
+ GLenum dest_id) { |
+ GPU_CLIENT_SINGLE_THREAD_CHECK(); |
+ GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glCompressedCopyTextureCHROMIUM(" |
+ << GLES2Util::GetStringEnum(target) << ", " |
+ << GLES2Util::GetStringEnum(source_id) << ", " |
+ << GLES2Util::GetStringEnum(dest_id) << ")"); |
+ helper_->CompressedCopyTextureCHROMIUM(target, source_id, dest_id); |
+ CheckGLError(); |
+} |
+ |
void GLES2Implementation::GenValuebuffersCHROMIUM(GLsizei n, GLuint* buffers) { |
GPU_CLIENT_LOG("[" << GetLogPrefix() << "] glGenValuebuffersCHROMIUM(" << n |
<< ", " << static_cast<const void*>(buffers) << ")"); |