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