From: Jason Ekstrand Date: Wed, 25 Nov 2015 17:59:03 +0000 (-0800) Subject: i965/fs: Use UD type for offsets in VARYING_PULL_CONSTANT_LOAD X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=eb76f226cf0c3497caa1738efffa9c2e8b02201c;p=mesa.git i965/fs: Use UD type for offsets in VARYING_PULL_CONSTANT_LOAD --- diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp index cbaa8afcdcf..dc0bdba72c1 100644 --- a/src/mesa/drivers/dri/i965/brw_fs.cpp +++ b/src/mesa/drivers/dri/i965/brw_fs.cpp @@ -174,7 +174,7 @@ fs_visitor::VARYING_PULL_CONSTANT_LOAD(const fs_builder &bld, * CSE can later notice that those loads are all the same and eliminate * the redundant ones. */ - fs_reg vec4_offset = vgrf(glsl_type::int_type); + fs_reg vec4_offset = vgrf(glsl_type::uint_type); bld.ADD(vec4_offset, varying_offset, brw_imm_ud(const_offset & ~0xf)); int scale = 1;