You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FAsyncLoadingScreenModule::StartupModule calls SetupLoadingScreen(Settings->StartupLoadingScreen) at module startup time. That happens while disregard for gc pool is still open, so all UObjects loaded at this stage (e.g. background textures in SBackgroundWidget) can't be released by gc later and can consume a portion of gpu memory as long as the module is loaded (entire process lifetime basically). This doesn't happen with other loading screens because they are constructed much later, after CloseDisregardForGC is called.
You can see this behaviour if you specify some texture in BackgroundSettings for startup screen and call obj refs name= <TextureName> after the game has loaded. The background texture will be marked as root and thus won't be collected by GC:
Hello,
FAsyncLoadingScreenModule::StartupModule calls
SetupLoadingScreen(Settings->StartupLoadingScreen)
at module startup time. That happens while disregard for gc pool is still open, so all UObjects loaded at this stage (e.g. background textures in SBackgroundWidget) can't be released by gc later and can consume a portion of gpu memory as long as the module is loaded (entire process lifetime basically). This doesn't happen with other loading screens because they are constructed much later, after CloseDisregardForGC is called.You can see this behaviour if you specify some texture in BackgroundSettings for startup screen and call
obj refs name= <TextureName>
after the game has loaded. The background texture will be marked as root and thus won't be collected by GC:The text was updated successfully, but these errors were encountered: