diff options
author | Brian Paul <[email protected]> | 2012-10-16 18:32:57 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-10-17 10:13:30 -0600 |
commit | f03191048668ebcda56053f4c908e1ac0d98edd0 (patch) | |
tree | 5c259704e79c8451355512e9e6204e296b491e52 /src/gallium/auxiliary/draw/draw_pipe_stipple.c | |
parent | a115a29153540bc8f8fbb2b99cd078e6b417c741 (diff) |
draw: silence MSVC signed/unsigned comparison warnings
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pipe_stipple.c')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pipe_stipple.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_stipple.c b/src/gallium/auxiliary/draw/draw_pipe_stipple.c index 4b3f4e7ae11..d97e52be09b 100644 --- a/src/gallium/auxiliary/draw/draw_pipe_stipple.c +++ b/src/gallium/auxiliary/draw/draw_pipe_stipple.c @@ -73,7 +73,7 @@ screen_interp( struct draw_context *draw, const struct vertex_header *v1 ) { uint attr; - int num_outputs = draw_current_shader_outputs(draw); + uint num_outputs = draw_current_shader_outputs(draw); for (attr = 0; attr < num_outputs; attr++) { const float *val0 = v0->data[attr]; const float *val1 = v1->data[attr]; |