mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
s/unsigned/size_t/ (Matthias Hopf)
This commit is contained in:
parent
bbfd963f49
commit
8d287d0f5e
1 changed files with 3 additions and 3 deletions
|
|
@ -527,7 +527,7 @@ static GLubyte *
|
||||||
emit_DrawArrays_header_old( __GLXcontext * gc,
|
emit_DrawArrays_header_old( __GLXcontext * gc,
|
||||||
struct array_state_vector * arrays,
|
struct array_state_vector * arrays,
|
||||||
size_t * elements_per_request,
|
size_t * elements_per_request,
|
||||||
unsigned int * total_requests,
|
size_t * total_requests,
|
||||||
GLenum mode, GLsizei count )
|
GLenum mode, GLsizei count )
|
||||||
{
|
{
|
||||||
size_t command_size;
|
size_t command_size;
|
||||||
|
|
@ -640,7 +640,7 @@ emit_DrawArrays_old( GLenum mode, GLint first, GLsizei count )
|
||||||
|
|
||||||
GLubyte * pc;
|
GLubyte * pc;
|
||||||
size_t elements_per_request;
|
size_t elements_per_request;
|
||||||
unsigned total_requests = 0;
|
size_t total_requests = 0;
|
||||||
unsigned i;
|
unsigned i;
|
||||||
size_t total_sent = 0;
|
size_t total_sent = 0;
|
||||||
|
|
||||||
|
|
@ -770,7 +770,7 @@ emit_DrawElements_old( GLenum mode, GLsizei count, GLenum type,
|
||||||
|
|
||||||
GLubyte * pc;
|
GLubyte * pc;
|
||||||
size_t elements_per_request;
|
size_t elements_per_request;
|
||||||
unsigned total_requests = 0;
|
size_t total_requests = 0;
|
||||||
unsigned i;
|
unsigned i;
|
||||||
unsigned req;
|
unsigned req;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue