| 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 e9d0e761a2115346de3cf217e34ad1badd202fcd..48b054facee0bc15519cad2d96630ed148ce4401 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -1730,6 +1730,12 @@ void GL_APIENTRY GLES2SwapBuffersWithDamageCHROMIUM(GLint x,
|
| GLint height) {
|
| gles2::GetGLContext()->SwapBuffersWithDamageCHROMIUM(x, y, width, height);
|
| }
|
| +void GL_APIENTRY GLES2SetDrawRectangleCHROMIUM(GLint x,
|
| + GLint y,
|
| + GLint width,
|
| + GLint height) {
|
| + gles2::GetGLContext()->SetDrawRectangleCHROMIUM(x, y, width, height);
|
| +}
|
|
|
| namespace gles2 {
|
|
|
| @@ -3038,6 +3044,10 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glSwapBuffersWithDamageCHROMIUM),
|
| },
|
| {
|
| + "glSetDrawRectangleCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(glSetDrawRectangleCHROMIUM),
|
| + },
|
| + {
|
| NULL, NULL,
|
| },
|
| };
|
|
|