From: Eric Anholt Date: Thu, 13 Dec 2018 19:25:08 +0000 (-0800) Subject: Revert "intel: Simplify the half-float packing in image load/store lowering." X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3a417a044e9ce3ab2ee6f1647e9be24cf9d310f5;p=mesa.git Revert "intel: Simplify the half-float packing in image load/store lowering." This reverts commit 06fbcd2cd5cc5702c9039c26d20082a99bc157bf. nir_pack_half_2x16_split *isn't* vectorizable, it's 1-component only, thus why we had this split-scalar code in the first place. Reviewed-by: Jason Ekstrand --- diff --git a/src/intel/compiler/brw_nir_lower_image_load_store.c b/src/intel/compiler/brw_nir_lower_image_load_store.c index d1547c98c54..269dbf8e283 100644 --- a/src/intel/compiler/brw_nir_lower_image_load_store.c +++ b/src/intel/compiler/brw_nir_lower_image_load_store.c @@ -544,8 +544,14 @@ convert_color_for_store(nir_builder *b, const struct gen_device_info *devinfo, break; case ISL_SFLOAT: - if (image.bits[0] == 16) - color = nir_pack_half_2x16_split(b, color, nir_imm_float(b, 0)); + if (image.bits[0] == 16) { + nir_ssa_def *f16comps[4]; + for (unsigned i = 0; i < image.chans; i++) { + f16comps[i] = nir_pack_half_2x16_split(b, nir_channel(b, color, i), + nir_imm_float(b, 0)); + } + color = nir_vec(b, f16comps, image.chans); + } break; case ISL_UINT: