Revert "st/glsl_to_tgsi: don't increase immediate index by 1."
authorDave Airlie <airlied@redhat.com>
Tue, 5 Jul 2016 00:22:21 +0000 (10:22 +1000)
committerDave Airlie <airlied@redhat.com>
Tue, 5 Jul 2016 00:25:29 +0000 (10:25 +1000)
This reverts commit 27d456cc87a01998c6fe1dbf45937e2ca6128495.

DOH, what seems right and what is right with fp64 are always
two different things.

This regressed:
spec@arb_gpu_shader_fp64@shader_storage@layout-std140-fp64-mixed-shader
on radeonsi

Reported-by: Michel Dänzer <michel@daenzer.net>
Cc: "11.2 12.0" <mesa-stable@lists.freedesktop.org>
Signed-off-by: Dave Airlie <airlied@redhat.com>
src/mesa/state_tracker/st_glsl_to_tgsi.cpp

index 6d08c58a00d90c7324f1b0dafe1a0f1f768017c0..197b3af8c046f752db046d7fc016a1ae80f0ee54 100644 (file)
@@ -816,7 +816,7 @@ glsl_to_tgsi_visitor::emit_asm(ir_instruction *ir, unsigned op,
 
             if (glsl_base_type_is_64bit(dinst->src[j].type)) {
                dinst->src[j].index = initial_src_idx[j];
-               if (swz > 1 && dinst->src[j].file != PROGRAM_IMMEDIATE) {
+               if (swz > 1) {
                   dinst->src[j].double_reg2 = true;
                   dinst->src[j].index++;
               }