wined3d: Add NPOT quirk for GeforceFX 5200.
This commit is contained in:
parent
f69d88b503
commit
eb0a032a8c
|
@ -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 (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;
|
return TRUE;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue