diff options
author | Corbin Simpson <MostAwesomeDude@gmail.com> | 2008-07-30 01:03:57 -0700 |
---|---|---|
committer | Alex Deucher <alexdeucher@gmail.com> | 2008-08-25 06:23:08 -0400 |
commit | 83b52473d0e7102265918b07be053fcda17a14b4 (patch) | |
tree | ade035091cc3fce6c350933ac60a41d4a8c6b908 | |
parent | 69a4998d1286bcdd7bfe874cd5628bc1cc232bae (diff) |
Bump bicubic cutoff to R580.
RV530 chipsets can't handle fullscreen bicubic...
-rw-r--r-- | src/radeon_textured_video.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/radeon_textured_video.c b/src/radeon_textured_video.c index 8075ef21..366a254e 100644 --- a/src/radeon_textured_video.c +++ b/src/radeon_textured_video.c @@ -391,7 +391,7 @@ RADEONSetTexPortAttribute(ScrnInfoPtr pScrn, if (attribute == xvBicubic) /* -1 -> set default (disable for RV515 and punier) */ pPriv->bicubic_enabled = (value == -1) ? - (info->ChipFamily >= CHIP_FAMILY_RV530) : value; + (info->ChipFamily >= CHIP_FAMILY_R580) : 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_RV530); + pPriv->bicubic_enabled = (info->ChipFamily >= CHIP_FAMILY_R580); /* gotta uninit this someplace, XXX: shouldn't be necessary for textured */ REGION_NULL(pScreen, &pPriv->clip); |