From: Brian Paul Date: Wed, 23 Jan 2013 00:46:13 +0000 (-0700) Subject: util: silence MSVC signed/unsigned comparison warnings X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=257783b939a54d567a4cc2ce8422e10f65ffc3ee;p=mesa.git util: silence MSVC signed/unsigned comparison warnings Reviewed-by: José Fonseca --- 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; }