From 286f7aa18f19bd21b263701adab38b736dbeda0f Mon Sep 17 00:00:00 2001 From: Corbin Simpson Date: Thu, 31 Jul 2008 17:01:44 -0700 Subject: Enable bicubic filtering for all r5xx HW. --- src/radeon_textured_video.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index aee081fc..cc13933b 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -389,9 +389,9 @@ RADEONSetTexPortAttribute(ScrnInfoPtr pScrn, RADEON_SYNC(info, pScrn); if (attribute == xvBicubic) - /* -1 -> set default (disable for RV515 and punier) */ + /* -1 -> set default */ pPriv->bicubic_enabled = (value == -1) ? - (info->ChipFamily == CHIP_FAMILY_R580) : value; + (info->ChipFamily >= CHIP_FAMILY_RV515) : value; else return BadMatch; @@ -454,7 +454,7 @@ RADEONSetupImageTexturedVideo(ScreenPtr pScreen) pPriv->videoStatus = 0; pPriv->currentBuffer = 0; pPriv->doubleBuffer = 0; - pPriv->bicubic_enabled = (info->ChipFamily == CHIP_FAMILY_R580); + pPriv->bicubic_enabled = (info->ChipFamily >= CHIP_FAMILY_RV515); /* gotta uninit this someplace, XXX: shouldn't be necessary for textured */ REGION_NULL(pScreen, &pPriv->clip); -- cgit v1.2.3