d3dx9: Also check for a valid alpha channel for TGA images.
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48631 Signed-off-by: Matteo Bruni <mbruni@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
921bade0da
commit
46f08b169b
|
@ -895,7 +895,8 @@ static BOOL image_is_argb(IWICBitmapFrameDecode *frame, const D3DXIMAGE_INFO *in
|
|||
BYTE *buffer;
|
||||
HRESULT hr;
|
||||
|
||||
if (info->Format != D3DFMT_X8R8G8B8 || info->ImageFileFormat != D3DXIFF_BMP)
|
||||
if (info->Format != D3DFMT_X8R8G8B8 || (info->ImageFileFormat != D3DXIFF_BMP
|
||||
&& info->ImageFileFormat != D3DXIFF_TGA))
|
||||
return FALSE;
|
||||
|
||||
size = info->Width * info->Height * 4;
|
||||
|
|
Loading…
Reference in New Issue