diff options
| author | Brian Paul <brianp@vmware.com> | 2009-01-13 10:38:15 -0700 | 
|---|---|---|
| committer | Brian Paul <brianp@vmware.com> | 2009-01-14 08:34:06 -0700 | 
| commit | d911e3e24fbfb5cd28cabb92f952775b7eb1d1d9 (patch) | |
| tree | 3578802c5d3f02c890f5c1ad042aa3593d3ce3d0 | |
| parent | 658ab3c3ae4c99e841a6639f6d012c23deeb5371 (diff) | |
i965: fix indentation
| -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      */ | 
