| 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 460db42e039e1b3488f29ff6e31960c515465e4f..555c999c7a33b488f26a0ec55ed05597cfd17b65 100644
|
| --- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| +++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
|
| @@ -1679,6 +1679,21 @@ GLenum GL_APIENTRY GLES2GetGraphicsResetStatusKHR() {
|
| void GL_APIENTRY GLES2BlendBarrierKHR() {
|
| gles2::GetGLContext()->BlendBarrierKHR();
|
| }
|
| +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 {
|
|
|
| @@ -2948,6 +2963,19 @@ extern const NameToFunc g_gles2_function_table[] = {
|
| reinterpret_cast<GLES2FunctionPointer>(glBlendBarrierKHR),
|
| },
|
| {
|
| + "glBindFragDataLocationIndexedEXT",
|
| + reinterpret_cast<GLES2FunctionPointer>(
|
| + glBindFragDataLocationIndexedEXT),
|
| + },
|
| + {
|
| + "glBindFragDataLocationEXT",
|
| + reinterpret_cast<GLES2FunctionPointer>(glBindFragDataLocationEXT),
|
| + },
|
| + {
|
| + "glGetFragDataIndexEXT",
|
| + reinterpret_cast<GLES2FunctionPointer>(glGetFragDataIndexEXT),
|
| + },
|
| + {
|
| NULL, NULL,
|
| },
|
| };
|
|
|