g3dvl: Bad semantic index in shader decl.
authorYounes Manton <younes.m@gmail.com>
Mon, 22 Sep 2008 16:13:23 +0000 (12:13 -0400)
committerYounes Manton <younes.m@gmail.com>
Sat, 4 Oct 2008 17:12:09 +0000 (13:12 -0400)
src/gallium/state_trackers/g3dvl/vl_r16snorm_mc_buf.c

index 888f0040bf7052a487e0e477bcbd533249fdba0f..62107803ac06c8ac799fae2dc0b42f84b8501646 100644 (file)
@@ -974,7 +974,7 @@ static int vlCreateFragmentShaderIMB
         */
        for (i = 0; i < 3; ++i)
        {
-               decl = vl_decl_interpolated_input(TGSI_SEMANTIC_GENERIC, 1, i, i, TGSI_INTERPOLATE_LINEAR);
+               decl = vl_decl_interpolated_input(TGSI_SEMANTIC_GENERIC, i + 1, i, i, TGSI_INTERPOLATE_LINEAR);
                ti += tgsi_build_full_declaration(&decl, &tokens[ti], header, max_tokens - ti);
        }
 
@@ -1186,7 +1186,7 @@ static int vlCreateVertexShaderFieldPMB
         */
        for (i = 0; i < 7; i++)
        {
-               decl = vl_decl_output((i == 0 || i == 6) ? TGSI_SEMANTIC_POSITION : TGSI_SEMANTIC_GENERIC, i, i, i);
+               decl = vl_decl_output(i == 0 ? TGSI_SEMANTIC_POSITION : TGSI_SEMANTIC_GENERIC, i, i, i);
                ti += tgsi_build_full_declaration(&decl, &tokens[ti], header, max_tokens - ti);
        }
 
@@ -1668,7 +1668,7 @@ static int vlCreateVertexShaderFieldBMB
         */
        for (i = 0; i < 9; i++)
        {
-               decl = vl_decl_output((i == 0 || i == 8) ? TGSI_SEMANTIC_POSITION : TGSI_SEMANTIC_GENERIC, i, i, i);
+               decl = vl_decl_output(i == 0 ? TGSI_SEMANTIC_POSITION : TGSI_SEMANTIC_GENERIC, i, i, i);
                ti += tgsi_build_full_declaration(&decl, &tokens[ti], header, max_tokens - ti);
        }