wined3d: Disable D3DFMT_A4L4.

This commit is contained in:
Stefan Dösinger 2008-08-15 13:49:20 +02:00 committed by Alexandre Julliard
parent f39e122477
commit 1043a04673
1 changed files with 5 additions and 1 deletions

View File

@ -2228,11 +2228,15 @@ static BOOL CheckTextureCapability(UINT Adapter, WINED3DDEVTYPE DeviceType, WINE
*/
case WINED3DFMT_L8:
case WINED3DFMT_A8L8:
case WINED3DFMT_A4L4:
case WINED3DFMT_L16:
TRACE_(d3d_caps)("[OK]\n");
return TRUE;
/* Not supported on Windows, thus disabled */
case WINED3DFMT_A4L4:
TRACE_(d3d_caps)("[FAILED] - not supported on windows\n");
return FALSE;
/*****
* Supported: Depth/Stencil formats
*/