r600g/llvm: Workaround for wrong tex.offset_*
authorVincent Lejeune <vljn@ovi.com>
Wed, 3 Apr 2013 19:19:22 +0000 (21:19 +0200)
committerVincent Lejeune <vljn@ovi.com>
Thu, 4 Apr 2013 14:03:04 +0000 (16:03 +0200)
src/gallium/drivers/r600/r600_shader.c

index d24d8e7..a5d224f 100644 (file)
@@ -511,6 +511,9 @@ static unsigned r600_tex_from_byte_stream(struct r600_shader_ctx *ctx,
        tex.src_sel_y = G_SQ_TEX_WORD2_SRC_SEL_Y(word2);
        tex.src_sel_z = G_SQ_TEX_WORD2_SRC_SEL_Z(word2);
        tex.src_sel_w = G_SQ_TEX_WORD2_SRC_SEL_W(word2);
+       tex.offset_x <<= 1;
+       tex.offset_y <<= 1;
+       tex.offset_z <<= 1;
 
        tex.inst_mod = 0;