Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(196)

Unified Diff: gpu/command_buffer/service/gles2_cmd_decoder_autogen.h

Issue 1131273005: Fine tune vertex attrib commands handling. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: working Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/vertex_attrib_manager.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
}
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/vertex_attrib_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698