diff options
author | Alex Deucher <alex@cube.(none)> | 2008-05-13 20:50:25 -0400 |
---|---|---|
committer | Alex Deucher <alex@cube.(none)> | 2008-05-13 20:50:25 -0400 |
commit | 582c1a1b2c7b1032e9f9f54ca36100c57f580c5c (patch) | |
tree | 96b96fc91976cfc2d170cf49449f7b3e7e042ab2 /src/radeon_video.c | |
parent | 708e7c98f636738fbcc47a597bc94b309a4dc1c4 (diff) |
RS4xx: Split out RS400 and RS480 as separate families
RS400 (intel based IGP) and RS480 (AMD based IGP) have different
MC setups and need to be handled differently
Diffstat (limited to 'src/radeon_video.c')
-rw-r--r-- | src/radeon_video.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/radeon_video.c b/src/radeon_video.c index d4b9ac4f..ab1ed8dd 100644 --- a/src/radeon_video.c +++ b/src/radeon_video.c @@ -2987,7 +2987,8 @@ RADEONPutImage( case FOURCC_I420: /* it seems rs4xx chips (all of them???) either can't handle planar yuv at all or would need some unknown different setup. */ - if (info->ChipFamily != CHIP_FAMILY_RS400) { + if ((info->ChipFamily != CHIP_FAMILY_RS400) && + (info->ChipFamily != CHIP_FAMILY_RS480)) { /* need 16bytes alignment for u,v plane, so 2 times that for width but blitter needs 64bytes alignment. 128byte is a waste but dstpitch for uv planes needs to be dstpitch yplane >> 1 for now. */ |