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 04ae3ae4dd1cf1549052a956ea94f5d44cb78c17..432abe7e611e98fc5432eb7ed2ff0b32e3df9388 100644 |
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc |
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc |
@@ -1884,5 +1884,22 @@ void MojoGLES2Impl::ApplyScreenSpaceAntialiasingCHROMIUM() { |
MojoGLES2MakeCurrent(context_); |
glApplyScreenSpaceAntialiasingCHROMIUM(); |
} |
+void MojoGLES2Impl::BindFragDataLocationIndexedEXT(GLuint program, |
+ GLuint colorNumber, |
+ GLuint index, |
+ const char* name) { |
+ MojoGLES2MakeCurrent(context_); |
+ glBindFragDataLocationIndexedEXT(program, colorNumber, index, name); |
+} |
+void MojoGLES2Impl::BindFragDataLocationEXT(GLuint program, |
+ GLuint colorNumber, |
+ const char* name) { |
+ MojoGLES2MakeCurrent(context_); |
+ glBindFragDataLocationEXT(program, colorNumber, name); |
+} |
+GLint MojoGLES2Impl::GetFragDataIndexEXT(GLuint program, const char* name) { |
+ MojoGLES2MakeCurrent(context_); |
+ return glGetFragDataIndexEXT(program, name); |
+} |
} // namespace mojo |