Remove SDL_SCALEMODE_BEST

Fixes https://github.com/libsdl-org/SDL/issues/10619
This commit is contained in:
Sam Lantinga
2024-08-30 10:30:14 -07:00
parent 4bbf0d45fd
commit b602c449e5
8 changed files with 4 additions and 28 deletions

View File

@@ -71,8 +71,7 @@ typedef Uint32 SDL_SurfaceFlags;
typedef enum SDL_ScaleMode
{
SDL_SCALEMODE_NEAREST, /**< nearest pixel sampling */
SDL_SCALEMODE_LINEAR, /**< linear filtering */
SDL_SCALEMODE_BEST /**< anisotropic filtering */
SDL_SCALEMODE_LINEAR /**< linear filtering */
} SDL_ScaleMode;
/**