wined3d: Disable paletted texture support. It was only offered on a few cards, so can be missed.

This commit is contained in:
Roderick Colenbrander 2010-04-05 20:05:15 +02:00 committed by Alexandre Julliard
parent 69902ab6d0
commit 9fec1a02b9
1 changed files with 4 additions and 4 deletions

View File

@ -3404,12 +3404,12 @@ static BOOL CheckTextureCapability(struct wined3d_adapter *adapter,
return FALSE;
/*****
* supported: Palettized
* Not supported: Palettized
* Only some Geforce/Voodoo3/G400 cards offer 8-bit textures in case of <=Direct3D7.
* Since it is not widely available, don't offer it. Further no Windows driver offers
* WINED3DFMT_P8_UINT_A8_NORM, so don't offer it either.
*/
case WINED3DFMT_P8_UINT:
TRACE_(d3d_caps)("[OK]\n");
return TRUE;
/* No Windows driver offers WINED3DFMT_P8_UINT_A8_UNORM, so don't offer it either */
case WINED3DFMT_P8_UINT_A8_UNORM:
return FALSE;