| Index: gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| diff --git a/gpu/command_buffer/client/gles2_c_lib_autogen.h b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| index 7eb7a0ea97055a57e537df579d1ade2474f88597..ea4253d235c11584c3e37c0c1e90f936fee2105a 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -1387,6 +1387,9 @@ void GLES2ScheduleOverlayPlaneCHROMIUM(GLint plane_z_order,
|
| void GLES2SwapInterval(GLint interval) {
|
| gles2::GetGLContext()->SwapInterval(interval);
|
| }
|
| +GLenum GLES2GetGraphicsResetStatusKHR() {
|
| + return gles2::GetGLContext()->GetGraphicsResetStatusKHR();
|
| +}
|
| void GLES2MatrixLoadfCHROMIUM(GLenum matrixMode, const GLfloat* m) {
|
| gles2::GetGLContext()->MatrixLoadfCHROMIUM(matrixMode, m);
|
| }
|
| @@ -2612,6 +2615,10 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glSwapInterval),
|
| },
|
| {
|
| + "glGetGraphicsResetStatusKHR",
|
| + reinterpret_cast<GLES2FunctionPointer>(glGetGraphicsResetStatusKHR),
|
| + },
|
| + {
|
| "glMatrixLoadfCHROMIUM",
|
| reinterpret_cast<GLES2FunctionPointer>(glMatrixLoadfCHROMIUM),
|
| },
|
|
|