diff options
author | Dave Airlie <airlied@redhat.com> | 2011-02-20 21:57:32 (GMT) |
---|---|---|
committer | Dave Airlie <airlied@redhat.com> | 2011-02-23 00:14:00 (GMT) |
commit | 45e4039c3aea597ede44a264cea322908cdedfe9 (patch) | |
tree | 1b04ad9bf5d0c98f2b39264a8674b0fcc0e2ffb6 /drivers/gpu/drm/radeon | |
parent | 40f2a2fabbeffa4d47c3d904b8c94a0adb07acce (diff) | |
download | linux-45e4039c3aea597ede44a264cea322908cdedfe9.tar.xz |
drm/radeon: fix regression with AA resolve checking
Some userspaces can emit a whole packet without disabling AA resolve
by the looks of it, so we have to deal with them.
Signed-off-by: Dave Airlie <airlied@redhat.com>
Tested-by: Jorg Otte <jrg.otte@googlemail.com>
Diffstat (limited to 'drivers/gpu/drm/radeon')
-rw-r--r-- | drivers/gpu/drm/radeon/r100.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/r100.c b/drivers/gpu/drm/radeon/r100.c index be817f8..93fa735 100644 --- a/drivers/gpu/drm/radeon/r100.c +++ b/drivers/gpu/drm/radeon/r100.c @@ -3490,7 +3490,7 @@ void r100_cs_track_clear(struct radeon_device *rdev, struct r100_cs_track *track track->num_texture = 16; track->maxy = 4096; track->separate_cube = 0; - track->aaresolve = true; + track->aaresolve = false; track->aa.robj = NULL; } |