From: Brian Paul Date: Sat, 22 Jan 2011 23:53:16 +0000 (-0700) Subject: softpipe: use proper type for format field X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4e2c077879dce298aa0f2648cac1dba1fa5a58af;p=mesa.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 2220955b715..9bced37990a 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 */ };