Removed anisotropic option from SDL_HINT_RENDER_SCALE_QUALITY.

Anisotropic filtering is meant to be used for textures at a stark
 angle, not perpendicular to the camera.
This commit is contained in:
Ryan C. Gordon
2013-08-06 00:23:04 -04:00
parent a0bac03105
commit 6282a112e5
2 changed files with 2 additions and 4 deletions

View File

@@ -864,10 +864,8 @@ GetScaleQuality(void)
if (!hint || *hint == '0' || SDL_strcasecmp(hint, "nearest") == 0) {
return D3DTEXF_POINT;
} else if (*hint == '1' || SDL_strcasecmp(hint, "linear") == 0) {
} else /*if (*hint == '1' || SDL_strcasecmp(hint, "linear") == 0)*/ {
return D3DTEXF_LINEAR;
} else {
return D3DTEXF_ANISOTROPIC;
}
}