video: Don't add SDL_WINDOW_METAL to new windows if not using Cocoa or UIKit.

Fixes #4656.
This commit is contained in:
Ryan C. Gordon 2022-01-26 21:10:15 -05:00
parent 77a9ca6ba0
commit 3044310518
1 changed files with 3 additions and 1 deletions

View File

@ -1595,7 +1595,9 @@ SDL_CreateWindow(const char *title, int x, int y, int w, int h, Uint32 flags)
flags |= SDL_WINDOW_OPENGL;
#endif
#if SDL_VIDEO_METAL && (TARGET_OS_MACCATALYST || __MACOSX__ || __IPHONEOS__)
flags |= SDL_WINDOW_METAL;
if ((SDL_strcmp(_this->name, "cocoa") == 0) || (SDL_strcmp(_this->name, "uikit") == 0)) {
flags |= SDL_WINDOW_METAL;
}
#endif
}