| Index: gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| index e344414e87c7cc88be16ca91cb88110918ce3883..3c3eeb79cd9ef62413cfeb67d9ce46a489fb1eef 100644
|
| --- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| @@ -1893,6 +1893,18 @@ void GLES2TraceImplementation::CopySubTextureCHROMIUM(GLenum target,
|
| gl_->CopySubTextureCHROMIUM(target, source_id, dest_id, xoffset, yoffset);
|
| }
|
|
|
| +void GLES2TraceImplementation::CompressedCopyTextureCHROMIUM(
|
| + GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLenum internalformat,
|
| + GLsizei source_size) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu",
|
| + "GLES2Trace::CompressedCopyTextureCHROMIUM");
|
| + gl_->CompressedCopyTextureCHROMIUM(target, source_id, dest_id, internalformat,
|
| + source_size);
|
| +}
|
| +
|
| void GLES2TraceImplementation::DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
|
|