Index: gpu/command_buffer/common/gles2_cmd_format_autogen.h |
diff --git a/gpu/command_buffer/common/gles2_cmd_format_autogen.h b/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
index 97bbb547e886b05728193a28aedce736fdeed133..d17adc6e7eeafb9957dad5b52a4927c32123805d 100644 |
--- a/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
+++ b/gpu/command_buffer/common/gles2_cmd_format_autogen.h |
@@ -15552,20 +15552,18 @@ struct UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate { |
void SetHeader() { header.SetCmdByTotalSize<ValueType>(ComputeSize()); } |
- void Init(GLint _location, |
- GLboolean _transpose, |
- const GLfloat* _default_value) { |
+ void Init(GLint _location, GLboolean _transpose, const GLfloat* _transform) { |
SetHeader(); |
location = _location; |
transpose = _transpose; |
- memcpy(ImmediateDataAddress(this), _default_value, ComputeDataSize()); |
+ memcpy(ImmediateDataAddress(this), _transform, ComputeDataSize()); |
} |
void* Set(void* cmd, |
GLint _location, |
GLboolean _transpose, |
- const GLfloat* _default_value) { |
- static_cast<ValueType*>(cmd)->Init(_location, _transpose, _default_value); |
+ const GLfloat* _transform) { |
+ static_cast<ValueType*>(cmd)->Init(_location, _transpose, _transform); |
const uint32_t size = ComputeSize(); |
return NextImmediateCmdAddressTotalSize<ValueType>(cmd, size); |
} |