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..64470bd0c5a4c8656dc4203a321d59e94dbef968 100644 |
--- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h |
+++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h |
@@ -5031,13 +5031,12 @@ GLES2DecoderImpl::HandleUniformMatrix4fvStreamTextureMatrixCHROMIUMImmediate( |
if (data_size > immediate_data_size) { |
return error::kOutOfBounds; |
} |
- const GLfloat* default_value = |
+ const GLfloat* transform = |
GetImmediateDataAs<const GLfloat*>(c, data_size, immediate_data_size); |
- if (default_value == NULL) { |
+ if (transform == NULL) { |
return error::kOutOfBounds; |
} |
- DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(location, transpose, |
- default_value); |
+ DoUniformMatrix4fvStreamTextureMatrixCHROMIUM(location, transpose, transform); |
return error::kNoError; |
} |