From: Jose Maria Casanova Crespo Date: Tue, 12 Jun 2018 12:52:14 +0000 (+0200) Subject: intel/fs: use uint type for per_slot_offset at GS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6706b421f042c9cc0d8c7d20e974791674acab2b;p=mesa.git intel/fs: use uint type for per_slot_offset at GS This helps us to compact original instruction: mul(8) g3<1>D g6<8,8,1>UD 0x00000006UD { align1 1Q }; So now we emit: mul(8) g3<1>UD g6<8,8,1>UD 0x00000006UD { align1 1Q compacted }; Reviewed-by: Samuel Iglesias Gonsálvez --- diff --git a/src/intel/compiler/brw_fs_visitor.cpp b/src/intel/compiler/brw_fs_visitor.cpp index 0ca230e888c..cd2abbb5960 100644 --- a/src/intel/compiler/brw_fs_visitor.cpp +++ b/src/intel/compiler/brw_fs_visitor.cpp @@ -602,7 +602,7 @@ fs_visitor::emit_urb_writes(const fs_reg &gs_vertex_count) per_slot_offsets = brw_imm_ud(output_vertex_size_owords * gs_vertex_count.ud); } else { - per_slot_offsets = vgrf(glsl_type::int_type); + per_slot_offsets = vgrf(glsl_type::uint_type); bld.MUL(per_slot_offsets, gs_vertex_count, brw_imm_ud(output_vertex_size_owords)); }