diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-10-29 13:05:31 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-10-29 13:05:31 +0100 |
commit | d070edd4f085b5b3ad8256f6cabeee53267328de (patch) | |
tree | eccbe05921b7f08a63e714c9ec02d5be5e2cff50 /src/mesa | |
parent | bdd883863186b1b03ba03809ef44f88f432b6d96 (diff) |
mesa: Fix windows build (uint -> GLuint).
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/api_loopback.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/main/api_loopback.c b/src/mesa/main/api_loopback.c index bd8de8542c..be8716bb8c 100644 --- a/src/mesa/main/api_loopback.c +++ b/src/mesa/main/api_loopback.c @@ -1470,25 +1470,25 @@ loopback_VertexAttribI1uiv(GLuint index, const GLuint *v) } static void GLAPIENTRY -loopback_VertexAttribI4bv(uint index, const GLbyte *v) +loopback_VertexAttribI4bv(GLuint index, const GLbyte *v) { ATTRIBI_4I(index, v[0], v[1], v[2], v[3]); } static void GLAPIENTRY -loopback_VertexAttribI4sv(uint index, const GLshort *v) +loopback_VertexAttribI4sv(GLuint index, const GLshort *v) { ATTRIBI_4I(index, v[0], v[1], v[2], v[3]); } static void GLAPIENTRY -loopback_VertexAttribI4ubv(uint index, const GLubyte *v) +loopback_VertexAttribI4ubv(GLuint index, const GLubyte *v) { ATTRIBI_4UI(index, v[0], v[1], v[2], v[3]); } static void GLAPIENTRY -loopback_VertexAttribI4usv(uint index, const GLushort *v) +loopback_VertexAttribI4usv(GLuint index, const GLushort *v) { ATTRIBI_4UI(index, v[0], v[1], v[2], v[3]); } |