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

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

Issue 1818073002: Always apply UniformMatrix4fvStreamTextureMatrixCHROMIUM matrix argument. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 67f1e055def71ca49ceb48196c96f189df3d4456..7336fd4dbae945320176b0b2067a96f7d5d3da6a 100644
--- a/gpu/command_buffer/client/gles2_c_lib_autogen.h
+++ b/gpu/command_buffer/client/gles2_c_lib_autogen.h
@@ -1715,12 +1715,12 @@ 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) {
+void GL_APIENTRY GLES2UniformMatrix4fvStreamTextureMatrixCHROMIUM(
+ GLint location,
+ GLboolean transpose,
+ const GLfloat* post_transform) {
gles2::GetGLContext()->UniformMatrix4fvStreamTextureMatrixCHROMIUM(
- location, transpose, default_value);
+ location, transpose, post_transform);
}
namespace gles2 {

Powered by Google App Engine
This is Rietveld 408576698