| 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 11693686c1bc7358277a10a8b7a02d57572d5612..5d4641fb5f385de0d186ad25ba02b438c6932338 100644
|
| --- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h
|
| @@ -822,6 +822,20 @@ void GLES2TraceImplementation::GetVertexAttribiv(GLuint index,
|
| gl_->GetVertexAttribiv(index, pname, params);
|
| }
|
|
|
| +void GLES2TraceImplementation::GetVertexAttribIiv(GLuint index,
|
| + GLenum pname,
|
| + GLint* params) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GetVertexAttribIiv");
|
| + gl_->GetVertexAttribIiv(index, pname, params);
|
| +}
|
| +
|
| +void GLES2TraceImplementation::GetVertexAttribIuiv(GLuint index,
|
| + GLenum pname,
|
| + GLuint* params) {
|
| + TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::GetVertexAttribIuiv");
|
| + gl_->GetVertexAttribIuiv(index, pname, params);
|
| +}
|
| +
|
| void GLES2TraceImplementation::GetVertexAttribPointerv(GLuint index,
|
| GLenum pname,
|
| void** pointer) {
|
|
|