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

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: address review comments Created 5 years, 3 months 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
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 c97eed8d482de51b20be10fec2ca8a4bc812d5f5..b43a0b924c0fc212283bcd1238a3efe3fbca85b0 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1682,6 +1682,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 {
@@ -2956,6 +2971,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,
},
};

Powered by Google App Engine
This is Rietveld 408576698