util: int/unsigned changes to silence some MSVC warnings 60/7160/1
authorBrian Paul <brianp@vmware.com>
Wed, 26 Jun 2013 15:26:42 +0000 (09:26 -0600)
committerBrian Paul <brianp@vmware.com>
Wed, 26 Jun 2013 16:42:59 +0000 (10:42 -0600)
src/gallium/auxiliary/util/u_slab.c
src/gallium/auxiliary/util/u_staging.c

index f9f5ef6..dbdebc6 100644 (file)
@@ -55,7 +55,7 @@ static void util_slab_add_new_page(struct util_slab_mempool *pool)
 {
    struct util_slab_page *page;
    struct util_slab_block *block;
-   int i;
+   unsigned i;
 
    page = MALLOC(pool->page_size);
    insert_at_tail(&pool->list, page);
index b5e3793..b569c8f 100644 (file)
@@ -84,7 +84,7 @@ util_staging_transfer_init(struct pipe_context *pipe,
    if (usage & PIPE_TRANSFER_READ)
    {
       /* XXX this looks wrong dst is always the same but looping over src z? */
-      unsigned zi;
+      int zi;
       struct pipe_box sbox;
       sbox.x = box->x;
       sbox.y = box->y;
@@ -111,7 +111,7 @@ util_staging_transfer_destroy(struct pipe_context *pipe, struct pipe_transfer *p
    {
       if(tx->base.usage & PIPE_TRANSFER_WRITE) {
          /* XXX this looks wrong src is always the same but looping over dst z? */
-         unsigned zi;
+         int zi;
          struct pipe_box sbox;
          sbox.x = 0;
          sbox.y = 0;