diff options
author | Cooper Yuan <[email protected]> | 2009-07-02 16:52:11 +0800 |
---|---|---|
committer | Cooper Yuan <[email protected]> | 2009-07-02 16:52:11 +0800 |
commit | c571395e5d768b46bef511d89af641d55cd2ad98 (patch) | |
tree | 8b0bbc949fb0b6b02bc5ee8a8c884518ccd5bf86 /src/mesa/drivers/dri/r600/r700_state.c | |
parent | da88333671b35851bd713d0de464887e00d70593 (diff) |
R6xx/r7xx: Fix line width issue, ROUND_MODE and QUANT_MODE aren't bits of LINE_CNTL
Diffstat (limited to 'src/mesa/drivers/dri/r600/r700_state.c')
-rw-r--r-- | src/mesa/drivers/dri/r600/r700_state.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_state.c b/src/mesa/drivers/dri/r600/r700_state.c index a98ffedba06..d251b99b875 100644 --- a/src/mesa/drivers/dri/r600/r700_state.c +++ b/src/mesa/drivers/dri/r600/r700_state.c @@ -1115,10 +1115,6 @@ void r700InitState(GLcontext * ctx) //------------------- /* Set up line control */ SETfield(r700->PA_SU_LINE_CNTL.u32All, 0x8, PA_SU_LINE_CNTL__WIDTH_shift, PA_SU_LINE_CNTL__WIDTH_mask); - SETfield(r700->PA_SU_LINE_CNTL.u32All, 0x2, - PA_SU_VTX_CNTL__ROUND_MODE_shift, PA_SU_VTX_CNTL__ROUND_MODE_mask); - SETfield(r700->PA_SU_LINE_CNTL.u32All, 0x5, - QUANT_MODE_shift, QUANT_MODE_mask); r700->PA_SC_LINE_CNTL.u32All = 0; CLEARbit(r700->PA_SC_LINE_CNTL.u32All, EXPAND_LINE_WIDTH_bit); |