diff options
| -rw-r--r-- | src/mesa/drivers/dri/i965/brw_sf.c | 11 | 
1 files changed, 6 insertions, 5 deletions
| diff --git a/src/mesa/drivers/dri/i965/brw_sf.c b/src/mesa/drivers/dri/i965/brw_sf.c index 9dce6cd8e6..1a11d54621 100644 --- a/src/mesa/drivers/dri/i965/brw_sf.c +++ b/src/mesa/drivers/dri/i965/brw_sf.c @@ -73,10 +73,12 @@ static void compile_sf_prog( struct brw_context *brw,  	 c.attr_to_idx[i] = idx;  	 c.idx_to_attr[idx] = i;  	 if (i >= VERT_RESULT_TEX0 && i <= VERT_RESULT_TEX7) { -		 c.point_attrs[i].CoordReplace =  -			brw->attribs.Point->CoordReplace[i - VERT_RESULT_TEX0]; -	 } else -		 c.point_attrs[i].CoordReplace = GL_FALSE; +            c.point_attrs[i].CoordReplace =  +               brw->attribs.Point->CoordReplace[i - VERT_RESULT_TEX0]; +	 } +         else { +            c.point_attrs[i].CoordReplace = GL_FALSE; +         }  	 idx++;        } @@ -106,7 +108,6 @@ static void compile_sf_prog( struct brw_context *brw,        assert(0);        return;     } -	      /* get the program      */ | 
