diff options
author | Zou Nan hai <[email protected]> | 2008-02-19 14:53:58 +0800 |
---|---|---|
committer | Zou Nan hai <[email protected]> | 2008-02-19 14:53:58 +0800 |
commit | d8c187fed78ef99bed47bf261464c8c31ed13302 (patch) | |
tree | 2c184bfb90747b2f10dfaeb74badbd50dec2e291 /src/mesa/drivers/dri/i965 | |
parent | 689ff273d18528ec12817124cfbc6a8159cd8497 (diff) |
fix compile for previous commit
Diffstat (limited to 'src/mesa/drivers/dri/i965')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_wm_pass2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_wm_pass2.c b/src/mesa/drivers/dri/i965/brw_wm_pass2.c index 766edc8dacc..6fca9ad220a 100644 --- a/src/mesa/drivers/dri/i965/brw_wm_pass2.c +++ b/src/mesa/drivers/dri/i965/brw_wm_pass2.c @@ -90,7 +90,7 @@ static void init_registers( struct brw_wm_compile *c ) in shader varying */ GLuint index; if (j > FRAG_ATTRIB_VAR0) - index = j - (VERT_RESULT_VAR0 - FRAG_ATTRIB_VAR0) + index = j - (VERT_RESULT_VAR0 - FRAG_ATTRIB_VAR0); else index = j; nr_interp_regs++; |