| 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..8356a097b7483d251b30bb15104589e2201f100e 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,19 @@ void GLES2TraceImplementation::CopySubTextureCHROMIUM(GLenum target,
|
| gl_->CopySubTextureCHROMIUM(target, source_id, dest_id, xoffset, yoffset);
|
| }
|
|
|
| +void GLES2TraceImplementation::CopyCompressedTextureCHROMIUM(
|
| + GLenum target,
|
| + GLenum source_id,
|
| + GLenum dest_id,
|
| + GLenum internalformat,
|
| + GLenum dest_type,
|
| + GLsizei source_size) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu",
|
| + "GLES2Trace::CopyCompressedTextureCHROMIUM");
|
| + gl_->CopyCompressedTextureCHROMIUM(target, source_id, dest_id, internalformat,
|
| + dest_type, source_size);
|
| +}
|
| +
|
| void GLES2TraceImplementation::DrawArraysInstancedANGLE(GLenum mode,
|
| GLint first,
|
| GLsizei count,
|
|
|