From: Marek Olšák Date: Thu, 7 Nov 2019 23:02:06 +0000 (-0500) Subject: nir: move data.descriptor_set above data.index for better packing X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ec7d37c9c08d6b91f64e0b0f57c816903e53b1eb;p=mesa.git nir: move data.descriptor_set above data.index for better packing 4 bytes down Reviewed-by: Connor Abbott --- diff --git a/src/compiler/nir/nir.h b/src/compiler/nir/nir.h index 31d611a620d..29ef2ce0d7d 100644 --- a/src/compiler/nir/nir.h +++ b/src/compiler/nir/nir.h @@ -437,14 +437,14 @@ typedef struct nir_variable { enum gl_access_qualifier access:8; /** - * output index for dual source blending. + * Descriptor set binding for sampler or UBO. */ - unsigned index; + unsigned descriptor_set:5; /** - * Descriptor set binding for sampler or UBO. + * output index for dual source blending. */ - unsigned descriptor_set:5; + unsigned index; /** * Initial binding point for a sampler or UBO.