From: Brian Paul Date: Sat, 22 Jan 2011 23:53:16 +0000 (-0700) Subject: softpipe: use proper type for format field X-Git-Tag: mesa-7.11-rc1~2568 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e2c077879dce298aa0f2648cac1dba1fa5a58af;p=platform%2Fupstream%2Fmesa.git softpipe: use proper type for format field --- diff --git a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h index 2220955..9bced37 100644 --- a/src/gallium/drivers/softpipe/sp_tex_tile_cache.h +++ b/src/gallium/drivers/softpipe/sp_tex_tile_cache.h @@ -92,7 +92,7 @@ struct softpipe_tex_tile_cache unsigned swizzle_g; unsigned swizzle_b; unsigned swizzle_a; - unsigned format; + enum pipe_format format; struct softpipe_tex_cached_tile *last_tile; /**< most recently retrieved tile */ };