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

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: removed enum, added GLStreamTextureImage : GLImage. 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
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 5cafe6e6920819e898ede8360929f3b470f72319..612fbc7ef7ad7a8b742122309994f4137844befb 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1009,6 +1009,13 @@ void GL_APIENTRY GLES2UniformMatrix4x3fv(GLint location,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix4x3fv(location, count, transpose, value);
}
+void GL_APIENTRY GLES2UniformMatrix4fvWithStreamTextureMatrixCHROMIUM(
+ GLint location,
+ GLboolean transpose,
+ const GLfloat* default_value) {
+ gles2::GetGLContext()->UniformMatrix4fvWithStreamTextureMatrixCHROMIUM(
+ location, transpose, default_value);
+}
void GL_APIENTRY GLES2UseProgram(GLuint program) {
gles2::GetGLContext()->UseProgram(program);
}
@@ -2452,6 +2459,11 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4x3fv),
},
{
+ "glUniformMatrix4fvWithStreamTextureMatrixCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glUniformMatrix4fvWithStreamTextureMatrixCHROMIUM),
+ },
+ {
"glUseProgram", reinterpret_cast<GLES2FunctionPointer>(glUseProgram),
},
{

Powered by Google App Engine
This is Rietveld 408576698