summaryrefslogtreecommitdiff
path: root/src/mesa/drivers
diff options
context:
space:
mode:
authorPauli Nieminen <suokkos@gmail.com>2009-08-29 21:04:40 +0300
committerPauli Nieminen <suokkos@gmail.com>2009-08-29 21:05:22 +0300
commite48dc9c5edb0f001bf7252ee2294d36707aa066c (patch)
tree974c30b8ba59e5187ddf0cf58c5a381f76439383 /src/mesa/drivers
parent9c0ab1fa850fdbc8a64a29c1e996579dabc84bdc (diff)
r300: Disable threshold register for KMS.
Kernel side doesn't have required register in safe list so can't send it kernel.
Diffstat (limited to 'src/mesa/drivers')
-rw-r--r--src/mesa/drivers/dri/r300/r300_cmdbuf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r300/r300_cmdbuf.c b/src/mesa/drivers/dri/r300/r300_cmdbuf.c
index e1047beb6e..451f1fd0fa 100644
--- a/src/mesa/drivers/dri/r300/r300_cmdbuf.c
+++ b/src/mesa/drivers/dri/r300/r300_cmdbuf.c
@@ -685,9 +685,10 @@ void r300InitCmdBuf(r300ContextPtr r300)
ALLOC_STATE(rb3d_aaresolve_ctl, always, 2, 0);
r300->hw.rb3d_aaresolve_ctl.cmd[0] = cmdpacket0(r300->radeon.radeonScreen, R300_RB3D_AARESOLVE_CTL, 1);
if ((r300->radeon.radeonScreen->chip_family >= CHIP_FAMILY_RV515) ||
+ ( !r300->radeon.radeonScreen->kernel_mm && (
(r300->radeon.radeonScreen->chip_family == CHIP_FAMILY_RS400) ||
(r300->radeon.radeonScreen->chip_family == CHIP_FAMILY_RV410) ||
- (r300->radeon.radeonScreen->chip_family == CHIP_FAMILY_R420)) {
+ (r300->radeon.radeonScreen->chip_family == CHIP_FAMILY_R420) ) ) ) {
ALLOC_STATE(rb3d_discard_src_pixel_lte_threshold, always, 3, 0);
} else {
ALLOC_STATE(rb3d_discard_src_pixel_lte_threshold, never, 3, 0);