i965: Fix varying payload reg assignment for the non-GLSL-instructions path.
authorEric Anholt <eric@anholt.net>
Thu, 14 May 2009 17:56:32 +0000 (10:56 -0700)
committerEric Anholt <eric@anholt.net>
Thu, 14 May 2009 18:41:04 +0000 (11:41 -0700)
I don't have a testcase for this, but it seems clearly wrong.

src/mesa/drivers/dri/i965/brw_wm_pass2.c

index 08cac730c2981f8d9e2f64fd1c7618af4b1ad5a3..6faea018fbcddfa09c354c14845bd2848aa26a61 100644 (file)
@@ -69,7 +69,6 @@ static void prealloc_reg(struct brw_wm_compile *c,
  */
 static void init_registers( struct brw_wm_compile *c )
 {
-   struct brw_context *brw = c->func.brw;
    GLuint nr_interp_regs = 0;
    GLuint i = 0;
    GLuint j;
@@ -85,15 +84,18 @@ static void init_registers( struct brw_wm_compile *c )
 
    for (j = 0; j < FRAG_ATTRIB_MAX; j++) {
       if (c->key.vp_outputs_written & (1<<j)) {
-        /* index for vs output and ps input are not the same 
-           in shader varying */
-        GLuint index;
-        if (j > FRAG_ATTRIB_VAR0)
-            index = j - (VERT_RESULT_VAR0 - FRAG_ATTRIB_VAR0);
+        int fp_index;
+
+        if (j >= VERT_RESULT_VAR0)
+           fp_index = j - (VERT_RESULT_VAR0 - FRAG_ATTRIB_VAR0);
+        else if (j <= VERT_RESULT_TEX7)
+           fp_index = j;
         else
-            index = j;
+           fp_index = -1;
+
         nr_interp_regs++;
-        prealloc_reg(c, &c->payload.input_interp[index], i++);
+        if (fp_index >= 0)
+           prealloc_reg(c, &c->payload.input_interp[fp_index], i++);
       }
    }