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 699f99b1f08e28f07aad70f0c762858b70051656..627c90ef91c24ddfae44f696d0a722848e629e2b 100644 |
--- a/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
+++ b/gpu/command_buffer/client/gles2_trace_implementation_impl_autogen.h |
@@ -390,6 +390,16 @@ void GLES2TraceImplementation::DrawElements(GLenum mode, |
gl_->DrawElements(mode, count, type, indices); |
} |
+void GLES2TraceImplementation::DrawRangeElements(GLenum mode, |
+ GLuint start, |
+ GLuint end, |
+ GLsizei count, |
+ GLenum type, |
+ const void* indices) { |
+ TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::DrawRangeElements"); |
+ gl_->DrawRangeElements(mode, start, end, count, type, indices); |
+} |
+ |
void GLES2TraceImplementation::Enable(GLenum cap) { |
TRACE_EVENT_BINARY_EFFICIENT0("gpu", "GLES2Trace::Enable"); |
gl_->Enable(cap); |