util: silence MSVC signed/unsigned comparison warnings
authorBrian Paul <brianp@vmware.com>
Wed, 23 Jan 2013 00:46:13 +0000 (17:46 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 25 Jan 2013 22:41:39 +0000 (15:41 -0700)
Reviewed-by: José Fonseca <jfonseca@vmware.com>
src/gallium/auxiliary/util/u_tile.h

index abcd402c8c4d0b7cd460c2a4897b7e1e93471ef4..9e8194459c3646198fa2f3ff7cfd43369e7a7387 100644 (file)
@@ -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;
 }