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

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

Issue 1559203003: Add GLStreamTextureImage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: s/GL_EXPORT/GPU_EXPORT for windows Created 4 years, 10 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
« 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 e35f6d13d0508900e65dbcb8cf015727ad8fed5a..1aa3cbde1f580bee666065f3ac898d4dca59bc87 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1712,6 +1712,13 @@ void GL_APIENTRY GLES2BindFragDataLocationEXT(GLuint program,
GLint GL_APIENTRY GLES2GetFragDataIndexEXT(GLuint program, const char* name) {
return gles2::GetGLContext()->GetFragDataIndexEXT(program, name);
}
+void GL_APIENTRY
+GLES2UniformMatrix4fvStreamTextureMatrixCHROMIUM(GLint location,
+ GLboolean transpose,
+ const GLfloat* default_value) {
+ gles2::GetGLContext()->UniformMatrix4fvStreamTextureMatrixCHROMIUM(
+ location, transpose, default_value);
+}
namespace gles2 {
@@ -3013,6 +3020,11 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glGetFragDataIndexEXT),
},
{
+ "glUniformMatrix4fvStreamTextureMatrixCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glUniformMatrix4fvStreamTextureMatrixCHROMIUM),
+ },
+ {
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