| 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 c68b8a54a16c71b0f3cdc3ae6d7c29e9fe2033b9..46cb85edc31fc83bcd8d46714d9376acb1411ca1 100644
|
| --- a/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| +++ b/gpu/command_buffer/service/gles2_cmd_decoder_autogen.h
|
| @@ -3948,7 +3948,7 @@ error::Error GLES2DecoderImpl::HandleVertexAttribI4i(
|
| GLint y = static_cast<GLint>(c.y);
|
| GLint z = static_cast<GLint>(c.z);
|
| GLint w = static_cast<GLint>(c.w);
|
| - glVertexAttribI4i(indx, x, y, z, w);
|
| + DoVertexAttribI4i(indx, x, y, z, w);
|
| return error::kNoError;
|
| }
|
|
|
| @@ -3973,7 +3973,7 @@ error::Error GLES2DecoderImpl::HandleVertexAttribI4ivImmediate(
|
| if (values == NULL) {
|
| return error::kOutOfBounds;
|
| }
|
| - glVertexAttribI4iv(indx, values);
|
| + DoVertexAttribI4iv(indx, values);
|
| return error::kNoError;
|
| }
|
|
|
| @@ -3990,7 +3990,7 @@ error::Error GLES2DecoderImpl::HandleVertexAttribI4ui(
|
| GLuint y = static_cast<GLuint>(c.y);
|
| GLuint z = static_cast<GLuint>(c.z);
|
| GLuint w = static_cast<GLuint>(c.w);
|
| - glVertexAttribI4ui(indx, x, y, z, w);
|
| + DoVertexAttribI4ui(indx, x, y, z, w);
|
| return error::kNoError;
|
| }
|
|
|
| @@ -4015,7 +4015,7 @@ error::Error GLES2DecoderImpl::HandleVertexAttribI4uivImmediate(
|
| if (values == NULL) {
|
| return error::kOutOfBounds;
|
| }
|
| - glVertexAttribI4uiv(indx, values);
|
| + DoVertexAttribI4uiv(indx, values);
|
| return error::kNoError;
|
| }
|
|
|
|
|