diff options
| author | Cooper Yuan <cooperyuan@gmail.com> | 2009-05-31 16:41:19 +0800 | 
|---|---|---|
| committer | Cooper Yuan <cooperyuan@gmail.com> | 2009-05-31 16:41:19 +0800 | 
| commit | 377d8b3673571eae4b23798a13e03929e1e47957 (patch) | |
| tree | e7e2b004243b82a9d6d8e342200f360aed5a13bf /src | |
| parent | d8694cd3f69dfc40509544293aa35f297571e878 (diff) | |
R6xx/r7xx: Fix texture perspective gradients issue
Diffstat (limited to 'src')
| -rw-r--r-- | src/mesa/drivers/dri/r600/r700_state.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/src/mesa/drivers/dri/r600/r700_state.c b/src/mesa/drivers/dri/r600/r700_state.c index 768e184623..d1f77ef6ef 100644 --- a/src/mesa/drivers/dri/r600/r700_state.c +++ b/src/mesa/drivers/dri/r600/r700_state.c @@ -216,8 +216,8 @@ static void r700InvalidateState(GLcontext * ctx, GLuint new_state) //-----------          SETbit(r700->PA_CL_VTE_CNTL.u32All, VTX_W0_FMT_bit); -        CLEARbit(r700->SPI_PS_IN_CONTROL_0.u32All, PERSP_GRADIENT_ENA_bit); -        SETbit(r700->SPI_PS_IN_CONTROL_0.u32All, LINEAR_GRADIENT_ENA_bit); +        SETbit(r700->SPI_PS_IN_CONTROL_0.u32All, PERSP_GRADIENT_ENA_bit); +        CLEARbit(r700->SPI_PS_IN_CONTROL_0.u32All, LINEAR_GRADIENT_ENA_bit);      }      else      { @@ -227,8 +227,8 @@ static void r700InvalidateState(GLcontext * ctx, GLuint new_state) //-----------          SETbit(r700->PA_CL_VTE_CNTL.u32All, VTX_W0_FMT_bit); -        SETbit(r700->SPI_PS_IN_CONTROL_0.u32All, PERSP_GRADIENT_ENA_bit); -        CLEARbit(r700->SPI_PS_IN_CONTROL_0.u32All, LINEAR_GRADIENT_ENA_bit); +        CLEARbit(r700->SPI_PS_IN_CONTROL_0.u32All, PERSP_GRADIENT_ENA_bit); +        SETbit(r700->SPI_PS_IN_CONTROL_0.u32All, LINEAR_GRADIENT_ENA_bit);      }  	context->radeon.NewGLState |= new_state; | 
