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_pt_vsplit_tmp.h | |
parent | a115a29153540bc8f8fbb2b99cd078e6b417c741 (diff) |
draw: silence MSVC signed/unsigned comparison warnings
Reviewed-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h')
-rw-r--r-- | src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h b/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h index 98a4668efb7..75cbec87bed 100644 --- a/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h +++ b/src/gallium/auxiliary/draw/draw_pt_vsplit_tmp.h @@ -71,7 +71,7 @@ CONCAT(vsplit_primitive_, ELT_TYPE)(struct vsplit_frontend *vsplit, if (max_index - min_index > icount - 1) return FALSE; - if (elt_bias < 0 && min_index < -elt_bias) + if (elt_bias < 0 && (int) min_index < -elt_bias) return FALSE; /* why this check? */ @@ -158,19 +158,19 @@ CONCAT(vsplit_segment_cache_, ELT_TYPE)(struct vsplit_frontend *vsplit, } else { if (spoken) { - if (ib[ispoken] < -ibias) + if ((int) ib[ispoken] < -ibias) return; ADD_CACHE(vsplit, ib[ispoken] + ibias); } for (i = spoken; i < icount; i++) { - if (ib[istart + i] < -ibias) + if ((int) ib[istart + i] < -ibias) return; ADD_CACHE(vsplit, ib[istart + i] + ibias); } if (close) { - if (ib[iclose] < -ibias) + if ((int) ib[iclose] < -ibias) return; ADD_CACHE(vsplit, ib[iclose] + ibias); } |