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

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: added enum, removed count parameter. 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..2df7369cf3e59e5926818dff85f2a490c5c855df 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1009,6 +1009,14 @@ void GL_APIENTRY GLES2UniformMatrix4x3fv(GLint location,
const GLfloat* value) {
gles2::GetGLContext()->UniformMatrix4x3fv(location, count, transpose, value);
}
+void GL_APIENTRY
+GLES2UniformMatrix4fvWithCustomMatrixCHROMIUM(GLint location,
+ GLenum custom_matrix,
+ GLboolean transpose,
+ const GLfloat* default_value) {
+ gles2::GetGLContext()->UniformMatrix4fvWithCustomMatrixCHROMIUM(
+ location, custom_matrix, transpose, default_value);
+}
void GL_APIENTRY GLES2UseProgram(GLuint program) {
gles2::GetGLContext()->UseProgram(program);
}
@@ -2452,6 +2460,11 @@ extern const NameToFunc g_gles2_function_table[] = {
reinterpret_cast<GLES2FunctionPointer>(glUniformMatrix4x3fv),
},
{
+ "glUniformMatrix4fvWithCustomMatrixCHROMIUM",
+ reinterpret_cast<GLES2FunctionPointer>(
+ glUniformMatrix4fvWithCustomMatrixCHROMIUM),
+ },
+ {
"glUseProgram", reinterpret_cast<GLES2FunctionPointer>(glUseProgram),
},
{

Powered by Google App Engine
This is Rietveld 408576698