macOS: fix initial Metal drawable size in certain multi-display setups

This commit is contained in:
Sasha Szpakowski 2023-02-01 18:56:33 -04:00 committed by Sam Lantinga
parent 98ae54ccc0
commit baca26d727

View file

@ -150,6 +150,9 @@ Cocoa_Metal_CreateView(_THIS, SDL_Window *window)
[view addSubview:newview];
/* Make sure the drawable size is up to date after attaching the view. */
[newview updateDrawableSize];
metalview = (SDL_MetalView)CFBridgingRetain(newview);
return metalview;