wined3d: Add NPOT quirk for GeforceFX 5200.

This commit is contained in:
Roderick Colenbrander 2010-06-14 23:22:52 +02:00 committed by Alexandre Julliard
parent f69d88b503
commit eb0a032a8c
1 changed files with 3 additions and 1 deletions

View File

@ -452,7 +452,9 @@ static BOOL match_geforce5(const struct wined3d_gl_info *gl_info, const char *gl
{
if (card_vendor == HW_VENDOR_NVIDIA)
{
if (device == CARD_NVIDIA_GEFORCEFX_5800 || device == CARD_NVIDIA_GEFORCEFX_5600)
if (device == CARD_NVIDIA_GEFORCEFX_5200 ||
device == CARD_NVIDIA_GEFORCEFX_5600 ||
device == CARD_NVIDIA_GEFORCEFX_5800)
{
return TRUE;
}