mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 11:18:08 +02:00
util: fix MSVC signed/unsigned comparison warning in u_vbuf.c code
Reviewed-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
parent
a0785544e3
commit
ba7bfdeff2
1 changed files with 1 additions and 1 deletions
|
|
@ -98,7 +98,7 @@ struct u_vbuf {
|
||||||
/* Vertex buffers for the driver.
|
/* Vertex buffers for the driver.
|
||||||
* There are no user buffers. */
|
* There are no user buffers. */
|
||||||
struct pipe_vertex_buffer real_vertex_buffer[PIPE_MAX_ATTRIBS];
|
struct pipe_vertex_buffer real_vertex_buffer[PIPE_MAX_ATTRIBS];
|
||||||
int nr_real_vertex_buffers;
|
unsigned nr_real_vertex_buffers;
|
||||||
boolean vertex_buffers_dirty;
|
boolean vertex_buffers_dirty;
|
||||||
|
|
||||||
/* The index buffer. */
|
/* The index buffer. */
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue