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 8f817e3b15fe5cfed6ebb12baeff924cb45efdae..2b2538a422231e8969b948b7df77683facbda9c6 100644 |
--- a/mojo/gpu/mojo_gles2_impl_autogen.cc |
+++ b/mojo/gpu/mojo_gles2_impl_autogen.cc |
@@ -1909,5 +1909,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 |