| 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 457ef6151439af27315e036da123a43efaf62fd8..28e6f4334372556d435a43a4e054b3318e406955 100644
|
| --- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| @@ -779,6 +779,16 @@ void GLES2TraceImplementation::TexParameteriv(GLenum target,
|
| gl_->TexParameteriv(target, pname, params);
|
| }
|
|
|
| +void GLES2TraceImplementation::TexStorage3D(GLenum target,
|
| + GLsizei levels,
|
| + GLenum internalFormat,
|
| + GLsizei width,
|
| + GLsizei height,
|
| + GLsizei depth) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::TexStorage3D");
|
| + gl_->TexStorage3D(target, levels, internalFormat, width, height, depth);
|
| +}
|
| +
|
| void GLES2TraceImplementation::TexSubImage2D(GLenum target,
|
| GLint level,
|
| GLint xoffset,
|
|
|