mesa: Branch 'master'

Brian Paul brianp at kemper.freedesktop.org
Thu Jan 4 14:53:52 UTC 2007


 src/glx/x11/indirect_vertex_array.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

New commits:
diff-tree 8d287d0f5e18246a3c8fbad6101ac32b4eaf6c32 (from bbfd963f492683dc359b7e3f8fcb7ceb2483f886)
Author: Brian <brian at yutani.localnet.net>
Date:   Thu Jan 4 07:53:32 2007 -0700

    s/unsigned/size_t/ (Matthias Hopf)

diff --git a/src/glx/x11/indirect_vertex_array.c b/src/glx/x11/indirect_vertex_array.c
index 429b52a..1855547 100644
--- a/src/glx/x11/indirect_vertex_array.c
+++ b/src/glx/x11/indirect_vertex_array.c
@@ -527,7 +527,7 @@ static GLubyte *
 emit_DrawArrays_header_old( __GLXcontext * gc,
 			    struct array_state_vector * arrays,
 			    size_t * elements_per_request,
-			    unsigned int * total_requests,
+			    size_t * total_requests,
 			    GLenum mode, GLsizei count )
 {
     size_t command_size;
@@ -640,7 +640,7 @@ emit_DrawArrays_old( GLenum mode, GLint 
 
     GLubyte * pc;
     size_t elements_per_request;
-    unsigned total_requests = 0;
+    size_t total_requests = 0;
     unsigned i;
     size_t total_sent = 0;
 
@@ -770,7 +770,7 @@ emit_DrawElements_old( GLenum mode, GLsi
 
     GLubyte * pc;
     size_t elements_per_request;
-    unsigned total_requests = 0;
+    size_t total_requests = 0;
     unsigned i;
     unsigned req;
 



More information about the mesa-commit mailing list