| Index: mojo/gpu/mojo_gles2_impl_autogen.cc
|
| diff --git a/mojo/gpu/mojo_gles2_impl_autogen.cc b/mojo/gpu/mojo_gles2_impl_autogen.cc
|
| index 3ee22aef22b085bc9ff6aac26dc34558eb8b2197..ca017553391fe194aeac841cdc2675e24adc1fd1 100644
|
| --- a/mojo/gpu/mojo_gles2_impl_autogen.cc
|
| +++ b/mojo/gpu/mojo_gles2_impl_autogen.cc
|
| @@ -1115,6 +1115,15 @@ void MojoGLES2Impl::UniformMatrix4x3fv(GLint location,
|
| const GLfloat* value) {
|
| NOTREACHED() << "Unimplemented UniformMatrix4x3fv.";
|
| }
|
| +void MojoGLES2Impl::UniformMatrix4fvWithCustomMatrixCHROMIUM(
|
| + GLint location,
|
| + GLenum custom_matrix,
|
| + GLboolean transpose,
|
| + const GLfloat* default_value) {
|
| + MojoGLES2MakeCurrent(context_);
|
| + glUniformMatrix4fvWithCustomMatrixCHROMIUM(location, custom_matrix, transpose,
|
| + default_value);
|
| +}
|
| void MojoGLES2Impl::UseProgram(GLuint program) {
|
| MojoGLES2MakeCurrent(context_);
|
| glUseProgram(program);
|
|
|