From: Henri Verbeet Date: Sat, 9 Jul 2011 15:18:59 +0000 (+0200) Subject: r600g: Fix the type of the family field in r600_pipe_context. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=949896b82f19f72333e7f6c132bd55e023f0170f;p=mesa.git r600g: Fix the type of the family field in r600_pipe_context. Signed-off-by: Henri Verbeet --- diff --git a/src/gallium/drivers/r600/r600_pipe.h b/src/gallium/drivers/r600/r600_pipe.h index c58c2f77743..b51fa24dfb2 100644 --- a/src/gallium/drivers/r600/r600_pipe.h +++ b/src/gallium/drivers/r600/r600_pipe.h @@ -175,7 +175,7 @@ struct r600_pipe_fences { struct r600_pipe_context { struct pipe_context context; struct blitter_context *blitter; - unsigned family; + enum radeon_family family; void *custom_dsa_flush; struct r600_screen *screen; struct radeon *radeon;