diff options
author | Brian Paul <[email protected]> | 2013-03-20 10:56:47 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-03-21 09:24:35 -0600 |
commit | b2d3f364dbc6fe1d506224534dc48f58d9dcbaba (patch) | |
tree | b2cbd84d8b3d19fd6795c189da287d67252d550f /src/gallium/drivers/softpipe/sp_context.h | |
parent | 2e3200d4636d61c936bdacf6752b82dd39c96dcb (diff) |
softpipe: silence some MSVC signed/unsigned warnings
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index ed38bacc416..d78352ab630 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -87,7 +87,7 @@ struct softpipe_context { struct pipe_index_buffer index_buffer; struct draw_so_target *so_targets[PIPE_MAX_SO_BUFFERS]; - int num_so_targets; + unsigned num_so_targets; struct pipe_query_data_so_statistics so_stats; unsigned num_primitives_generated; |