diff options
author | Brian Paul <[email protected]> | 2013-01-22 17:46:13 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-01-25 15:41:39 -0700 |
commit | 257783b939a54d567a4cc2ce8422e10f65ffc3ee (patch) | |
tree | 5bc60f313db1406762cebe1de739d24dac5c98d5 /src/gallium/auxiliary/util | |
parent | 539541f2e25e8b34da7513f1e920e5eddfa314a0 (diff) |
util: silence MSVC signed/unsigned comparison warnings
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/util')
-rw-r--r-- | src/gallium/auxiliary/util/u_tile.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gallium/auxiliary/util/u_tile.h b/src/gallium/auxiliary/util/u_tile.h index abcd402c8c4..9e8194459c3 100644 --- a/src/gallium/auxiliary/util/u_tile.h +++ b/src/gallium/auxiliary/util/u_tile.h @@ -45,13 +45,13 @@ struct pipe_transfer; static INLINE boolean u_clip_tile(uint x, uint y, uint *w, uint *h, const struct pipe_box *box) { - if (x >= box->width) + if ((int) x >= box->width) return TRUE; - if (y >= box->height) + if ((int) y >= box->height) return TRUE; - if (x + *w > box->width) + if ((int) (x + *w) > box->width) *w = box->width - x; - if (y + *h > box->height) + if ((int) (y + *h) > box->height) *h = box->height - y; return FALSE; } |