| 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 5cafe6e6920819e898ede8360929f3b470f72319..27c792c4b15703b553a622a663c2877865c22f24 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -1009,6 +1009,15 @@ void GL_APIENTRY GLES2UniformMatrix4x3fv(GLint location,
|
| const GLfloat* value) {
|
| gles2::GetGLContext()->UniformMatrix4x3fv(location, count, transpose, value);
|
| }
|
| +void GL_APIENTRY
|
| +GLES2UniformMatrix4fvWithCustomMatrixCHROMIUM(GLint location,
|
| + GLsizei count,
|
| + GLint custom_matrix_id,
|
| + GLboolean transpose,
|
| + const GLfloat* default_value) {
|
| + gles2::GetGLContext()->UniformMatrix4fvWithCustomMatrixCHROMIUM(
|
| + location, count, custom_matrix_id, transpose, default_value);
|
| +}
|
| void GL_APIENTRY GLES2UseProgram(GLuint program) {
|
| gles2::GetGLContext()->UseProgram(program);
|
| }
|
| @@ -2452,6 +2461,11 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4x3fv),
|
| },
|
| {
|
| + "glUniformMatrix4fvWithCustomMatrixCHROMIUM",
|
| + reinterpret_cast<GLES2FunctionPointer>(
|
| + glUniformMatrix4fvWithCustomMatrixCHROMIUM),
|
| + },
|
| + {
|
| "glUseProgram", reinterpret_cast<GLES2FunctionPointer>(glUseProgram),
|
| },
|
| {
|
|
|