| Index: gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| diff --git a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| index b56ae2cd647f768e35ddddbe6e20039794e7cc11..1c49a67e20c11dfe2e22cce6cef7ed4d9850cf58 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| @@ -5031,13 +5031,13 @@ GLES2DecoderImpl::HandleUniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate(
|
| if (data_size > immediate_data_size) {
|
| return error::kOutOfBounds;
|
| }
|
| - const GLfloat* default_value =
|
| + const GLfloat* post_transform =
|
| GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size);
|
| - if (default_value == NULL) {
|
| + if (post_transform == NULL) {
|
| return error::kOutOfBounds;
|
| }
|
| DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(location, transpose,
|
| - default_value);
|
| + post_transform);
|
| return error::kNoError;
|
| }
|
|
|
|
|