From: Brian Paul Date: Wed, 21 Jul 2010 15:17:47 +0000 (-0600) Subject: gallivm: added comment X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=890976e02d9b75c0814493901ffddb64092ea548;p=mesa.git gallivm: added comment --- diff --git a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c index 670c9747c0a..05f63526ee5 100644 --- a/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c +++ b/src/gallium/auxiliary/gallivm/lp_bld_tgsi_soa.c @@ -481,6 +481,12 @@ emit_fetch( } if (reg->Register.Indirect) { + /* + * Compute addr_vec: a vector of offsets into the register file + * from which we need to gather elements. Recall that the ADDR + * register's elements can all be different. + */ + LLVMTypeRef int_vec_type = lp_build_int_vec_type(bld->base.type); unsigned swizzle = tgsi_util_get_src_register_swizzle( ®->Indirect, chan_index );