From: Iago Toral Quiroga Date: Thu, 5 May 2016 10:58:19 +0000 (+0200) Subject: i965/fs: support doubles with shared variable loads X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8aa01ac596fc0722058e10808c8141533c3fd1fe;p=mesa.git i965/fs: support doubles with shared variable loads Reviewed-by: Kenneth Graunke Reviewed-by: Francisco Jerez --- diff --git a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp index 32128bb1025..6ab765d15a7 100644 --- a/src/mesa/drivers/dri/i965/brw_fs_nir.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs_nir.cpp @@ -3108,14 +3108,8 @@ fs_visitor::nir_emit_cs_intrinsic(const fs_builder &bld, } /* Read the vector */ - fs_reg read_result = emit_untyped_read(bld, surf_index, offset_reg, - 1 /* dims */, - instr->num_components, - BRW_PREDICATE_NONE); - read_result.type = dest.type; - for (int i = 0; i < instr->num_components; i++) - bld.MOV(offset(dest, bld, i), offset(read_result, bld, i)); - + do_untyped_vector_read(bld, dest, surf_index, offset_reg, + instr->num_components); break; }