diff options
author | Pauli Nieminen <[email protected]> | 2010-02-08 11:49:10 +0200 |
---|---|---|
committer | Pauli Nieminen <[email protected]> | 2010-02-09 21:38:47 +0200 |
commit | 9e587dbd78bdcf8608bce7cb3dcd05d9527b641e (patch) | |
tree | 0c327f583ed3858fd3a880cb755855265a8bd602 /src/mesa/drivers/dri/r200 | |
parent | 653a83445f94620673f747a4ace6847a2c7fdb4d (diff) |
r200: Fix UMS notto emit stp.
Polgon stipples are handled by kernel in UMS. Mark the
state as never to be emited for UMS.
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_state_init.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_state_init.c b/src/mesa/drivers/dri/r200/r200_state_init.c index e06437bd502..16065530093 100644 --- a/src/mesa/drivers/dri/r200/r200_state_init.c +++ b/src/mesa/drivers/dri/r200/r200_state_init.c @@ -894,7 +894,10 @@ void r200InitState( r200ContextPtr rmesa ) } } - ALLOC_STATE( stp, polygon_stipple, STP_STATE_SIZE, "STP/stp", 0 ); + if (rmesa->radeon.radeonScreen->kernel_mm) + ALLOC_STATE( stp, polygon_stipple, STP_STATE_SIZE, "STP/stp", 0 ); + else + ALLOC_STATE( stp, never, STP_STATE_SIZE, "STP/stp", 0 ); for (i = 0; i < 6; i++) if (rmesa->radeon.radeonScreen->kernel_mm) |