| 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 3f3fe78311572f138b70648014065d7707f03f07..70579e6a1a0355bf61a1a35fde2784e1edda83b8 100644
|
| --- a/gpu/command_buffer/common/gles2_cmd_format_autogen.h
|
| +++ b/gpu/command_buffer/common/gles2_cmd_format_autogen.h
|
| @@ -15723,18 +15723,18 @@ struct UniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate {
|
|
|
| void Init(GLint _location,
|
| GLboolean _transpose,
|
| - const GLfloat* _default_value) {
|
| + const GLfloat* _post_transform) {
|
| SetHeader();
|
| location = _location;
|
| transpose = _transpose;
|
| - memcpy(ImmediateDataAddress(this), _default_value, ComputeDataSize());
|
| + memcpy(ImmediateDataAddress(this), _post_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* _post_transform) {
|
| + static_cast<ValueType*>(cmd)->Init(_location, _transpose, _post_transform);
|
| const uint32_t size = ComputeSize();
|
| return NextImmediateCmdAddressTotalSize<ValueType>(cmd, size);
|
| }
|
|
|