u_surfaces: silence warning
authorLuca Barbieri <luca@luca-barbieri.com>
Sun, 18 Apr 2010 15:35:17 +0000 (17:35 +0200)
committerLuca Barbieri <luca@luca-barbieri.com>
Sun, 18 Apr 2010 15:35:17 +0000 (17:35 +0200)
src/gallium/auxiliary/util/u_surfaces.c

index 3a0539c..056b8f2 100644 (file)
@@ -68,7 +68,7 @@ util_surfaces_do_detach(struct util_surfaces *us, struct pipe_surface *ps)
    struct pipe_resource *pt = ps->texture;
    if(pt->target == PIPE_TEXTURE_3D || pt->target == PIPE_TEXTURE_CUBE)
    {   /* or 2D array */
-      unsigned key = ((ps->zslice + ps->face) << 8) | ps->level;
+      void* key = (void*)(((ps->zslice + ps->face) << 8) | ps->level);
       util_hash_table_remove(us->u.table, key);
    }
    else