From 85bbe889045aa434f71a3eb0ba8153b7d2cc5023 Mon Sep 17 00:00:00 2001 From: Maciej Cencora Date: Thu, 7 Aug 2008 07:06:46 -0700 Subject: Enable bicubic Xv on r3xx+. Still some buggies in the actual display, but looks pretty good. --- src/radeon_textured_video.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index 35b332b5..8fc380e1 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -204,7 +204,7 @@ RADEONPutImageTextured(ScrnInfoPtr pScrn, } /* Bicubic filter loading */ - if (!IS_R500_3D) + if (!IS_R500_3D && !IS_R300_3D) pPriv->bicubic_enabled = FALSE; if (pPriv->bicubic_memory == NULL && pPriv->bicubic_enabled) { pPriv->bicubic_offset = radeon_legacy_allocate_memory(pScrn, @@ -459,7 +459,7 @@ RADEONSetupImageTexturedVideo(ScreenPtr pScreen) pPriv->videoStatus = 0; pPriv->currentBuffer = 0; pPriv->doubleBuffer = 0; - pPriv->bicubic_enabled = (info->ChipFamily >= CHIP_FAMILY_RV515); + pPriv->bicubic_enabled = (info->ChipFamily >= CHIP_FAMILY_R300); /* gotta uninit this someplace, XXX: shouldn't be necessary for textured */ REGION_NULL(pScreen, &pPriv->clip); -- cgit v1.2.3