Registriert seit: 15. Mär 2007
4.093 Beiträge
Delphi 12 Athens
|
AW: iOS: Splash-Screen bleibt weiß
10. Mai 2023, 12:34
Keinen Schimmer, aber könnte es was mit Metal On/Off zu tun haben ?
https://en.delphipraxis.net/topic/61...#comment-54364
Delphi-Quellcode:
{$IF defined(MACOS)}
if TCustomContextMetal.IsMetalSupported then
GlobalUseMetal := True;
{$ENDIF}
Application.Initialize;
Application.CreateForm(TFormMain, FormMain);
Application.Run;
Geändert von Rollo62 (10. Mai 2023 um 12:38 Uhr)
|