util: fix swizzle of INSTANCEID system value
authorNicolai Hähnle <nicolai.haehnle@amd.com>
Fri, 7 Apr 2017 10:23:11 +0000 (12:23 +0200)
committerNicolai Hähnle <nicolai.haehnle@amd.com>
Fri, 7 Apr 2017 22:44:52 +0000 (00:44 +0200)
radeonsi added stricter checking for correct swizzles in debug builds.

Reported-by: Michel Dänzer <michel.daenzer@amd.com>
Fixes: 4cf29427770f ("radeonsi: support 64-bit system values")
Reviewed-by: Marek Olšák <marek.olsak@amd.com>
src/gallium/auxiliary/util/u_simple_shaders.c

index 7342b3d33e621c1c0d960a2dcea0081870a78168..613ec4ab98f288d1783729ec8f1d3bee15e308c0 100644 (file)
@@ -119,7 +119,7 @@ void *util_make_layered_clear_vertex_shader(struct pipe_context *pipe)
 
          "MOV OUT[0], IN[0]\n"
          "MOV OUT[1], IN[1]\n"
-         "MOV OUT[2], SV[0]\n"
+         "MOV OUT[2].x, SV[0].xxxx\n"
          "END\n";
    struct tgsi_token tokens[1000];
    struct pipe_shader_state state;