Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Unified Diff: gpu/command_buffer/client/gles2_c_lib_autogen.h

Issue 1309743005: command_buffer: Implement EXT_blend_func_extended (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@new-05-path-fragment-input-gen
Patch Set: rebase Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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,
},
};
« no previous file with comments | « gpu/command_buffer/build_gles2_cmd_buffer.py ('k') | gpu/command_buffer/client/gles2_cmd_helper_autogen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698