1
0
mirror of https://github.com/mpv-player/mpv synced 2025-03-20 18:28:01 +00:00

Radeon 9000 support by Marcus Blomenkamp <Marcus.Blomenkamp@epost.de>

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@8563 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
alex 2002-12-25 18:38:07 +00:00
parent 8e5e2a0f0d
commit d586fc32f2
2 changed files with 7 additions and 4 deletions

View File

@ -241,6 +241,7 @@ d 10024c59 Radeon Mobility M6 LY 0
d 10024c5a Radeon Mobility M6 LZ 0
d 10024d46 Rage Mobility M4 AGP 0
d 10024d4c Rage Mobility M4 AGP 0
d 10024966 Radeon 9000 IF 0
d 10025041 Rage 128 PA/PRO 0
d 10025042 Rage 128 PB/PRO AGP 2x 0
d 10025043 Rage 128 PC/PRO AGP 4x 0

View File

@ -824,7 +824,8 @@ static unsigned short ati_card_ids[] =
DEVICE_ATI_RADEON_QL,
DEVICE_ATI_RADEON_QW,
DEVICE_ATI_RADEON_VE_QY,
DEVICE_ATI_RADEON_VE_QZ
DEVICE_ATI_RADEON_VE_QZ,
DEVICE_ATI_RADEON_9000_IF
#endif
};
@ -954,9 +955,8 @@ int vixInit( void )
case DEVICE_ATI_RADEON_MOBILITY_M62:
case DEVICE_ATI_RADEON_MOBILITY_M63:
case DEVICE_ATI_RADEON_MOBILITY_M64:
case DEVICE_ATI_RADEON_9000_IF:
rage_ckey_model=1;
is_shift_required=1;
break;
case DEVICE_ATI_RADEON_QD:
case DEVICE_ATI_RADEON_QE:
case DEVICE_ATI_RADEON_QF:
@ -965,7 +965,9 @@ int vixInit( void )
case DEVICE_ATI_RADEON_VE_QZ:
is_shift_required=1;
break;
default: break;
default:
// printf(RADEON_MSG" Warning! Probably colorkeying isn't working correct!\n");
break;
}
#endif