wined3d: Remove an unneeded check.

This commit is contained in:
Stefan Dösinger 2007-11-02 21:30:50 +01:00 committed by Alexandre Julliard
parent e15b6096c6
commit 7c97b80193
1 changed files with 25 additions and 32 deletions

View File

@ -3614,12 +3614,6 @@ static HRESULT WINAPI IWineD3DSurfaceImpl_LoadLocation(IWineD3DSurface *iface, D
d3dfmt_get_conv(This, TRUE /* We need color keying */, TRUE /* We will use textures */, &format, &internal, &type, &convert, &bpp, This->srgb); d3dfmt_get_conv(This, TRUE /* We need color keying */, TRUE /* We will use textures */, &format, &internal, &type, &convert, &bpp, This->srgb);
if (This->Flags & SFLAG_INDRAWABLE) { if (This->Flags & SFLAG_INDRAWABLE) {
if (This->resource.format == WINED3DFMT_P8 || This->resource.format == WINED3DFMT_A8P8 ||
This->resource.format == WINED3DFMT_DXT1 || This->resource.format == WINED3DFMT_DXT2 ||
This->resource.format == WINED3DFMT_DXT3 || This->resource.format == WINED3DFMT_DXT4 ||
This->resource.format == WINED3DFMT_DXT5)
FIXME("Format %d not supported\n", This->resource.format);
else {
GLint prevRead; GLint prevRead;
ENTER_GL(); ENTER_GL();
@ -3648,7 +3642,6 @@ static HRESULT WINAPI IWineD3DSurfaceImpl_LoadLocation(IWineD3DSurface *iface, D
LEAVE_GL(); LEAVE_GL();
TRACE("Updated target %d\n", This->glDescription.target); TRACE("Updated target %d\n", This->glDescription.target);
}
return WINED3D_OK; return WINED3D_OK;
} else { } else {
/* The only place where LoadTexture() might get called when isInDraw=1 /* The only place where LoadTexture() might get called when isInDraw=1