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 b274a6b439cc74d3c183cc50a9a679c441b46841..8cb59a9cdbecfa6f6fd149df421a4cc62f2f43af 100644 |
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h |
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h |
@@ -1704,6 +1704,21 @@ void GL_APIENTRY GLES2BlendBarrierKHR() { |
void GL_APIENTRY GLES2ApplyScreenSpaceAntialiasingCHROMIUM() { |
gles2::GetGLContext()->ApplyScreenSpaceAntialiasingCHROMIUM(); |
} |
+void GL_APIENTRY GLES2BindFragDataLocationIndexedEXT(GLuint program, |
+ GLuint colorNumber, |
+ GLuint index, |
+ const char* name) { |
+ gles2::GetGLContext()->BindFragDataLocationIndexedEXT(program, colorNumber, |
+ index, name); |
+} |
+void GL_APIENTRY GLES2BindFragDataLocationEXT(GLuint program, |
+ GLuint colorNumber, |
+ const char* name) { |
+ gles2::GetGLContext()->BindFragDataLocationEXT(program, colorNumber, name); |
+} |
+GLint GL_APIENTRY GLES2GetFragDataIndexEXT(GLuint program, const char* name) { |
+ return gles2::GetGLContext()->GetFragDataIndexEXT(program, name); |
+} |
namespace gles2 { |
@@ -2994,6 +3009,19 @@ extern const NameToFunc g_gles2_function_table[] = { |
glApplyScreenSpaceAntialiasingCHROMIUM), |
}, |
{ |
+ "glBindFragDataLocationIndexedEXT", |
+ reinterpret_cast<GLES2FunctionPointer>( |
+ glBindFragDataLocationIndexedEXT), |
+ }, |
+ { |
+ "glBindFragDataLocationEXT", |
+ reinterpret_cast<GLES2FunctionPointer>(glBindFragDataLocationEXT), |
+ }, |
+ { |
+ "glGetFragDataIndexEXT", |
+ reinterpret_cast<GLES2FunctionPointer>(glGetFragDataIndexEXT), |
+ }, |
+ { |
NULL, NULL, |
}, |
}; |