| Index: gpu/GLES2/gl2extchromium.h
|
| diff --git a/gpu/GLES2/gl2extchromium.h b/gpu/GLES2/gl2extchromium.h
|
| index 8857625d00300e8f62f0aa20511c59e7bd57492d..f9edecb7f5d3595272e5e015a9683d6404819fd7 100644
|
| --- a/gpu/GLES2/gl2extchromium.h
|
| +++ b/gpu/GLES2/gl2extchromium.h
|
| @@ -1161,6 +1161,41 @@ typedef void(GL_APIENTRYP PFNGLPROGRAMPATHFRAGMENTINPUTGENCHROMIUMPROC)(
|
|
|
| #endif /* GL_CHROMIUM_path_rendering */
|
|
|
| +/* GL_EXT_blend_func_extended */
|
| +#ifndef GL_EXT_blend_func_extended
|
| +#define GL_EXT_blend_func_extended 1
|
| +
|
| +#ifdef GL_GLEXT_PROTOTYPES
|
| +GL_APICALL void GL_APIENTRY glBindFragDataLocationIndexedEXT(GLuint program,
|
| + GLuint colorNumber,
|
| + GLuint index,
|
| + const char* name);
|
| +GL_APICALL void GL_APIENTRY glBindFragDataLocationEXT(GLuint program,
|
| + GLuint colorNumber,
|
| + const char* name);
|
| +GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT(GLuint program,
|
| + const char* name);
|
| +#endif
|
| +
|
| +typedef void(GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONINDEXEDEXT)(
|
| + GLuint program,
|
| + GLuint colorNumber,
|
| + GLuint index,
|
| + const char* name);
|
| +typedef void(GL_APIENTRYP PFNGLBINDFRAGDATALOCATIONEXT)(GLuint program,
|
| + GLuint colorNumber,
|
| + const char* name);
|
| +typedef GLint(GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXT)(GLuint program,
|
| + const GLchar* name);
|
| +
|
| +#define GL_SRC_ALPHA_SATURATE_EXT 0x0308
|
| +#define GL_SRC1_ALPHA_EXT 0x8589 // OpenGL 1.5 token value
|
| +#define GL_SRC1_COLOR_EXT 0x88F9
|
| +#define GL_ONE_MINUS_SRC1_COLOR_EXT 0x88FA
|
| +#define GL_ONE_MINUS_SRC1_ALPHA_EXT 0x88FB
|
| +#define GL_MAX_DUAL_SOURCE_DRAW_BUFFERS_EXT 0x88FC
|
| +#endif /* GL_EXT_blend_func_extended */
|
| +
|
| #ifdef __cplusplus
|
| }
|
| #endif
|
|
|