From: Christian Gmeiner Date: Tue, 20 Feb 2018 19:47:18 +0000 (+0100) Subject: etnaviv: npot_tex_any_wrap needs one bit only X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e72062b66d9b646c0df269da5982b26237a77fab;p=mesa.git etnaviv: npot_tex_any_wrap needs one bit only Reduces size of struct etna_specs from 100 to 94 bytes. Signed-off-by: Christian Gmeiner Reviewed-by: Lucas Stach --- diff --git a/src/gallium/drivers/etnaviv/etnaviv_internal.h b/src/gallium/drivers/etnaviv/etnaviv_internal.h index b8d21864331..3424d8a7715 100644 --- a/src/gallium/drivers/etnaviv/etnaviv_internal.h +++ b/src/gallium/drivers/etnaviv/etnaviv_internal.h @@ -87,7 +87,7 @@ struct etna_specs { /* has BLT engine instead of RS */ unsigned use_blt : 1; /* can use any kind of wrapping mode on npot textures */ - unsigned npot_tex_any_wrap; + unsigned npot_tex_any_wrap : 1; /* number of bits per TS tile */ unsigned bits_per_tile; /* clear value for TS (dependent on bits_per_tile) */