adamrehn / pixel-streaming-linux

Issue tracker repository for Pixel Streaming for Linux
https://adamrehn.com/articles/pixel-streaming-in-linux-containers/
22 stars 7 forks source link

Running game build in Linux container with pixel streaming - UE4.25 #32

Closed dai-martov closed 3 years ago

dai-martov commented 3 years ago

error screenshot from the container adamrehn/ue4-runtime:18.04-cudagl10.2, when i try to run the bash script to run the game. i follow the tutorial from this guide https://adamrehn.com/articles/pixel-streaming-in-linux-containers/ and run the multi-stage build successfully. I think this error is related to Unreal game running in headless mode, because it's in a container. The guide did not mention anything about running the game after the build finish

err

QUESTION:

  1. how do we pass in the arguments "-AudioMixer -PixelStreamingIP=localhost -PixelStreamingPort=8888" to the Linux bash script same as the windows executable to run the game? (we need to fix the headless error first)
  2. Do we use the same signaling webserver script as in the Windows build?

Thank you so much err

avg07 commented 3 years ago

@dai-martov, нou can add a parameter "ue4 package developmennt" in Dockerfile to see the extended log:

...
COPY --chown=ue4:ue4 ./DummyProject /tmp/project
# Build and package our Unreal project
WORKDIR /tmp/project
RUN ue4 package Development
# Copy the packaged files into a runtime container image that doesn't include any Unreal Engine components
FROM adamrehn/ue4-runtime:latest
...
  1. You can pass in the arguments in docker entrypoint or in "docker run" command line. For example:
    ENTRYPOINT ["/home/ue4/project/DummyProject.sh", "-AudioMixer", "-PixelStreamingIP=localhost", "-PixelStreamingPort=8888"]

    or

    sudo docker run --rm --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host DummyProject:latest bash -c "/home/ue4/project/DummyProject.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen"
lukehb commented 3 years ago

Do we use the same signaling webserver script as in the Windows build?

Yes, the signalling server Epic provides will work on Linux too :)

dai-martov commented 3 years ago

Thank you so much for your response. this is what i'm getting with the docker run command above:

ubuntu@ip-172-31-21-140:~$ docker run --rm --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host b1357f01bbb6 bash -c "/home/ue4/project/MyProject2.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen"
sh: 1: xdg-user-dir: not found
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
Failed to find symbol file, expected location:
"/home/ue4/project/MyProject2/Binaries/Linux/MyProject2-Linux-Shipping.sym"
LowLevelFatalError [File:Unknown] [Line: 75] 
No CUDA Interop capable GPU found with UUID ⦌䓢㝷儗缈⒣ꃆ厡퇘긻噒塔䤶웓.
Signal 11 caught.
Malloc Size=65538 LargeMemoryPoolOffset=65554 
4.25.4-13144385+++UE4+Release-4.25 518 0
Disabling core dumps.
CommonUnixCrashHandler: Signal=11
Engine crash handling finished; re-raising signal 11 for the default handler. Good bye.
Segmentation fault (core dumped)

Can you give me a hint on how to fix this? i think maybe related to nvidia docker. I'm running this on an AWS instance g4dn.xlarge

lukehb commented 3 years ago

On your AWS machine have you installed drivers as per the AWS docs?

Would you mind posting the output of calling nvidia-smi in a cli?

avg07 commented 3 years ago

@dai-martov, run and show the output:

sudo docker run --gpus=all --rm adamrehn/ue4-runtime:18.04-cudagl10.2 nvidia-smi
dai-martov commented 3 years ago

Here's the output:

ubuntu@ip-172-31-21-140:~$ docker run --gpus=all --rm adamrehn/ue4-runtime:18.04-cudagl10.2 nvidia-smi
Thu Feb 18 16:00:02 2021       
+-----------------------------------------------------------------------------+
| NVIDIA-SMI 450.51.05    Driver Version: 450.51.05    CUDA Version: 11.0     |
|-------------------------------+----------------------+----------------------+
| GPU  Name        Persistence-M| Bus-Id        Disp.A | Volatile Uncorr. ECC |
| Fan  Temp  Perf  Pwr:Usage/Cap|         Memory-Usage | GPU-Util  Compute M. |
|                               |                      |               MIG M. |
|===============================+======================+======================|
|   0  Tesla T4            On   | 00000000:00:1E.0 Off |                    0 |
| N/A   27C    P8    11W /  70W |      0MiB / 15109MiB |      0%      Default |
|                               |                      |                  N/A |
+-------------------------------+----------------------+----------------------+

+-----------------------------------------------------------------------------+
| Processes:                                                                  |
|  GPU   GI   CI        PID   Type   Process name                  GPU Memory |
|        ID   ID                                                   Usage      |
|=============================================================================|
|  No running processes found                                                 |
+-----------------------------------------------------------------------------+
lloves commented 3 years ago

I get the same error.

avg07 commented 3 years ago

@dai-martov , @lloves, try adding a parameter "-opengl4" to docker run command:

docker run --rm --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host b1357f01bbb6 bash -c "/home/ue4/project/MyProject2.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -opengl4"
dai-martov commented 3 years ago

Thanks for your response, here's the output:

ubuntu@ip-172-31-21-140:~$ docker run --rm --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host b1357f01bbb6 bash -c "/home/ue4/project/MyProject2.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -opengl4"
sh: 1: xdg-user-dir: not found
ubuntu@ip-172-31-21-140:~$ 
avg07 commented 3 years ago

You must enable extended logging:

...
RUN ue4 package Development
...
dai-martov commented 3 years ago

Thanks i added that command, and now i get this error message:

ubuntu@ip-172-31-21-140:~/containers/runtime$ docker run -it --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host pixelbuild:web bash -c "/home/ue4/project/MyProject2.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen"
- Existing per-process limit (soft=1048576, hard=1048576) is enough for us (need only 1048576)
Increasing per-process limit of core file size to infinity.
- Existing per-process limit (soft=18446744073709551615, hard=18446744073709551615) is enough for us (need only 18446744073709551615)
LogPakFile: Display: Found Pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak attempting to mount.
LogPakFile: Display: Mounting pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak.
LogPlatformFile: Using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 8 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.036675
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +0:00, Platform Override: ''
LogPluginManager: Mounting plugin PixelStreaming
LogPluginManager: Mounting plugin CUDA
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin AnimationSharing
LogPluginManager: Mounting plugin SignificanceManager
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin GeometryMode
LogPluginManager: Mounting plugin DatasmithContent
LogPluginManager: Mounting plugin VariantManagerContent
LogPluginManager: Mounting plugin AlembicImporter
LogPluginManager: Mounting plugin GeometryCache
LogPluginManager: Mounting plugin AutomationUtils
LogPluginManager: Mounting plugin ScreenshotTools
LogPluginManager: Mounting plugin BackChannel
LogPluginManager: Mounting plugin ChaosCloth
LogPluginManager: Mounting plugin ChaosClothEditor
LogPluginManager: Mounting plugin ChaosEditor
LogPluginManager: Mounting plugin PlanarCut
LogPluginManager: Mounting plugin GeometryProcessing
LogPluginManager: Mounting plugin EditableMesh
LogPluginManager: Mounting plugin GeometryCollectionPlugin
LogPluginManager: Mounting plugin ProceduralMeshComponent
LogPluginManager: Mounting plugin ChaosSolverPlugin
LogPluginManager: Mounting plugin ChaosNiagara
LogPluginManager: Mounting plugin Niagara
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin PlatformCrypto
LogPluginManager: Mounting plugin AvfMedia
LogPluginManager: Mounting plugin ImgMedia
LogPluginManager: Mounting plugin MediaCompositing
LogPluginManager: Mounting plugin WmfMedia
LogPluginManager: Mounting plugin MeshPainting
LogPluginManager: Mounting plugin TcpMessaging
LogPluginManager: Mounting plugin UdpMessaging
LogPluginManager: Mounting plugin ActorSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin MatineeToLevelSequence
LogPluginManager: Mounting plugin TemplateSequence
LogPluginManager: Mounting plugin MovieRenderPipeline
LogPluginManager: Mounting plugin EditorScriptingUtilities
LogPluginManager: Mounting plugin NetcodeUnitTest
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin AndroidPermission
LogPluginManager: Mounting plugin AppleImageUtils
LogPluginManager: Mounting plugin ArchVisCharacter
LogPluginManager: Mounting plugin AssetTags
LogPluginManager: Mounting plugin AudioCapture
LogPluginManager: Mounting plugin CableComponent
LogPluginManager: Mounting plugin CustomMeshComponent
LogPluginManager: Mounting plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting plugin GooglePAD
LogPluginManager: Mounting plugin LinuxDeviceProfileSelector
LogPluginManager: Mounting plugin LocationServicesBPLibrary
LogPluginManager: Mounting plugin MobilePatchingUtils
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin SoundFields
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin Synthesis
LogPluginManager: Mounting plugin WebMMoviePlayer
LogPluginManager: Mounting plugin WebMMedia
LogInit: Using libcurl 7.65.3-DEV
LogInit:  - built for x86_64-unknown-linux-gnu
LogInit:  - supports SSL with OpenSSL/1.1.1c
LogInit:  - supports HTTP deflate (compression) using libz 1.2.8
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_TLSAUTH_SRP
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogOnline: OSS: Creating online subsystem instance for: NULL
LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
LogInit: Build: ++UE4+Release-4.25-CL-13144385
LogInit: Engine Version: 4.25.4-13144385+++UE4+Release-4.25
LogInit: Compatible Engine Version: 4.25.0-13144385+++UE4+Release-4.25
LogInit: Net CL: 13144385
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Jan 30 2021 04:46:57
LogInit: Compiled with Clang: 9.0.1 
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.25
LogInit: Command Line:  -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen
LogInit: Base Directory: /home/ue4/project/MyProject2/Binaries/Linux/
LogInit: Allocator: binned2
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 26
LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 38
LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 2
LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 4
LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 43
LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 12
LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 7
LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 31
LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 37
LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
LogStreaming: Display: Async Loading initialized: Event Driven Loader: true, Async Loading Thread: false, Async Post Load: true
LogInit: Object subsystem initialized
LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
LogConfig: Setting CVar [[r.setres:1280x720]]
LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[r.setres:1280x720]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.19-21.35.29:436][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2021.02.19-21.35.29:436][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:436][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2021.02.19-21.35.29:436][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2021.02.19-21.35.29:437][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:437][  0]LogInit: Initializing SDL.
[2021.02.19-21.35.29:437][  0]LogInit: Hinting SDL to use 'dummy' video driver.
[2021.02.19-21.35.29:442][  0]LogInit: Initialized SDL 2.0.10 revision: 12952 (hg-12952:bc90ce38f1e2) (compiled against 2.0.10)
[2021.02.19-21.35.29:442][  0]LogInit: Using SDL video driver 'dummy'
[2021.02.19-21.35.29:442][  0]LogInit: Display metrics:
[2021.02.19-21.35.29:442][  0]LogInit:   PrimaryDisplayWidth: 1024
[2021.02.19-21.35.29:442][  0]LogInit:   PrimaryDisplayHeight: 768
[2021.02.19-21.35.29:442][  0]LogInit:   PrimaryDisplayWorkAreaRect:
[2021.02.19-21.35.29:442][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.19-21.35.29:442][  0]LogInit:   VirtualDisplayRect:
[2021.02.19-21.35.29:442][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.19-21.35.29:442][  0]LogInit:   TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.19-21.35.29:442][  0]LogInit:   ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.19-21.35.29:442][  0]LogInit:   Number of monitors: 1
[2021.02.19-21.35.29:443][  0]LogInit:     Monitor 0
[2021.02.19-21.35.29:443][  0]LogInit:       Name: 0
[2021.02.19-21.35.29:443][  0]LogInit:       ID: display0
[2021.02.19-21.35.29:443][  0]LogInit:       NativeWidth: 1024
[2021.02.19-21.35.29:443][  0]LogInit:       NativeHeight: 768
[2021.02.19-21.35.29:443][  0]LogInit:       bIsPrimary: true
[2021.02.19-21.35.29:443][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.19-21.35.29:443][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.19-21.35.29:443][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.19-21.35.29:444][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.19-21.35.29:444][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.19-21.35.29:445][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.19-21.35.29:445][  0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2021.02.19-21.35.29:445][  0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor]
[2021.02.19-21.35.29:445][  0]LogHAL: Display: Platform has ~ 4 GB [16481624064 / 4294967296 / 16], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.RHICmdBypass:0]]
[2021.02.19-21.35.29:445][  0]LogInit: Going up to parent DeviceProfile [Linux]
[2021.02.19-21.35.29:445][  0]LogInit: Going up to parent DeviceProfile []
[2021.02.19-21.35.29:445][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.19-21.35.29:445][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.19-21.35.29:445][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.19-21.35.29:446][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.19-21.35.29:446][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.19-21.35.29:447][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.19-21.35.29:447][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.19-21.35.29:447][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
[2021.02.19-21.35.29:448][  0]LogConfig: Setting CVar [[net.UseAdaptiveNetUpdateFrequency:0]]
[2021.02.19-21.35.29:448][  0]LogConfig: Setting CVar [[p.chaos.AllowCreatePhysxBodies:1]]
[2021.02.19-21.35.29:448][  0]LogConfig: Setting CVar [[fx.SkipVectorVMBackendOptimizations:1]]
[2021.02.19-21.35.29:448][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.35.29:448][  0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]]
[2021.02.19-21.35.29:448][  0]LogInit: Unix hardware info:
[2021.02.19-21.35.29:448][  0]LogInit:  - we are the first instance of this executable
[2021.02.19-21.35.29:448][  0]LogInit:  - this process' id (pid) is 13, parent process' id (ppid) is 1
[2021.02.19-21.35.29:448][  0]LogInit:  - we are not running under debugger
[2021.02.19-21.35.29:448][  0]LogInit:  - machine network name is 'ip-172-31-21-140'
[2021.02.19-21.35.29:448][  0]LogInit:  - user name is 'ue4' (ue4)
[2021.02.19-21.35.29:448][  0]LogInit:  - we're logged in locally
[2021.02.19-21.35.29:448][  0]LogInit:  - we're running with rendering
[2021.02.19-21.35.29:448][  0]LogInit:  - CPU: GenuineIntel 'Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz' (signature: 0x50657)
[2021.02.19-21.35.29:448][  0]LogInit:  - Number of physical cores available for the process: 2
[2021.02.19-21.35.29:448][  0]LogInit:  - Number of logical cores available for the process: 4
[2021.02.19-21.35.29:448][  0]LogInit:  - Cache line size: 64
[2021.02.19-21.35.29:448][  0]LogInit:  - Memory allocator used: binned2
[2021.02.19-21.35.29:448][  0]LogInit:  - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
[2021.02.19-21.35.29:448][  0]LogInit:  - This is an internal build.
[2021.02.19-21.35.29:448][  0]LogCore: Benchmarking clocks:
[2021.02.19-21.35.29:448][  0]LogCore:  - CLOCK_MONOTONIC (id=1) can sustain 41805094 (41805K, 42M) calls per second without zero deltas.
[2021.02.19-21.35.29:448][  0]LogCore:  - CLOCK_MONOTONIC_RAW (id=4) can sustain 41096185 (41096K, 41M) calls per second without zero deltas.
[2021.02.19-21.35.29:448][  0]LogCore:  - CLOCK_MONOTONIC_COARSE (id=6) can sustain 136846836 (136847K, 137M) calls per second with 99.999810% zero deltas.
[2021.02.19-21.35.29:448][  0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas.
[2021.02.19-21.35.29:448][  0]LogInit: Unix-specific commandline switches:
[2021.02.19-21.35.29:448][  0]LogInit:  -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence)
[2021.02.19-21.35.29:448][  0]LogInit:  -jemalloc - use jemalloc for all memory allocation
[2021.02.19-21.35.29:448][  0]LogInit:  -binnedmalloc - use binned malloc  for all memory allocation
[2021.02.19-21.35.29:448][  0]LogInit:  -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache
[2021.02.19-21.35.29:448][  0]LogInit:  -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF)
[2021.02.19-21.35.29:448][  0]LogInit:  -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF)
[2021.02.19-21.35.29:448][  0]LogInit:  -preloadmodulesymbols - Loads the main module symbols file into memory (OFF)
[2021.02.19-21.35.29:448][  0]LogInit:  -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal
[2021.02.19-21.35.29:448][  0]LogInit:  -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl)
[2021.02.19-21.35.29:448][  0]LogInit:  -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl)
[2021.02.19-21.35.29:448][  0]LogInit:  -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini)
[2021.02.19-21.35.29:449][  0]LogInit:  - Physical RAM available (not considering process quota): 16 GB (15718 MB, 16095336 KB, 16481624064 bytes)
[2021.02.19-21.35.29:449][  0]LogInit:  - VirtualMemoryAllocator pools will grow at scale 1.4
[2021.02.19-21.35.29:449][  0]LogInit:  - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change)
[2021.02.19-21.35.29:460][  0]LogInit: Physics initialised using underlying interface: PhysX
[2021.02.19-21.35.29:460][  0]LogInit: Using OS detected language (en-US-POSIX).
[2021.02.19-21.35.29:460][  0]LogInit: Using OS detected locale (en-US-POSIX).
[2021.02.19-21.35.29:460][  0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used.
[2021.02.19-21.35.29:471][  0]LogHAL: Warning: Splash screen image not found.
[2021.02.19-21.35.29:473][  0]LogSlate: New Slate User Created.  User Index 0, Is Virtual User: 0
[2021.02.19-21.35.29:473][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
[2021.02.19-21.35.29:474][  0]LogInit: Using SDL_WINDOW_VULKAN
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_acquire_xlib_display
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_report
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_utils
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_direct_mode_display
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_display_surface_counter
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_device_group_creation
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_display
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_fence_capabilities
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_memory_capabilities
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_semaphore_capabilities
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_physical_device_properties2
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_surface_capabilities2
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_surface
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xcb_surface
[2021.02.19-21.35.29:586][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xlib_surface
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
[2021.02.19-21.35.29:587][  0]LogHMD: Failed to initialize OpenVR with code 110
[2021.02.19-21.35.29:587][  0]LogVulkanRHI: Display: Not using instance layers
[2021.02.19-21.35.29:587][  0]LogVulkanRHI: Display: Using instance extensions
[2021.02.19-21.35.29:587][  0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities
[2021.02.19-21.35.29:587][  0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2
[2021.02.19-21.35.29:630][  0]LogRHI: Warning: Failed to find entry point for vkDestroySurfaceKHR
[2021.02.19-21.35.29:630][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceSupportKHR
[2021.02.19-21.35.29:630][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceCapabilitiesKHR
[2021.02.19-21.35.29:630][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceFormatsKHR
[2021.02.19-21.35.29:630][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfacePresentModesKHR
[2021.02.19-21.35.29:630][  0]LogVulkanRHI: Display: Found 1 device(s)
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: Device 0: Tesla T4
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: - API 1.2.133(0x402085) Driver 0x708cc140 VendorId 0x10de
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: - DeviceID 0x1eb8 Type Discrete GPU
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 32 Timestamps 1
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_blend_operation_advanced
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_buffer_device_address
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_calibrated_timestamps
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_conditional_rendering
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_conservative_rasterization
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_custom_border_color
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_depth_clip_enable
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_depth_range_unrestricted
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_descriptor_indexing
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_discard_rectangles
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_display_control
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_fragment_shader_interlock
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_global_priority
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_host_query_reset
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_index_type_uint8
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_inline_uniform_block
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_line_rasterization
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_memory_budget
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_pci_bus_info
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_pipeline_creation_feedback
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_post_depth_coverage
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_sample_locations
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_sampler_filter_minmax
[2021.02.19-21.35.29:631][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_scalar_block_layout
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_separate_stencil_usage
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_demote_to_helper_invocation
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_subgroup_ballot
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_subgroup_vote
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_viewport_index_layer
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_subgroup_size_control
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_texel_buffer_alignment
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_tooling_info
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_transform_feedback
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_vertex_attribute_divisor
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_ycbcr_image_arrays
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_16bit_storage
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_8bit_storage
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_bind_memory2
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_buffer_device_address
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_create_renderpass2
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_dedicated_allocation
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_depth_stencil_resolve
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_descriptor_update_template
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_device_group
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_draw_indirect_count
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_driver_properties
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_fence
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_fence_fd
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_memory
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_memory_fd
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_semaphore
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_semaphore_fd
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_get_memory_requirements2
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_image_format_list
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_imageless_framebuffer
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance1
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance2
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance3
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_multiview
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_pipeline_executable_properties
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_push_descriptor
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_relaxed_block_layout
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_sampler_ycbcr_conversion
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_separate_depth_stencil_layouts
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_atomic_int64
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_clock
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_draw_parameters
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_float16_int8
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_float_controls
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_non_semantic_info
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_subgroup_extended_types
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_spirv_1_4
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_storage_buffer_storage_class
[2021.02.19-21.35.29:632][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_swapchain
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_swapchain_mutable_format
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_timeline_semaphore
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_uniform_buffer_standard_layout
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_variable_pointers
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_vulkan_memory_model
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_clip_space_w_scaling
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_compute_shader_derivatives
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_cooperative_matrix
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_corner_sampled_image
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_coverage_reduction_mode
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_dedicated_allocation
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_dedicated_allocation_image_aliasing
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_device_diagnostic_checkpoints
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_device_diagnostics_config
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fill_rectangle
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fragment_coverage_to_color
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fragment_shader_barycentric
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_framebuffer_mixed_samples
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_geometry_shader_passthrough
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_mesh_shader
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_ray_tracing
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_representative_fragment_test
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_sample_mask_override_coverage
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_scissor_exclusive
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_image_footprint
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_sm_builtins
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_subgroup_partitioned
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shading_rate_image
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_viewport_array2
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_viewport_swizzle
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_binary_import
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_device_generated_commands
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_image_view_handle
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_multiview_per_view_attributes
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: Using Device 0: Geometry 1 Tessellation 1
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: Found 3 Queue Families
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: Initializing Queue Family 0: 16 queues Gfx Compute Xfer Sparse
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: Initializing Queue Family 1: 2 queues Xfer Sparse
[2021.02.19-21.35.29:633][  0]LogVulkanRHI: Display: Skipping unnecessary Queue Family 2: 8 queues Compute Xfer Sparse
[2021.02.19-21.35.29:865][  0]LogVulkanRHI: Display: Using device layers
[2021.02.19-21.35.29:865][  0]LogVulkanRHI: Display: Using device extensions
[2021.02.19-21.35.29:865][  0]LogVulkanRHI: Display: * VK_KHR_swapchain
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: * VK_KHR_maintenance1
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: * VK_KHR_maintenance2
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: * VK_KHR_external_memory
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: * VK_KHR_external_memory_fd
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 3 Device Memory Heaps; Max memory allocations -1
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 0: Flags 0x1 Size 16106127360 (15360.00 MB) GPU
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 1: Flags 0x0 Size 12361218048 (11788.58 MB) 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 2: Flags 0x1 Size 257949696 (246.00 MB) GPU
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 11 Device Memory Types (Not unified)
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 0: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 1: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 2: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 3: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 4: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 5: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 6: Flags 0x0 Heap 1 
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 7: Flags 0x1 Heap 0  Local
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 8: Flags 0x6 Heap 1  HostVisible HostCoherent
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 9: Flags 0xe Heap 1  HostVisible HostCoherent HostCached
[2021.02.19-21.35.29:866][  0]LogVulkanRHI: Display: 10: Flags 0x7 Heap 2  Local HostVisible HostCoherent
[2021.02.19-21.35.29:905][  0]LogVulkanRHI: Display: FVulkanPipelineStateCacheManager: Binary pipeline cache '../../../MyProject2/Saved/VulkanPSO.cache.10de.1eb8' not found.
[2021.02.19-21.35.29:914][  0]LogVulkanRHI: Display: Nvidia User Driver Version = 450.51
[2021.02.19-21.35.29:918][  0]LogRHI: Texture pool is 10377 MB (70% of 14825 MB)
[2021.02.19-21.35.29:919][  0]LogShaderLibrary: Display: Using ../../../MyProject2/Content/ShaderArchive-Global-SF_VULKAN_SM5.ushaderbytecode for material shader code. Total 1663 unique shaders.
[2021.02.19-21.35.29:919][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
[2021.02.19-21.35.29:920][  0]LogTemp: Warning: Clearing the OS Cache
[2021.02.19-21.35.29:921][  0]LogPakFile: New pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak added to pak precacher.
[2021.02.19-21.35.29:967][  0]LogSlate: Using FreeType 2.10.0
[2021.02.19-21.35.29:967][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
[2021.02.19-21.35.30:011][  0]LogShaderLibrary: Display: Using ../../../MyProject2/Content/ShaderArchive-MyProject2-SF_VULKAN_SM5.ushaderbytecode for material shader code. Total 2105 unique shaders.
[2021.02.19-21.35.30:011][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MyProject2
[2021.02.19-21.35.30:011][  0]LogRHI: Display: Opened pipeline cache after state change and enqueued 0 of 0 tasks for precompile.
[2021.02.19-21.35.30:011][  0]LogRHI: Display: Failed to open default shader pipeline cache for MyProject2 using shader platform 20.
[2021.02.19-21.35.30:011][  0]LogInit: Using OS detected language (en-US-POSIX).
[2021.02.19-21.35.30:011][  0]LogInit: Using OS detected locale (en-US-POSIX).
[2021.02.19-21.35.30:012][  0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language.
[2021.02.19-21.35.30:012][  0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale.
[2021.02.19-21.35.30:012][  0]LogSlate: FontCache flush requested. Reason: Culture for localization was changed
[2021.02.19-21.35.30:012][  0]LogSlate: FontCache flush requested. Reason: Culture for localization was changed
[2021.02.19-21.35.30:013][  0]LogTextLocalizationManager: Compacting localization data took   1.31ms
[2021.02.19-21.35.30:016][  0]LogAssetRegistry: FAssetRegistry took 0.0021 seconds to start up
[2021.02.19-21.35.30:073][  0]LogStreaming: Display: Flushing async loaders.
[2021.02.19-21.35.30:073][  0]LogPackageLocalizationCache: Processed 16 localized package path(s) for 1 prioritized culture(s) in 0.000055 seconds
[2021.02.19-21.35.30:077][  0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2021.02.19-21.35.30:082][  0]LogNetVersion: MyProject2 1.0.0, NetCL: 13144385, EngineNetVer: 14, GameNetVer: 0 (Checksum: 2431794755)
[2021.02.19-21.35.30:127][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2021.02.19-21.35.30:127][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2021.02.19-21.35.30:153][  0]LogAISub: UAISubsystem AISubsystem (0x7f45e5a75d00), frame # 0
[2021.02.19-21.35.30:153][  0]LogAISub: UAISubsystem AIPerceptionSystem (0x7f45e62d2180), frame # 0
[2021.02.19-21.35.30:154][  0]LogAISub: UAISubsystem EnvQueryManager (0x7f45e5b65200), frame # 0
[2021.02.19-21.35.30:160][  0]LogMoviePlayer: Initializing movie player
[2021.02.19-21.35.30:226][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2021.02.19-21.35.30:226][  0]LogSlate: Slate font cache was flushed
[2021.02.19-21.35.30:234][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
[2021.02.19-21.35.30:238][  0]LogUObjectArray: 13641 objects as part of root set at end of initial load.
[2021.02.19-21.35.30:238][  0]LogUObjectArray: 2 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
[2021.02.19-21.35.30:238][  0]LogUObjectAllocator: 2753432 out of 0 bytes used by permanent object pool.
[2021.02.19-21.35.30:238][  0]LogUObjectArray: CloseDisregardForGC: 13641/13641 objects in disregard for GC pool
[2021.02.19-21.35.30:239][  0]LogEngine: Initializing Engine...
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
Unable to read VR Path Registry from /home/ue4/.config/openvr/openvrpaths.vrpath
[2021.02.19-21.35.30:239][  0]LogHMD: Failed to initialize OpenVR with code 110
[2021.02.19-21.35.30:239][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
[2021.02.19-21.35.30:347][  0]LogPakFile: Precache HighWater 16MB

[2021.02.19-21.35.30:347][  0]LogPakFile: Precache HighWater 32MB

[2021.02.19-21.35.30:347][  0]LogInit: Initializing FReadOnlyCVARCache
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Sample Rate:                          48000
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Callback Buffer Frame Size Requested: 1024
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Callback Buffer Frame Size To Use:    1024
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Number of buffers to queue:           2
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Max Channels (voices):                32
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display:   Number of Async Source Workers:       0
[2021.02.19-21.35.30:347][  0]LogAudio: Display: AudioDevice MaxSources: 32
[2021.02.19-21.35.30:347][  0]LogAudio: Display: Using built-in audio occlusion.
[2021.02.19-21.35.30:347][  0]LogAudioMixer: Display: Initializing audio mixer.
[2021.02.19-21.35.30:352][  0]LogAudioMixerSDL: Display: Initialized SDL using dsp platform API backend.
[2021.02.19-21.35.30:352][  0]LogAudioMixerSDL: Error: No such audio device
[2021.02.19-21.35.30:352][  0]LogAudioMixerSDL: Opening default audio device (device index -1)
[2021.02.19-21.35.30:352][  0]LogAudioMixerSDL: Error: No such audio device
[2021.02.19-21.35.30:352][  0]LogAudio: Warning: FAudioDevice::Init Failed!
[2021.02.19-21.35.30:352][  0]LogAudio: Display: Audio device could not be initialized. Please check the value for AudioDeviceModuleName and AudioMixerModuleName in [Platform]Engine.ini.
[2021.02.19-21.35.30:352][  0]LogAudio: Display: Audio device could not be initialized. Please check the value for AudioDeviceModuleName and AudioMixerModuleName in [Platform]Engine.ini.
[2021.02.19-21.35.30:352][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
[2021.02.19-21.35.30:352][  0]LogInit: Texture streaming: Enabled
[2021.02.19-21.35.30:356][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2021.02.19-21.35.30:357][  0]LogInit: Display: Game Engine Initialized.
[2021.02.19-21.35.30:358][  0]LogCUDA: Initialising Cuda.
[2021.02.19-21.35.30:487][  0]LogCUDA: GPU Device 0 selected!
[2021.02.19-21.35.30:487][  0]LogAVEncoder: Available video encoders: None 
[2021.02.19-21.35.30:487][  0]LogAVEncoder: Available audio encoders: , wmf(aac)  
[2021.02.19-21.35.30:487][  0]PixelPlayer: Warning: Failed to create DXGI Manager and Device
[2021.02.19-21.35.30:497][  0]LogCudaVideoEncoder: FCudaVideoEncoder initialization with 1920*1080, 60 FPS
[2021.02.19-21.35.30:513][  0]LogCudaVideoEncoder: Created texture 0x7f45e939fb80 for CUDA
[2021.02.19-21.35.30:520][  0]LogCudaVideoEncoder: Created texture 0x7f45e939fa60 for CUDA
[2021.02.19-21.35.30:527][  0]LogCudaVideoEncoder: Created texture 0x7f45e939f940 for CUDA
[2021.02.19-21.35.30:533][  0]LogCudaVideoEncoder: CudaEnc initialised
[2021.02.19-21.35.30:533][  0]LogInit: Display: Starting Game.
[2021.02.19-21.35.30:533][  0]LogNet: Browse: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.19-21.35.30:533][  0]LogLoad: LoadMap: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.19-21.35.30:533][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
XYXYXY XYXYXY Clearnupworld 0x7f45e57f3990 -> (nil)
[2021.02.19-21.35.30:534][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true

#
# Fatal error in: ../../media/engine/adm_helpers.cc, line 38
# last system error: 0
# Check failed: 0 == adm->Init() (0 vs. -1)
# Failed to initialize the ADM.Signal 6 caught.
Malloc Size=65538 LargeMemoryPoolOffset=65554 
CommonUnixCrashHandler: Signal=6
[2021.02.19-21.35.30:546][  0]LogCore: === Critical error: ===
Unhandled Exception: SIGABRT: abort() called

[2021.02.19-21.35.30:546][  0]LogCore: Fatal error!

0x00007f461d18dfb7 libc.so.6!gsignal(+0xc7)
0x00007f461d18f921 libc.so.6!abort(+0x140)
0x000000000768d778 MyProject2!rtc::webrtc_checks_impl::FatalLog(char const*, int, char const*, rtc::webrtc_checks_impl::CheckArgType const*, ...)()
0x0000000007954de0 MyProject2!webrtc::adm_helpers::Init(webrtc::AudioDeviceModule*)()
0x000000000794ac2e MyProject2!cricket::WebRtcVoiceEngine::Init()()
0x000000000792d29d MyProject2!cricket::CompositeMediaEngine<cricket::WebRtcVoiceEngine, cricket::WebRtcVideoEngine>::Init()()
0x0000000007a17ce6 MyProject2!rtc::FunctorMessageHandler<bool, cricket::ChannelManager::Init()::$_2>::OnMessage(rtc::Message*)()
0x000000000769d4f5 MyProject2!rtc::MessageQueue::Dispatch(rtc::Message*)()
0x00000000076a70e8 MyProject2!rtc::Thread::ReceiveSendsFromThread(rtc::Thread const*)()
0x000000000769c7d6 MyProject2!rtc::MessageQueue::Get(rtc::Message*, int, bool)()
0x00000000076a6b88 MyProject2!rtc::Thread::Run()()
0x00000000076a6a7a MyProject2!rtc::Thread::PreRun(void*)()
0x00007f461f9626db libpthread.so.0!UnknownFunction(0x76da)
0x00007f461d27071f libc.so.6!clone(+0x3e)

[2021.02.19-21.35.30:551][  0]LogExit: Executing StaticShutdownAfterError
Engine crash handling finished; re-raising signal 6 for the default handler. Good bye.
Aborted (core dumped)

Do you think it has to do with memory? Thank you

dai-martov commented 3 years ago

this is the error with opengl4 option:

ubuntu@ip-172-31-21-140:~/containers/runtime$ docker run -it --gpus=all -v /tmp/.X11-unix:/tmp/.X11-unix:rw -e DISPLAY -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host pixelbuild:web bash -c "/home/ue4/project/MyProject2.sh -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -opengl4"
- Existing per-process limit (soft=1048576, hard=1048576) is enough for us (need only 1048576)
Increasing per-process limit of core file size to infinity.
- Existing per-process limit (soft=18446744073709551615, hard=18446744073709551615) is enough for us (need only 18446744073709551615)
LogPakFile: Display: Found Pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak attempting to mount.
LogPakFile: Display: Mounting pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak.
LogPlatformFile: Using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 8 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.036437
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +0:00, Platform Override: ''
LogPluginManager: Mounting plugin PixelStreaming
LogPluginManager: Mounting plugin CUDA
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin AnimationSharing
LogPluginManager: Mounting plugin SignificanceManager
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin GeometryMode
LogPluginManager: Mounting plugin DatasmithContent
LogPluginManager: Mounting plugin VariantManagerContent
LogPluginManager: Mounting plugin AlembicImporter
LogPluginManager: Mounting plugin GeometryCache
LogPluginManager: Mounting plugin AutomationUtils
LogPluginManager: Mounting plugin ScreenshotTools
LogPluginManager: Mounting plugin BackChannel
LogPluginManager: Mounting plugin ChaosCloth
LogPluginManager: Mounting plugin ChaosClothEditor
LogPluginManager: Mounting plugin ChaosEditor
LogPluginManager: Mounting plugin PlanarCut
LogPluginManager: Mounting plugin GeometryProcessing
LogPluginManager: Mounting plugin EditableMesh
LogPluginManager: Mounting plugin GeometryCollectionPlugin
LogPluginManager: Mounting plugin ProceduralMeshComponent
LogPluginManager: Mounting plugin ChaosSolverPlugin
LogPluginManager: Mounting plugin ChaosNiagara
LogPluginManager: Mounting plugin Niagara
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin PlatformCrypto
LogPluginManager: Mounting plugin AvfMedia
LogPluginManager: Mounting plugin ImgMedia
LogPluginManager: Mounting plugin MediaCompositing
LogPluginManager: Mounting plugin WmfMedia
LogPluginManager: Mounting plugin MeshPainting
LogPluginManager: Mounting plugin TcpMessaging
LogPluginManager: Mounting plugin UdpMessaging
LogPluginManager: Mounting plugin ActorSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin MatineeToLevelSequence
LogPluginManager: Mounting plugin TemplateSequence
LogPluginManager: Mounting plugin MovieRenderPipeline
LogPluginManager: Mounting plugin EditorScriptingUtilities
LogPluginManager: Mounting plugin NetcodeUnitTest
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin AndroidPermission
LogPluginManager: Mounting plugin AppleImageUtils
LogPluginManager: Mounting plugin ArchVisCharacter
LogPluginManager: Mounting plugin AssetTags
LogPluginManager: Mounting plugin AudioCapture
LogPluginManager: Mounting plugin CableComponent
LogPluginManager: Mounting plugin CustomMeshComponent
LogPluginManager: Mounting plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting plugin GooglePAD
LogPluginManager: Mounting plugin LinuxDeviceProfileSelector
LogPluginManager: Mounting plugin LocationServicesBPLibrary
LogPluginManager: Mounting plugin MobilePatchingUtils
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin SoundFields
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin Synthesis
LogPluginManager: Mounting plugin WebMMoviePlayer
LogPluginManager: Mounting plugin WebMMedia
LogInit: Using libcurl 7.65.3-DEV
LogInit:  - built for x86_64-unknown-linux-gnu
LogInit:  - supports SSL with OpenSSL/1.1.1c
LogInit:  - supports HTTP deflate (compression) using libz 1.2.8
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_TLSAUTH_SRP
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogOnline: OSS: Creating online subsystem instance for: NULL
LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
LogInit: Build: ++UE4+Release-4.25-CL-13144385
LogInit: Engine Version: 4.25.4-13144385+++UE4+Release-4.25
LogInit: Compatible Engine Version: 4.25.0-13144385+++UE4+Release-4.25
LogInit: Net CL: 13144385
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Jan 30 2021 04:46:57
LogInit: Compiled with Clang: 9.0.1 
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.25
LogInit: Command Line:  -AudioMixer -NvEncFrameRateNum=1 -PixelStreamingIp=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -opengl4
LogInit: Base Directory: /home/ue4/project/MyProject2/Binaries/Linux/
LogInit: Allocator: binned2
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 26
LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 38
LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 2
LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 4
LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 43
LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 12
LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 7
LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 31
LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 37
LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
LogStreaming: Display: Async Loading initialized: Event Driven Loader: true, Async Loading Thread: false, Async Post Load: true
LogInit: Object subsystem initialized
LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
LogConfig: Setting CVar [[r.setres:1280x720]]
LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[r.setres:1280x720]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:630][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2021.02.19-21.39.09:630][  0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2021.02.19-21.39.09:631][  0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2021.02.19-21.39.09:631][  0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2021.02.19-21.39.09:631][  0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2021.02.19-21.39.09:631][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:631][  0]LogInit: Initializing SDL.
[2021.02.19-21.39.09:631][  0]LogInit: Hinting SDL to use 'dummy' video driver.
[2021.02.19-21.39.09:636][  0]LogInit: Initialized SDL 2.0.10 revision: 12952 (hg-12952:bc90ce38f1e2) (compiled against 2.0.10)
[2021.02.19-21.39.09:636][  0]LogInit: Using SDL video driver 'dummy'
[2021.02.19-21.39.09:636][  0]LogInit: Display metrics:
[2021.02.19-21.39.09:636][  0]LogInit:   PrimaryDisplayWidth: 1024
[2021.02.19-21.39.09:636][  0]LogInit:   PrimaryDisplayHeight: 768
[2021.02.19-21.39.09:636][  0]LogInit:   PrimaryDisplayWorkAreaRect:
[2021.02.19-21.39.09:636][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.19-21.39.09:636][  0]LogInit:   VirtualDisplayRect:
[2021.02.19-21.39.09:636][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.19-21.39.09:636][  0]LogInit:   TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.19-21.39.09:636][  0]LogInit:   ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.19-21.39.09:636][  0]LogInit:   Number of monitors: 1
[2021.02.19-21.39.09:636][  0]LogInit:     Monitor 0
[2021.02.19-21.39.09:636][  0]LogInit:       Name: 0
[2021.02.19-21.39.09:636][  0]LogInit:       ID: display0
[2021.02.19-21.39.09:636][  0]LogInit:       NativeWidth: 1024
[2021.02.19-21.39.09:636][  0]LogInit:       NativeHeight: 768
[2021.02.19-21.39.09:636][  0]LogInit:       bIsPrimary: true
[2021.02.19-21.39.09:636][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:636][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.19-21.39.09:636][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.19-21.39.09:636][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.19-21.39.09:637][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.19-21.39.09:637][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.19-21.39.09:638][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.19-21.39.09:638][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.19-21.39.09:639][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:639][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.19-21.39.09:640][  0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2021.02.19-21.39.09:640][  0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor]
[2021.02.19-21.39.09:640][  0]LogHAL: Display: Platform has ~ 4 GB [16481624064 / 4294967296 / 16], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.RHICmdBypass:0]]
[2021.02.19-21.39.09:640][  0]LogInit: Going up to parent DeviceProfile [Linux]
[2021.02.19-21.39.09:640][  0]LogInit: Going up to parent DeviceProfile []
[2021.02.19-21.39.09:640][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.19-21.39.09:640][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.19-21.39.09:640][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:640][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.19-21.39.09:641][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.19-21.39.09:642][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.19-21.39.09:642][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.19-21.39.09:642][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.19-21.39.09:643][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.19-21.39.09:643][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.19-21.39.09:644][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.19-21.39.09:644][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[net.UseAdaptiveNetUpdateFrequency:0]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[p.chaos.AllowCreatePhysxBodies:1]]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[fx.SkipVectorVMBackendOptimizations:1]]
[2021.02.19-21.39.09:644][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.19-21.39.09:644][  0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]]
[2021.02.19-21.39.09:644][  0]LogInit: Unix hardware info:
[2021.02.19-21.39.09:644][  0]LogInit:  - we are the first instance of this executable
[2021.02.19-21.39.09:644][  0]LogInit:  - this process' id (pid) is 14, parent process' id (ppid) is 1
[2021.02.19-21.39.09:644][  0]LogInit:  - we are not running under debugger
[2021.02.19-21.39.09:644][  0]LogInit:  - machine network name is 'ip-172-31-21-140'
[2021.02.19-21.39.09:644][  0]LogInit:  - user name is 'ue4' (ue4)
[2021.02.19-21.39.09:644][  0]LogInit:  - we're logged in locally
[2021.02.19-21.39.09:644][  0]LogInit:  - we're running with rendering
[2021.02.19-21.39.09:644][  0]LogInit:  - CPU: GenuineIntel 'Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz' (signature: 0x50657)
[2021.02.19-21.39.09:644][  0]LogInit:  - Number of physical cores available for the process: 2
[2021.02.19-21.39.09:644][  0]LogInit:  - Number of logical cores available for the process: 4
[2021.02.19-21.39.09:644][  0]LogInit:  - Cache line size: 64
[2021.02.19-21.39.09:644][  0]LogInit:  - Memory allocator used: binned2
[2021.02.19-21.39.09:644][  0]LogInit:  - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
[2021.02.19-21.39.09:645][  0]LogInit:  - This is an internal build.
[2021.02.19-21.39.09:645][  0]LogCore: Benchmarking clocks:
[2021.02.19-21.39.09:645][  0]LogCore:  - CLOCK_MONOTONIC (id=1) can sustain 41786762 (41787K, 42M) calls per second without zero deltas.
[2021.02.19-21.39.09:645][  0]LogCore:  - CLOCK_MONOTONIC_RAW (id=4) can sustain 41182749 (41183K, 41M) calls per second without zero deltas.
[2021.02.19-21.39.09:645][  0]LogCore:  - CLOCK_MONOTONIC_COARSE (id=6) can sustain 134761102 (134761K, 135M) calls per second with 99.999807% zero deltas.
[2021.02.19-21.39.09:645][  0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas.
[2021.02.19-21.39.09:645][  0]LogInit: Unix-specific commandline switches:
[2021.02.19-21.39.09:645][  0]LogInit:  -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence)
[2021.02.19-21.39.09:645][  0]LogInit:  -jemalloc - use jemalloc for all memory allocation
[2021.02.19-21.39.09:645][  0]LogInit:  -binnedmalloc - use binned malloc  for all memory allocation
[2021.02.19-21.39.09:645][  0]LogInit:  -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache
[2021.02.19-21.39.09:645][  0]LogInit:  -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF)
[2021.02.19-21.39.09:645][  0]LogInit:  -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF)
[2021.02.19-21.39.09:645][  0]LogInit:  -preloadmodulesymbols - Loads the main module symbols file into memory (OFF)
[2021.02.19-21.39.09:645][  0]LogInit:  -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal
[2021.02.19-21.39.09:645][  0]LogInit:  -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl)
[2021.02.19-21.39.09:645][  0]LogInit:  -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl)
[2021.02.19-21.39.09:645][  0]LogInit:  -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini)
[2021.02.19-21.39.09:645][  0]LogInit:  - Physical RAM available (not considering process quota): 16 GB (15718 MB, 16095336 KB, 16481624064 bytes)
[2021.02.19-21.39.09:645][  0]LogInit:  - VirtualMemoryAllocator pools will grow at scale 1.4
[2021.02.19-21.39.09:645][  0]LogInit:  - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change)
[2021.02.19-21.39.09:656][  0]LogInit: Physics initialised using underlying interface: PhysX
[2021.02.19-21.39.09:656][  0]LogInit: Using OS detected language (en-US-POSIX).
[2021.02.19-21.39.09:656][  0]LogInit: Using OS detected locale (en-US-POSIX).
[2021.02.19-21.39.09:657][  0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used.
[2021.02.19-21.39.09:667][  0]LogHAL: Warning: Splash screen image not found.
[2021.02.19-21.39.09:670][  0]LogSlate: New Slate User Created.  User Index 0, Is Virtual User: 0
[2021.02.19-21.39.09:670][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
[2021.02.19-21.39.09:671][  0]LogInit: Using SDL_WINDOW_OPENGL
[2021.02.19-21.39.09:671][  0]LogLinux: Warning: MessageBox: Warning: OpenGL is deprecated, please use Vulkan.: Message: Cursors are not currently supported: 
[2021.02.19-21.39.09:671][  0]Message dialog closed, result: Cancel, title: Message, text: Warning: OpenGL is deprecated, please use Vulkan.
[2021.02.19-21.39.09:671][  0]LogLinux: Warning: MessageBox: Unable to dynamically load libGL. SDL error: "No dynamic GL support in current SDL video driver (dummy)": Insufficient drivers or hardware: No dynamic GL support in current SDL video driver (dummy): 
[2021.02.19-21.39.09:671][  0]LogCore: FUnixPlatformMisc::RequestExit(1)
ubuntu@ip-172-31-21-140:~/containers/runtime
lukehb commented 3 years ago

Thank you for the more verbose log output.


Just to clear this up, unlike our 4.23 release, our Pixel Streaming for Linux 4.25 uses Vulkan, OpenGL is not supported in the 4.25 version. This means for our 4.25 version -opengl4 will not work.

Additionally, OpenGL support is deprecated in UE 4.25 anyway, you will note in the logs:

Warning: OpenGL is deprecated, please use Vulkan

Anyway, with that aside, I'm going to focus on the first log. I think this is the relevant section before the crash:

0x00007f461d18dfb7 libc.so.6!gsignal(+0xc7)
0x00007f461d18f921 libc.so.6!abort(+0x140)
0x000000000768d778 MyProject2!rtc::webrtc_checks_impl::FatalLog(char const*, int, char const*, rtc::webrtc_checks_impl::CheckArgType const*, ...)()
0x0000000007954de0 MyProject2!webrtc::adm_helpers::Init(webrtc::AudioDeviceModule*)()
0x000000000794ac2e MyProject2!cricket::WebRtcVoiceEngine::Init()()
0x000000000792d29d MyProject2!cricket::CompositeMediaEngine<cricket::WebRtcVoiceEngine, cricket::WebRtcVideoEngine>::Init()()
0x0000000007a17ce6 MyProject2!rtc::FunctorMessageHandler<bool, cricket::ChannelManager::Init()::$_2>::OnMessage(rtc::Message*)()
0x000000000769d4f5 MyProject2!rtc::MessageQueue::Dispatch(rtc::Message*)()
0x00000000076a70e8 MyProject2!rtc::Thread::ReceiveSendsFromThread(rtc::Thread const*)()
0x000000000769c7d6 MyProject2!rtc::MessageQueue::Get(rtc::Message*, int, bool)()
0x00000000076a6b88 MyProject2!rtc::Thread::Run()()
0x00000000076a6a7a MyProject2!rtc::Thread::PreRun(void*)()
0x00007f461f9626db libpthread.so.0!UnknownFunction(0x76da)
0x00007f461d27071f libc.so.6!clone(+0x3e)
[2021.02.19-21.35.30:551][  0]LogExit: Executing StaticShutdownAfterError

What this callstack tells me is that it is initialising WebRTC's audio engine and then fails. This is the same problem @avg07 had here.

In that case @avg07 solved it like so,

I solved the problem by adding a parameter to the docker-run command: -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native The problem was with the sound.

My docker-run: sudo docker run --rm --gpus=all -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host demo-425:6 -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888

In your case you are already bind mounting pulse audio, so I'm a little confused. Can you run a more minimal command for me:

docker run -it --gpus=all -v ${XDG_RUNTIME_DIR}/pulse/native:${XDG_RUNTIME_DIR}/pulse/native --network=host pixelbuild:web bash -c "/home/ue4/project/MyProject2.sh -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen"

Additionally, can you ensure your AWS machine has pulse audio installed on the host:

sudo apt install pulseaudio

Furthermore, reviewing your earlier logs, I am somewhat concerned to see:

xdg-user-dir: not found

Is that still happening?

dai-martov commented 3 years ago

Thanks for the feedback, i installed pulseaudio on the host device, and i ran the command above, and below i just copied the relevant logs:

[2021.02.21-18.07.59:757][  0]LogInit: Initializing FReadOnlyCVARCache
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Sample Rate:                                              48000
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Callback Buffer Frame Size Requested: 1024
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Callback Buffer Frame Size To Use:        1024
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Number of buffers to queue:                       2
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Max Channels (voices):                            32
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display:   Number of Async Source Workers:           0
[2021.02.21-18.07.59:758][  0]LogAudio: Display: AudioDevice MaxSources: 32
[2021.02.21-18.07.59:758][  0]LogAudio: Display: Using built-in audio occlusion.
[2021.02.21-18.07.59:758][  0]LogAudioMixer: Display: Initializing audio mixer.
[2021.02.21-18.07.59:769][  0]LogAudioMixerSDL: Display: Initialized SDL using alsa platform API backend.
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM default
[2021.02.21-18.07.59:771][  0]LogAudioMixerSDL: Error: ALSA: Couldn't open audio device: No such file or directory
[2021.02.21-18.07.59:771][  0]LogAudioMixerSDL: Opening default audio device (device index -1)
ALSA lib confmisc.c:767:(parse_card) cannot find card '0'
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_card_driver returned error: No such file or directory
ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_concat returned error: No such file or directory
ALSA lib confmisc.c:1246:(snd_func_refer) error evaluating name
ALSA lib conf.c:4528:(_snd_config_evaluate) function snd_func_refer returned error: No such file or directory
ALSA lib conf.c:5007:(snd_config_expand) Evaluate error: No such file or directory
ALSA lib pcm.c:2495:(snd_pcm_open_noupdate) Unknown PCM default
[2021.02.21-18.07.59:771][  0]LogAudioMixerSDL: Error: ALSA: Couldn't open audio device: No such file or directory
[2021.02.21-18.07.59:869][  0]LogAudio: Warning: FAudioDevice::Init Failed!
[2021.02.21-18.07.59:869][  0]LogAudio: Display: Audio device could not be initialized. Please check the value for AudioDeviceModuleName and AudioMixerModuleName in [Platform]Engine.ini.
[2021.02.21-18.07.59:869][  0]LogAudio: Display: Audio device could not be initialized. Please check the value for AudioDeviceModuleName and AudioMixerModuleName in [Platform]Engine.ini.
[2021.02.21-18.07.59:869][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
[2021.02.21-18.07.59:869][  0]LogInit: Texture streaming: Enabled
[2021.02.21-18.07.59:873][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2021.02.21-18.07.59:873][  0]LogInit: Display: Game Engine Initialized.
[2021.02.21-18.07.59:874][  0]LogCUDA: Initialising Cuda.
[2021.02.21-18.08.00:004][  0]LogCUDA: GPU Device 0 selected!
[2021.02.21-18.08.00:004][  0]LogAVEncoder: Available video encoders: None
[2021.02.21-18.08.00:004][  0]LogAVEncoder: Available audio encoders: , wmf(aac)
[2021.02.21-18.08.00:004][  0]PixelPlayer: Warning: Failed to create DXGI Manager and Device
[2021.02.21-18.08.00:013][  0]LogCudaVideoEncoder: FCudaVideoEncoder initialization with 1920*1080, 60 FPS
[2021.02.21-18.08.00:031][  0]LogCudaVideoEncoder: Created texture 0x7f2b9267fca0 for CUDA
[2021.02.21-18.08.00:037][  0]LogCudaVideoEncoder: Created texture 0x7f2b9267fb80 for CUDA
[2021.02.21-18.08.00:043][  0]LogCudaVideoEncoder: Created texture 0x7f2b9267fa60 for CUDA
[2021.02.21-18.08.00:049][  0]LogCudaVideoEncoder: CudaEnc initialised
[2021.02.21-18.08.00:049][  0]LogInit: Display: Starting Game.
[2021.02.21-18.08.00:049][  0]LogNet: Browse: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.21-18.08.00:049][  0]LogLoad: LoadMap: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.21-18.08.00:049][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
XYXYXY XYXYXY Clearnupworld 0x7f2b8a3f88f0 -> (nil)
[2021.02.21-18.08.00:050][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true

#
# Fatal error in: ../../media/engine/adm_helpers.cc, line 38
# last system error: 0
# Check failed: 0 == adm->Init() (0 vs. -1)
# Failed to initialize the ADM.Signal 6 caught.
Malloc Size=65538 LargeMemoryPoolOffset=65554
CommonUnixCrashHandler: Signal=6
[2021.02.21-18.08.00:061][  0]LogCore: === Critical error: ===
Unhandled Exception: SIGABRT: abort() called

[2021.02.21-18.08.00:061][  0]LogCore: Fatal error!

0x00007f2bc674cfb7 libc.so.6!gsignal(+0xc7)
0x00007f2bc674e921 libc.so.6!abort(+0x140)
0x000000000768d778 MyProject2!rtc::webrtc_checks_impl::FatalLog(char const*, int, char const*, rtc::webrtc_checks_impl::CheckArgType const*, ...)()
0x0000000007954de0 MyProject2!webrtc::adm_helpers::Init(webrtc::AudioDeviceModule*)()
0x000000000794ac2e MyProject2!cricket::WebRtcVoiceEngine::Init()()
0x000000000792d29d MyProject2!cricket::CompositeMediaEngine<cricket::WebRtcVoiceEngine, cricket::WebRtcVideoEngine>::Init()()
0x0000000007a17ce6 MyProject2!rtc::FunctorMessageHandler<bool, cricket::ChannelManager::Init()::$_2>::OnMessage(rtc::Message*)()
0x000000000769d4f5 MyProject2!rtc::MessageQueue::Dispatch(rtc::Message*)()
0x00000000076a70e8 MyProject2!rtc::Thread::ReceiveSendsFromThread(rtc::Thread const*)()
0x000000000769c7d6 MyProject2!rtc::MessageQueue::Get(rtc::Message*, int, bool)()
0x00000000076a6b88 MyProject2!rtc::Thread::Run()()
0x00000000076a6a7a MyProject2!rtc::Thread::PreRun(void*)()
0x00007f2bc8f216db libpthread.so.0!UnknownFunction(0x76da)
0x00007f2bc682f71f libc.so.6!clone(+0x3e)

[2021.02.21-18.08.00:066][  0]LogExit: Executing StaticShutdownAfterError
Engine crash handling finished; re-raising signal 6 for the default handler. Good bye.
Aborted (core dumped)

It would be fine if we temporarily disable audio device just to have the game running. I also tried with the argument '-nosound' but still didn't work

dai-martov commented 3 years ago

For this error xdg-user-dir: not found

i solved it with apt-get install -y xdg-user-dirs xdg-utils

dai-martov commented 3 years ago

I tried to run the game on the host instance itself, and it seems to run and connect with the signalling web server, however i get this log and the game doesn't get streamed on the browser, it just freezes and says

err

I set the environment variable:

ubuntu@ip-172-31-21-140:~/containers/runtime/project$ echo $NVIDIA_DRIVER_CAPABILITIES
compute,utility,graphics,compat32,utility,video

then run : ./MyProject2.sh -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen

PixelStreamer: FPlayerSession::FPlayerSession: PlayerId=105, quality controller: 1
[2021.02.21-20.18.19:512][348]PixelStreamer: FPlayerSession::OnRenegotiationNeeded : PlayerId=105
[2021.02.21-20.18.19:512][348]PixelStreamer: FPlayerSession::OnRenegotiationNeeded : PlayerId=105
[2021.02.21-20.18.19:512][348]PixelStreamer: FPlayerSession::OnSignalingChange : PlayerId=105, NewState=HaveRemoteOffer
[2021.02.21-20.18.19:512][348]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 550d77ae-df37-401d-ae28-a4b61fa60917.local 62139 typ host generation 0 ufrag 7tNG network-cost 999","sdpMid":"0","sdpMLineIndex":0},"playerId":105}
[2021.02.21-20.18.19:513][348]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 550d77ae-df37-401d-ae28-a4b61fa60917.local 62141 typ host generation 0 ufrag 7tNG network-cost 999","sdpMid":"1","sdpMLineIndex":1},"playerId":105}
[2021.02.21-20.18.19:514][348]PixelStreamer: FPlayerSession::OnSignalingChange : PlayerId=105, NewState=Stable
[2021.02.21-20.18.19:515][348]PixelStreamer: FPlayerSession::OnIceConnectionChange : PlayerId=105, NewState=IceConnectionChecking
[2021.02.21-20.18.19:515][348]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 550d77ae-df37-401d-ae28-a4b61fa60917.local 62143 typ host generation 0 ufrag 7tNG network-cost 999","sdpMid":"2","sdpMLineIndex":2},"playerId":105}
[2021.02.21-20.18.19:515][348]PixelStreamer: FPlayerSession::OnIceGatheringChange : PlayerId=105, NewState=IceGatheringGathering
[2021.02.21-20.18.19:515][348]PixelStreamer: FPlayerSession::OnIceCandidate : PlayerId=105
[2021.02.21-20.18.19:532][350]LogCudaVideoEncoder: Created texture 0x7f29ea7a5e00 for CUDA
[2021.02.21-20.18.19:532][350]PixelStreamer: WebRTC VideoEncoder created, quality controller
[2021.02.21-20.18.19:532][350]LogCudaVideoEncoder: Buffer #0 (0) dropped
[2021.02.21-20.18.19:549][351]LogCudaVideoEncoder: Buffer #1 (0) dropped
[2021.02.21-20.18.19:566][352]LogCudaVideoEncoder: Buffer #2 (0) dropped
[2021.02.21-20.18.19:582][353]LogCudaVideoEncoder: Buffer #3 (0) dropped
[2021.02.21-20.18.19:599][354]LogCudaVideoEncoder: Buffer #4 (0) dropped
[2021.02.21-20.18.19:615][355]LogCudaVideoEncoder: Buffer #5 (0) dropped
[2021.02.21-20.18.19:616][355]PixelStreamer: FPlayerSession::OnIceCandidate : PlayerId=105
[2021.02.21-20.18.19:616][355]PixelStreamer: FPlayerSession::OnIceGatheringChange : PlayerId=105, NewState=IceGatheringComplete
[2021.02.21-20.18.19:632][356]LogCudaVideoEncoder: Buffer #6 (0) dropped
[2021.02.21-20.18.19:649][357]LogCudaVideoEncoder: Buffer #7 (0) dropped
[2021.02.21-20.18.19:665][358]LogCudaVideoEncoder: Buffer #8 (0) dropped
[2021.02.21-20.18.19:682][359]LogCudaVideoEncoder: Buffer #9 (0) dropped
[2021.02.21-20.18.19:699][360]LogCudaVideoEncoder: Buffer #10 (0) dropped
[2021.02.21-20.18.19:715][361]LogCudaVideoEncoder: Buffer #11 (0) dropped
[2021.02.21-20.18.19:732][362]LogCudaVideoEncoder: Buffer #12 (0) dropped
lukehb commented 3 years ago

@dai-martov I'm just going to copy and paste some information from our Unreal Containers website which I think is relevant to your container setup (i.e. I should have told you to sudo apt install pulseaudio-utils and then do the following):

If you want to enable audio support in your containers then the simplest option is to use PulseAudio. This will require the PulseAudio client libraries, which can be installed under Debian-based distributions via the pulseaudio-utils system package. You will also need to add the following directives to the /etc/pulse/client.conf configuration file:

# Connect to the host's PulseAudio server using the mounted UNIX socket
default-server = unix:/run/user/1000/pulse/native

# Prevent a PulseAudio server from running in the container
autospawn = no
daemon-binary = /bin/true

# Prevent the use of shared memory
enable-shm = false

I didn't write these docs, @adamrehn did. @adamrehn Is one meant to install pulseaudio-utils on host and in the container? And the conf, is that conf meant to be modified on the host or the container? Based on the comments, I am thinking the conf is to be modified in the container, yes?

@dai-martov Regarding it not connecting in browser, would you mind checking the browser logs to see if everything is working browser-side. In the browser, on the broken page Crtl+Shit+I then click console and copy logs (might require a refresh).

dai-martov commented 3 years ago

Thanks for your response. The game build can run successfully in the container now. But now i have the same issue as when i ran it on the host instance. This is the console log in the browser (Chrome): (I'm not sure what to look for in this log)

Received answer:
[object Object]
webRtcPlayer.js:62 signaling state change: Event {isTrusted: true, type: "signalingstatechange", target: RTCPeerConnection, currentTarget: RTCPeerConnection, eventPhase: 2, …}bubbles: falsecancelBubble: falsecancelable: falsecomposed: falsecurrentTarget: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}defaultPrevented: falseeventPhase: 0isTrusted: truepath: []returnValue: truesrcElement: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}target: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}timeStamp: 2201.9949999994424type: "signalingstatechange"__proto__: Event
webRtcPlayer.js:74 handleOnTrack [MediaStream]
webRtcPlayer.js:76 setting video stream from ontrack
webRtcPlayer.js:74 handleOnTrack [MediaStream]
webRtcPlayer.js:70 ice gathering state change: Event {isTrusted: true, type: "icegatheringstatechange", target: RTCPeerConnection, currentTarget: RTCPeerConnection, eventPhase: 2, …}bubbles: falsecancelBubble: falsecancelable: falsecomposed: falsecurrentTarget: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}defaultPrevented: falseeventPhase: 0isTrusted: truepath: []returnValue: truesrcElement: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}target: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}timeStamp: 2216.440000000148type: "icegatheringstatechange"__proto__: Event
webRtcPlayer.js:111 ICE candidate RTCPeerConnectionIceEvent {isTrusted: true, candidate: null, type: "icecandidate", target: RTCPeerConnection, currentTarget: RTCPeerConnection, …}bubbles: falsecancelBubble: falsecancelable: falsecandidate: nullcomposed: falsecurrentTarget: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}defaultPrevented: falseeventPhase: 0isTrusted: truepath: []returnValue: truesrcElement: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}target: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}timeStamp: 2216.4450000018405type: "icecandidate"__proto__: RTCPeerConnectionIceEvent
app.js:1508 <- SS: {"type":"iceCandidate","candidate":{"sdpMid":"0","sdpMLineIndex":0,"candidate":"candidate:236076347 1 udp 2122260223 172.31.21.140 44365 typ host generation 0 ufrag SZqP network-id 1 network-cost 50"}}
webRtcPlayer.js:228 ICE candidate:  {sdpMid: "0", sdpMLineIndex: 0, candidate: "candidate:236076347 1 udp 2122260223 172.31.21.140…eration 0 ufrag SZqP network-id 1 network-cost 50"}candidate: "candidate:236076347 1 udp 2122260223 172.31.21.140 44365 typ host generation 0 ufrag SZqP network-id 1 network-cost 50"sdpMLineIndex: 0sdpMid: "0"__proto__: Object
webRtcPlayer.js:66 ice connection state change: Event {isTrusted: true, type: "iceconnectionstatechange", target: RTCPeerConnection, currentTarget: RTCPeerConnection, eventPhase: 2, …}bubbles: falsecancelBubble: falsecancelable: falsecomposed: falsecurrentTarget: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}defaultPrevented: falseeventPhase: 0isTrusted: truepath: []returnValue: truesrcElement: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}target: RTCPeerConnection {_eventMap: {…}, _sctp: {…}, localDescription: RTCSessionDescription, currentLocalDescription: RTCSessionDescription, _ontrack: ƒ, …}timeStamp: 2218.0699999989884type: "iceconnectionstatechange"__proto__: Event
webRtcPlayer.js:231 ICE candidate successfully added
app.js:1508 <- SS: {"type":"iceCandidate","candidate":{"sdpMid":"0","sdpMLineIndex":0,"candidate":"candidate:1083294155 1 tcp 1518280447 172.31.21.140 42005 typ host tcptype passive generation 0 ufrag SZqP network-id 1 network-cost 50"}}
webRtcPlayer.js:228 ICE candidate:  {sdpMid: "0", sdpMLineIndex: 0, candidate: "candidate:1083294155 1 tcp 1518280447 172.31.21.14…eration 0 ufrag SZqP network-id 1 network-cost 50"}candidate: "candidate:1083294155 1 tcp 1518280447 172.31.21.140 42005 typ host tcptype passive generation 0 ufrag SZqP network-id 1 network-cost 50"sdpMLineIndex: 0sdpMid: "0"__proto__: Object
webRtcPlayer.js:231 ICE candidate successfully added
21webRtcPlayer.js:152 ----------------------------- Stats start -----------------------------
webRtcPlayer.js:66 ice connection state change: Event {isTrusted: true, type: "iceconnectionstatechange", target: RTCPeerConnection, currentTarget: RTCPeerConnection, eventPhase: 2, …}
53
lukehb commented 3 years ago

The game build can run successfully in the container now.

That is good news, what did you do to make it run?

I will get some more eyes on these logs to see what we can find.

lukehb commented 3 years ago

Can you also post the full engine logs when you try to connect to browser (now that the Engine is now crashing)?

lukehb commented 3 years ago

Also can you try not running in container and try: ./MyProject2.sh -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -ForceRes -ResX=1920 -ResY=1080

dai-martov commented 3 years ago

Here's the engine log:

ubuntu@ip-172-31-21-140:~/containers/runtime/project$ ./MyProject2.sh -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -ForceRes -ResX=1920 -ResY=1080
- Existing per-process limit (soft=8192, hard=8192) is enough for us (need only 8192)
Increasing per-process limit of core file size to infinity.
LogPakFile: Display: Found Pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak attempting to mount.
LogPakFile: Display: Mounting pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak.
LogPlatformFile: Using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 8 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.034815
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +0:00, Platform Override: ''
LogPluginManager: Mounting plugin PixelStreaming
LogPluginManager: Mounting plugin CUDA
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin AnimationSharing
LogPluginManager: Mounting plugin SignificanceManager
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin GeometryMode
LogPluginManager: Mounting plugin DatasmithContent
LogPluginManager: Mounting plugin VariantManagerContent
LogPluginManager: Mounting plugin AlembicImporter
LogPluginManager: Mounting plugin GeometryCache
LogPluginManager: Mounting plugin AutomationUtils
LogPluginManager: Mounting plugin ScreenshotTools
LogPluginManager: Mounting plugin BackChannel
LogPluginManager: Mounting plugin ChaosCloth
LogPluginManager: Mounting plugin ChaosClothEditor
LogPluginManager: Mounting plugin ChaosEditor
LogPluginManager: Mounting plugin PlanarCut
LogPluginManager: Mounting plugin GeometryProcessing
LogPluginManager: Mounting plugin EditableMesh
LogPluginManager: Mounting plugin GeometryCollectionPlugin
LogPluginManager: Mounting plugin ProceduralMeshComponent
LogPluginManager: Mounting plugin ChaosSolverPlugin
LogPluginManager: Mounting plugin ChaosNiagara
LogPluginManager: Mounting plugin Niagara
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin PlatformCrypto
LogPluginManager: Mounting plugin AvfMedia
LogPluginManager: Mounting plugin ImgMedia
LogPluginManager: Mounting plugin MediaCompositing
LogPluginManager: Mounting plugin WmfMedia
LogPluginManager: Mounting plugin MeshPainting
LogPluginManager: Mounting plugin TcpMessaging
LogPluginManager: Mounting plugin UdpMessaging
LogPluginManager: Mounting plugin ActorSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin MatineeToLevelSequence
LogPluginManager: Mounting plugin TemplateSequence
LogPluginManager: Mounting plugin MovieRenderPipeline
LogPluginManager: Mounting plugin EditorScriptingUtilities
LogPluginManager: Mounting plugin NetcodeUnitTest
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin AndroidPermission
LogPluginManager: Mounting plugin AppleImageUtils
LogPluginManager: Mounting plugin ArchVisCharacter
LogPluginManager: Mounting plugin AssetTags
LogPluginManager: Mounting plugin AudioCapture
LogPluginManager: Mounting plugin CableComponent
LogPluginManager: Mounting plugin CustomMeshComponent
LogPluginManager: Mounting plugin ExampleDeviceProfileSelector
LogPluginManager: Mounting plugin GooglePAD
LogPluginManager: Mounting plugin LinuxDeviceProfileSelector
LogPluginManager: Mounting plugin LocationServicesBPLibrary
LogPluginManager: Mounting plugin MobilePatchingUtils
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin SoundFields
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin Synthesis
LogPluginManager: Mounting plugin WebMMoviePlayer
LogPluginManager: Mounting plugin WebMMedia
LogInit: Using libcurl 7.65.3-DEV
LogInit:  - built for x86_64-unknown-linux-gnu
LogInit:  - supports SSL with OpenSSL/1.1.1c
LogInit:  - supports HTTP deflate (compression) using libz 1.2.8
LogInit:  - other features:
LogInit:      CURL_VERSION_SSL
LogInit:      CURL_VERSION_LIBZ
LogInit:      CURL_VERSION_IPV6
LogInit:      CURL_VERSION_ASYNCHDNS
LogInit:      CURL_VERSION_LARGEFILE
LogInit:      CURL_VERSION_TLSAUTH_SRP
LogInit:  CurlRequestOptions (configurable via config and command line):
LogInit:  - bVerifyPeer = true  - Libcurl will verify peer certificate
LogInit:  - bUseHttpProxy = false  - Libcurl will NOT use HTTP proxy
LogInit:  - bDontReuseConnections = false  - Libcurl will reuse connections
LogInit:  - MaxHostConnections = 16  - Libcurl will limit the number of connections to a host
LogInit:  - LocalHostAddr = Default
LogInit:  - BufferSize = 65536
LogOnline: OSS: Creating online subsystem instance for: NULL
LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for module [NULL]
LogInit: Build: ++UE4+Release-4.25-CL-13144385
LogInit: Engine Version: 4.25.4-13144385+++UE4+Release-4.25
LogInit: Compatible Engine Version: 4.25.0-13144385+++UE4+Release-4.25
LogInit: Net CL: 13144385
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Jan 30 2021 04:46:57
LogInit: Compiled with Clang: 9.0.1
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.25
LogInit: Command Line:  -PixelStreamingIP=127.0.0.1 -PixelStreamingPort=8888 -RenderOffScreen -ForceRes -ResX=1920 -ResY=1080
LogInit: Base Directory: /home/ubuntu/containers/runtime/project/MyProject2/Binaries/Linux/
LogInit: Allocator: binned2
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 26
LogDevObjectVersion:   Dev-Blueprints (B0D832E4-1F89-4F0D-ACCF-7EB736FD4AA2): 10
LogDevObjectVersion:   Dev-Build (E1C64328-A22C-4D53-A36C-8E866417BD8C): 0
LogDevObjectVersion:   Dev-Core (375EC13C-06E4-48FB-B500-84F0262A717E): 4
LogDevObjectVersion:   Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 38
LogDevObjectVersion:   Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
LogDevObjectVersion:   Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 2
LogDevObjectVersion:   Dev-Networking (A4E4105C-59A1-49B5-A7C5-40C4547EDFEE): 0
LogDevObjectVersion:   Dev-Online (39C831C9-5AE6-47DC-9A44-9C173E1C8E7C): 0
LogDevObjectVersion:   Dev-Physics (78F01B33-EBEA-4F98-B9B4-84EACCB95AA2): 4
LogDevObjectVersion:   Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion:   Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 43
LogDevObjectVersion:   Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 12
LogDevObjectVersion:   Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3
LogDevObjectVersion:   Dev-LoadTimes (C2A15278-BFE7-4AFE-6C17-90FF531DF755): 1
LogDevObjectVersion:   Private-Geometry (6EACA3D4-40EC-4CC1-B786-8BED09428FC5): 3
LogDevObjectVersion:   Dev-AnimPhys (29E575DD-E0A3-4627-9D10-D276232CDCEA): 17
LogDevObjectVersion:   Dev-Anim (AF43A65D-7FD3-4947-9873-3E8ED9C1BB05): 7
LogDevObjectVersion:   Dev-ReflectionCapture (6B266CEC-1EC7-4B8F-A30B-E4D90942FC07): 1
LogDevObjectVersion:   Dev-Automation (0DF73D61-A23F-47EA-B727-89E90C41499A): 1
LogDevObjectVersion:   FortniteMain (601D1886-AC64-4F84-AA16-D3DE0DEAC7D6): 31
LogDevObjectVersion:   Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10
LogDevObjectVersion:   Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1
LogDevObjectVersion:   Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10
LogDevObjectVersion:   Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 37
LogDevObjectVersion:   Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
LogDevObjectVersion:   Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
LogInit: Presizing for max 2097152 objects, including 1 objects not considered by GC, pre-allocating 0 bytes for permanent pool.
LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
LogStreaming: Display: Async Loading initialized: Event Driven Loader: true, Async Loading Thread: false, Async Post Load: true
LogInit: Object subsystem initialized
LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
LogConfig: Setting CVar [[r.setres:1280x720]]
LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[r.setres:1280x720]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:967][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2021.02.22-14.25.33:967][  0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2021.02.22-14.25.33:968][  0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2021.02.22-14.25.33:968][  0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:968][  0]LogInit: Initializing SDL.
[2021.02.22-14.25.33:968][  0]LogInit: Hinting SDL to use 'dummy' video driver.
[2021.02.22-14.25.33:971][  0]LogInit: Initialized SDL 2.0.10 revision: 12952 (hg-12952:bc90ce38f1e2) (compiled against 2.0.10)
[2021.02.22-14.25.33:972][  0]LogInit: Using SDL video driver 'dummy'
[2021.02.22-14.25.33:972][  0]LogInit: Display metrics:
[2021.02.22-14.25.33:972][  0]LogInit:   PrimaryDisplayWidth: 1024
[2021.02.22-14.25.33:972][  0]LogInit:   PrimaryDisplayHeight: 768
[2021.02.22-14.25.33:972][  0]LogInit:   PrimaryDisplayWorkAreaRect:
[2021.02.22-14.25.33:972][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.22-14.25.33:972][  0]LogInit:   VirtualDisplayRect:
[2021.02.22-14.25.33:972][  0]LogInit:     Left=0, Top=0, Right=1024, Bottom=768
[2021.02.22-14.25.33:972][  0]LogInit:   TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.22-14.25.33:972][  0]LogInit:   ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2021.02.22-14.25.33:972][  0]LogInit:   Number of monitors: 1
[2021.02.22-14.25.33:972][  0]LogInit:     Monitor 0
[2021.02.22-14.25.33:972][  0]LogInit:       Name: 0
[2021.02.22-14.25.33:972][  0]LogInit:       ID: display0
[2021.02.22-14.25.33:972][  0]LogInit:       NativeWidth: 1024
[2021.02.22-14.25.33:972][  0]LogInit:       NativeHeight: 768
[2021.02.22-14.25.33:972][  0]LogInit:       bIsPrimary: true
[2021.02.22-14.25.33:972][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.22-14.25.33:972][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.22-14.25.33:972][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.22-14.25.33:973][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.22-14.25.33:973][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.22-14.25.33:974][  0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2021.02.22-14.25.33:974][  0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor]
[2021.02.22-14.25.33:974][  0]LogHAL: Display: Platform has ~ 4 GB [16481624064 / 4294967296 / 16], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.RHICmdBypass:0]]
[2021.02.22-14.25.33:974][  0]LogInit: Going up to parent DeviceProfile [Linux]
[2021.02.22-14.25.33:974][  0]LogInit: Going up to parent DeviceProfile []
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2021.02.22-14.25.33:974][  0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1        ; higher gathering accumulator quality]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1          ; Median3x3 postfilering method]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0       ; no bokeh simulation when gathering]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4                 ; medium number of samples when gathering]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1    ; additive foreground scattering]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2    ; additive background scattering]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1      ; bokeh simulation when scattering]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1         ; only a maximum of 10% of scattered bokeh]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1                ; cheap slight out of focus]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0    ; no bokeh simulation on slight out of focus]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1                ; more stable temporal accumulation]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2021.02.22-14.25.33:975][  0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountPerSlice:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:32.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:32.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2021.02.22-14.25.33:975][  0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2021.02.22-14.25.33:976][  0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.SampleCount:16]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.JitterIntegration:0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:16]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.DeepShadow.SuperSampling:0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.VisibilityPPLL:0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.RasterizationScale:0.5]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[r.HairStrands.VelocityRasterizationScale:1]]
[2021.02.22-14.25.33:976][  0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[net.UseAdaptiveNetUpdateFrequency:0]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[p.chaos.AllowCreatePhysxBodies:1]]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[fx.SkipVectorVMBackendOptimizations:1]]
[2021.02.22-14.25.33:976][  0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [../../../MyProject2/Saved/Config/LinuxNoEditor/Engine.ini]
[2021.02.22-14.25.33:976][  0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]]
[2021.02.22-14.25.33:976][  0]LogInit: Unix hardware info:
[2021.02.22-14.25.33:976][  0]LogInit:  - we are the first instance of this executable
[2021.02.22-14.25.33:976][  0]LogInit:  - this process' id (pid) is 3514, parent process' id (ppid) is 3507
[2021.02.22-14.25.33:976][  0]LogInit:  - we are not running under debugger
[2021.02.22-14.25.33:976][  0]LogInit:  - machine network name is 'ip-172-31-21-140'
[2021.02.22-14.25.33:976][  0]LogInit:  - user name is 'ubuntu' (ubuntu)
[2021.02.22-14.25.33:976][  0]LogInit:  - we're logged in remotely
[2021.02.22-14.25.33:976][  0]LogInit:  - we're running with rendering
[2021.02.22-14.25.33:976][  0]LogInit:  - CPU: GenuineIntel 'Intel(R) Xeon(R) Platinum 8259CL CPU @ 2.50GHz' (signature: 0x50657)
[2021.02.22-14.25.33:976][  0]LogInit:  - Number of physical cores available for the process: 2
[2021.02.22-14.25.33:976][  0]LogInit:  - Number of logical cores available for the process: 4
[2021.02.22-14.25.33:976][  0]LogInit:  - Cache line size: 64
[2021.02.22-14.25.33:976][  0]LogInit:  - Memory allocator used: binned2
[2021.02.22-14.25.33:976][  0]LogInit:  - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
[2021.02.22-14.25.33:976][  0]LogInit:  - This is an internal build.
[2021.02.22-14.25.33:976][  0]LogCore: Benchmarking clocks:
[2021.02.22-14.25.33:976][  0]LogCore:  - CLOCK_MONOTONIC (id=1) can sustain 42999990 (43000K, 43M) calls per second without zero deltas.
[2021.02.22-14.25.33:976][  0]LogCore:  - CLOCK_MONOTONIC_RAW (id=4) can sustain 42295033 (42295K, 42M) calls per second without zero deltas.
[2021.02.22-14.25.33:976][  0]LogCore:  - CLOCK_MONOTONIC_COARSE (id=6) can sustain 139965651 (139966K, 140M) calls per second with 99.999815% zero deltas.
[2021.02.22-14.25.33:976][  0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas.
[2021.02.22-14.25.33:976][  0]LogInit: Unix-specific commandline switches:
[2021.02.22-14.25.33:976][  0]LogInit:  -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence)
[2021.02.22-14.25.33:976][  0]LogInit:  -jemalloc - use jemalloc for all memory allocation
[2021.02.22-14.25.33:976][  0]LogInit:  -binnedmalloc - use binned malloc  for all memory allocation
[2021.02.22-14.25.33:976][  0]LogInit:  -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache
[2021.02.22-14.25.33:976][  0]LogInit:  -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF)
[2021.02.22-14.25.33:976][  0]LogInit:  -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF)
[2021.02.22-14.25.33:976][  0]LogInit:  -preloadmodulesymbols - Loads the main module symbols file into memory (OFF)
[2021.02.22-14.25.33:976][  0]LogInit:  -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal
[2021.02.22-14.25.33:976][  0]LogInit:  -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl)
[2021.02.22-14.25.33:976][  0]LogInit:  -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl)
[2021.02.22-14.25.33:977][  0]LogInit:  -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini)
[2021.02.22-14.25.33:977][  0]LogInit:  - Physical RAM available (not considering process quota): 16 GB (15718 MB, 16095336 KB, 16481624064 bytes)
[2021.02.22-14.25.33:977][  0]LogInit:  - VirtualMemoryAllocator pools will grow at scale 1.4
[2021.02.22-14.25.33:977][  0]LogInit:  - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change)
[2021.02.22-14.25.33:987][  0]LogInit: Physics initialised using underlying interface: PhysX
[2021.02.22-14.25.33:987][  0]LogInit: Using OS detected language (en-US-POSIX).
[2021.02.22-14.25.33:987][  0]LogInit: Using OS detected locale (en-US-POSIX).
[2021.02.22-14.25.33:987][  0]LogTextLocalizationManager: No specific localization for 'en-US-POSIX' exists, so the 'en' localization will be used.
[2021.02.22-14.25.33:997][  0]LogHAL: Warning: Splash screen image not found.
[2021.02.22-14.25.33:999][  0]LogSlate: New Slate User Created.  User Index 0, Is Virtual User: 0
[2021.02.22-14.25.33:999][  0]LogSlate: Slate User Registered.  User Index 0, Is Virtual User: 0
[2021.02.22-14.25.34:000][  0]LogInit: Using SDL_WINDOW_VULKAN
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_acquire_xlib_display
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_report
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_debug_utils
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_direct_mode_display
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_EXT_display_surface_counter
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_device_group_creation
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_display
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_fence_capabilities
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_memory_capabilities
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_external_semaphore_capabilities
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_physical_device_properties2
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_get_surface_capabilities2
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_surface
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_wayland_surface
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xcb_surface
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: - Found instance extension VK_KHR_xlib_surface
Unable to read VR Path Registry from /home/ubuntu/.config/openvr/openvrpaths.vrpath
[2021.02.22-14.25.34:171][  0]LogHMD: Failed to initialize OpenVR with code 110
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: Not using instance layers
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: Using instance extensions
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities
[2021.02.22-14.25.34:171][  0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2
[2021.02.22-14.25.34:227][  0]LogRHI: Warning: Failed to find entry point for vkDestroySurfaceKHR
[2021.02.22-14.25.34:227][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceSupportKHR
[2021.02.22-14.25.34:227][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceCapabilitiesKHR
[2021.02.22-14.25.34:227][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfaceFormatsKHR
[2021.02.22-14.25.34:227][  0]LogRHI: Warning: Failed to find entry point for vkGetPhysicalDeviceSurfacePresentModesKHR
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: Found 1 device(s)
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: Device 0: Tesla T4
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: - API 1.2.133(0x402085) Driver 0x708cc140 VendorId 0x10de
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: - DeviceID 0x1eb8 Type Discrete GPU
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 32 Timestamps 1
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_blend_operation_advanced
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_buffer_device_address
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_calibrated_timestamps
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_conditional_rendering
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_conservative_rasterization
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_custom_border_color
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_depth_clip_enable
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_depth_range_unrestricted
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_descriptor_indexing
[2021.02.22-14.25.34:228][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_discard_rectangles
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_display_control
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_fragment_shader_interlock
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_global_priority
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_host_query_reset
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_index_type_uint8
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_inline_uniform_block
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_line_rasterization
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_memory_budget
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_pci_bus_info
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_pipeline_creation_feedback
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_post_depth_coverage
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_sample_locations
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_sampler_filter_minmax
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_scalar_block_layout
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_separate_stencil_usage
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_demote_to_helper_invocation
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_subgroup_ballot
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_subgroup_vote
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_shader_viewport_index_layer
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_subgroup_size_control
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_texel_buffer_alignment
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_tooling_info
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_transform_feedback
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_vertex_attribute_divisor
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_EXT_ycbcr_image_arrays
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_16bit_storage
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_8bit_storage
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_bind_memory2
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_buffer_device_address
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_create_renderpass2
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_dedicated_allocation
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_depth_stencil_resolve
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_descriptor_update_template
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_device_group
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_draw_indirect_count
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_driver_properties
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_fence
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_fence_fd
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_memory
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_memory_fd
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_semaphore
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_external_semaphore_fd
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_get_memory_requirements2
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_image_format_list
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_imageless_framebuffer
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance1
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance2
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_maintenance3
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_multiview
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_pipeline_executable_properties
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_push_descriptor
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_relaxed_block_layout
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_sampler_ycbcr_conversion
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_separate_depth_stencil_layouts
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_atomic_int64
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_clock
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_draw_parameters
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_float16_int8
[2021.02.22-14.25.34:229][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_float_controls
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_non_semantic_info
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_shader_subgroup_extended_types
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_spirv_1_4
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_storage_buffer_storage_class
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_swapchain
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_swapchain_mutable_format
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_timeline_semaphore
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_uniform_buffer_standard_layout
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_variable_pointers
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_KHR_vulkan_memory_model
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_clip_space_w_scaling
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_compute_shader_derivatives
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_cooperative_matrix
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_corner_sampled_image
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_coverage_reduction_mode
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_dedicated_allocation
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_dedicated_allocation_image_aliasing
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_device_diagnostic_checkpoints
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_device_diagnostics_config
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fill_rectangle
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fragment_coverage_to_color
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_fragment_shader_barycentric
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_framebuffer_mixed_samples
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_geometry_shader_passthrough
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_mesh_shader
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_ray_tracing
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_representative_fragment_test
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_sample_mask_override_coverage
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_scissor_exclusive
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_image_footprint
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_sm_builtins
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shader_subgroup_partitioned
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_shading_rate_image
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_viewport_array2
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NV_viewport_swizzle
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_binary_import
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_device_generated_commands
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_image_view_handle
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: -    Found device extension VK_NVX_multiview_per_view_attributes
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: Using Device 0: Geometry 1 Tessellation 1
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: Found 3 Queue Families
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: Initializing Queue Family 0: 16 queues Gfx Compute Xfer Sparse
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: Initializing Queue Family 1: 2 queues Xfer Sparse
[2021.02.22-14.25.34:230][  0]LogVulkanRHI: Display: Skipping unnecessary Queue Family 2: 8 queues Compute Xfer Sparse
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: Using device layers
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: Using device extensions
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: * VK_KHR_swapchain
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: * VK_KHR_maintenance1
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: * VK_KHR_maintenance2
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: * VK_KHR_external_memory
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: * VK_KHR_external_memory_fd
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 3 Device Memory Heaps; Max memory allocations -1
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 0: Flags 0x1 Size 16106127360 (15360.00 MB) GPU
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 1: Flags 0x0 Size 12361218048 (11788.58 MB)
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 2: Flags 0x1 Size 257949696 (246.00 MB) GPU
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 11 Device Memory Types (Not unified)
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 0: Flags 0x0 Heap 1
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 1: Flags 0x0 Heap 1
[2021.02.22-14.25.34:456][  0]LogVulkanRHI: Display: 2: Flags 0x0 Heap 1
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 3: Flags 0x0 Heap 1
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 4: Flags 0x0 Heap 1
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 5: Flags 0x0 Heap 1
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 6: Flags 0x0 Heap 1
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 7: Flags 0x1 Heap 0  Local
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 8: Flags 0x6 Heap 1  HostVisible HostCoherent
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 9: Flags 0xe Heap 1  HostVisible HostCoherent HostCached
[2021.02.22-14.25.34:457][  0]LogVulkanRHI: Display: 10: Flags 0x7 Heap 2  Local HostVisible HostCoherent
[2021.02.22-14.25.34:485][  0]LogVulkanRHI: Display: FVulkanPipelineStateCacheManager: Binary pipeline cache '../../../MyProject2/Saved/VulkanPSO.cache.10de.1eb8' not found.
[2021.02.22-14.25.34:493][  0]LogVulkanRHI: Display: Nvidia User Driver Version = 450.51
[2021.02.22-14.25.34:498][  0]LogRHI: Texture pool is 10377 MB (70% of 14825 MB)
[2021.02.22-14.25.34:498][  0]LogShaderLibrary: Display: Using ../../../MyProject2/Content/ShaderArchive-Global-SF_VULKAN_SM5.ushaderbytecode for material shader code. Total 1663 unique shaders.
[2021.02.22-14.25.34:498][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library Global
[2021.02.22-14.25.34:499][  0]LogTemp: Warning: Clearing the OS Cache
[2021.02.22-14.25.34:500][  0]LogPakFile: New pak file ../../../MyProject2/Content/Paks/MyProject2-LinuxNoEditor.pak added to pak precacher.
[2021.02.22-14.25.34:544][  0]LogSlate: Using FreeType 2.10.0
[2021.02.22-14.25.34:544][  0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1
[2021.02.22-14.25.34:586][  0]LogShaderLibrary: Display: Using ../../../MyProject2/Content/ShaderArchive-MyProject2-SF_VULKAN_SM5.ushaderbytecode for material shader code. Total 2105 unique shaders.
[2021.02.22-14.25.34:586][  0]LogShaderLibrary: Display: Cooked Context: Using Shared Shader Library MyProject2
[2021.02.22-14.25.34:586][  0]LogRHI: Display: Opened pipeline cache after state change and enqueued 0 of 0 tasks for precompile.
[2021.02.22-14.25.34:586][  0]LogRHI: Display: Failed to open default shader pipeline cache for MyProject2 using shader platform 20.
[2021.02.22-14.25.34:586][  0]LogRHI: Display: Failed to open default shader pipeline cache for MyProject2 using shader platform 20.
[2021.02.22-14.25.34:586][  0]LogInit: Using OS detected language (en-US-POSIX).
[2021.02.22-14.25.34:586][  0]LogInit: Using OS detected locale (en-US-POSIX).
[2021.02.22-14.25.34:586][  0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the language.
[2021.02.22-14.25.34:586][  0]LogTextLocalizationManager: No localization for 'en-US-POSIX' exists, so 'en' will be used for the locale.
[2021.02.22-14.25.34:586][  0]LogSlate: FontCache flush requested. Reason: Culture for localization was changed
[2021.02.22-14.25.34:586][  0]LogSlate: FontCache flush requested. Reason: Culture for localization was changed
[2021.02.22-14.25.34:587][  0]LogTextLocalizationManager: Compacting localization data took   1.19ms
[2021.02.22-14.25.34:590][  0]LogAssetRegistry: FAssetRegistry took 0.0019 seconds to start up
[2021.02.22-14.25.34:643][  0]LogStreaming: Display: Flushing async loaders.
[2021.02.22-14.25.34:643][  0]LogPackageLocalizationCache: Processed 16 localized package path(s) for 1 prioritized culture(s) in 0.000035 seconds
[2021.02.22-14.25.34:646][  0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2021.02.22-14.25.34:651][  0]LogNetVersion: MyProject2 1.0.0, NetCL: 13144385, EngineNetVer: 14, GameNetVer: 0 (Checksum: 2431794755)
[2021.02.22-14.25.34:693][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2021.02.22-14.25.34:693][  0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent.
[2021.02.22-14.25.34:717][  0]LogAISub: UAISubsystem AISubsystem (0x7f661a8b6580), frame # 0
[2021.02.22-14.25.34:717][  0]LogAISub: UAISubsystem AIPerceptionSystem (0x7f661ad522c0), frame # 0
[2021.02.22-14.25.34:718][  0]LogAISub: UAISubsystem EnvQueryManager (0x7f661a705000), frame # 0
[2021.02.22-14.25.34:723][  0]LogMoviePlayer: Initializing movie player
[2021.02.22-14.25.34:785][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2021.02.22-14.25.34:786][  0]LogSlate: Slate font cache was flushed
[2021.02.22-14.25.34:792][  0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance
[2021.02.22-14.25.34:796][  0]LogUObjectArray: 13641 objects as part of root set at end of initial load.
[2021.02.22-14.25.34:796][  0]LogUObjectArray: 2 objects are not in the root set, but can never be destroyed because they are in the DisregardForGC set.
[2021.02.22-14.25.34:796][  0]LogUObjectAllocator: 2753432 out of 0 bytes used by permanent object pool.
[2021.02.22-14.25.34:796][  0]LogUObjectArray: CloseDisregardForGC: 13641/13641 objects in disregard for GC pool
[2021.02.22-14.25.34:796][  0]LogEngine: Initializing Engine...
Unable to read VR Path Registry from /home/ubuntu/.config/openvr/openvrpaths.vrpath
Unable to read VR Path Registry from /home/ubuntu/.config/openvr/openvrpaths.vrpath
[2021.02.22-14.25.34:796][  0]LogHMD: Failed to initialize OpenVR with code 110
[2021.02.22-14.25.34:797][  0]LogStats: UGameplayTagsManager::InitializeManager -  0.000 s
[2021.02.22-14.25.34:895][  0]LogPakFile: Precache HighWater 16MB

[2021.02.22-14.25.34:895][  0]LogPakFile: Precache HighWater 32MB

[2021.02.22-14.25.34:895][  0]LogInit: Initializing FReadOnlyCVARCache
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display: Audio Mixer Platform Settings:
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Sample Rate:                                              48000
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Callback Buffer Frame Size Requested: 1024
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Callback Buffer Frame Size To Use:        1024
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Number of buffers to queue:                       2
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Max Channels (voices):                            32
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display:   Number of Async Source Workers:           0
[2021.02.22-14.25.34:895][  0]LogAudio: Display: AudioDevice MaxSources: 32
[2021.02.22-14.25.34:895][  0]LogAudio: Display: Using built-in audio occlusion.
[2021.02.22-14.25.34:895][  0]LogAudioMixer: Display: Initializing audio mixer.
[2021.02.22-14.25.34:899][  0]LogAudioMixerSDL: Display: Initialized SDL using pulseaudio platform API backend.
[2021.02.22-14.25.34:993][  0]LogAudioMixerSDL: Opening default audio device (device index -1)
[2021.02.22-14.25.34:994][  0]LogAudioMixer: Display: Using Audio Device Default Audio Device
[2021.02.22-14.25.34:994][  0]LogAudioMixer: Display: Initializing Sound Submixes...
[2021.02.22-14.25.34:995][  0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault'
[2021.02.22-14.25.34:995][  0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault'
[2021.02.22-14.25.34:997][  0]LogAudioMixer: Display: Creating Master Submix 'MasterEQSubmixDefault'
[2021.02.22-14.25.34:998][  0]LogInit: FAudioDevice initialized.
[2021.02.22-14.25.34:998][  0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use.
[2021.02.22-14.25.34:998][  0]LogInit: Texture streaming: Enabled
[2021.02.22-14.25.35:000][  0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden
[2021.02.22-14.25.35:000][  0]LogInit: Display: Game Engine Initialized.
[2021.02.22-14.25.35:000][  0]LogCUDA: Initialising Cuda.
[2021.02.22-14.25.35:105][  0]LogCUDA: GPU Device 0 selected!
[2021.02.22-14.25.35:105][  0]LogAVEncoder: Available video encoders: None
[2021.02.22-14.25.35:105][  0]LogAVEncoder: Available audio encoders: , wmf(aac)
[2021.02.22-14.25.35:105][  0]PixelPlayer: Warning: Failed to create DXGI Manager and Device
[2021.02.22-14.25.35:106][  0]LogCudaVideoEncoder: FCudaVideoEncoder initialization with 1920*1080, 60 FPS
[2021.02.22-14.25.35:121][  0]LogCudaVideoEncoder: Created texture 0x7f6621fbfca0 for CUDA
[2021.02.22-14.25.35:127][  0]LogCudaVideoEncoder: Created texture 0x7f6621fbfb80 for CUDA
[2021.02.22-14.25.35:133][  0]LogCudaVideoEncoder: Created texture 0x7f6621fbfa60 for CUDA
[2021.02.22-14.25.35:138][  0]LogCudaVideoEncoder: CudaEnc initialised
[2021.02.22-14.25.35:139][  0]LogInit: Display: Starting Game.
[2021.02.22-14.25.35:139][  0]LogNet: Browse: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.22-14.25.35:139][  0]LogLoad: LoadMap: /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap?Name=Player
[2021.02.22-14.25.35:139][  0]LogWorld: BeginTearingDown for /Temp/Untitled_0
XYXYXY XYXYXY Clearnupworld 0x7f661a1929b0 -> (nil)
[2021.02.22-14.25.35:140][  0]LogPixelStreamingSS: Connecting to SS ws://127.0.0.1:8888
[2021.02.22-14.25.35:140][  0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true
[2021.02.22-14.25.35:140][  0]LogSlate: InvalidateAllWidgets triggered.  All widgets were invalidated
[2021.02.22-14.25.35:144][  0]LogUObjectHash: Compacting FUObjectHashTables data took   0.80ms
[2021.02.22-14.25.35:190][  0]LogAIModule: Creating AISystem for world ThirdPersonExampleMap
[2021.02.22-14.25.35:190][  0]LogAISub: UAISubsystem EnvQueryManager (0x7f665a133200), frame # 0
[2021.02.22-14.25.35:190][  0]LogAISub: UAISubsystem AIPerceptionSystem (0x7f6659e6d800), frame # 0
[2021.02.22-14.25.35:191][  0]LogLoad: Game class is 'ThirdPersonGameMode_C'
[2021.02.22-14.25.35:193][  0]LogWorld: Bringing World /Game/ThirdPersonBP/Maps/ThirdPersonExampleMap.ThirdPersonExampleMap up for play (max tick rate 60) at 2021.02.22-14.25.35
[2021.02.22-14.25.35:193][  0]LogWorld: Bringing up level for play took: 0.001498
[2021.02.22-14.25.35:195][  0]LogLoad: Took 0.056740 seconds to LoadMap(/Game/ThirdPersonBP/Maps/ThirdPersonExampleMap)
[2021.02.22-14.25.35:205][  0]LogRHI: Display: ShaderPipelineCache: Paused Batching. 1
[2021.02.22-14.25.35:206][  0]LogRHI: Display: ShaderPipelineCache: Resumed Batching. 0
[2021.02.22-14.25.35:206][  0]LogRHI: Display: ShaderPipelineCache: Batching Resumed.
[2021.02.22-14.25.35:206][  0]LogLoad: (Engine Initialization) Total time: 1.37 seconds
Resizing viewport due to setres change, 1920 x 1080
[2021.02.22-14.25.35:209][  0]LogRenderer: Reallocating scene render targets to support 1920x1080 Format 10 NumSamples 1 (Frame:1).
[2021.02.22-14.25.35:294][  0]LogUMG: Display: Widget Class DefaultCursor_C - Loaded Fast Template.
[2021.02.22-14.25.35:295][  0]LogUMG: Display: Widget Class TextEditBeamCursor_C - Loaded Fast Template.
[2021.02.22-14.25.35:295][  0]LogInit: Adding external input plugin.
[2021.02.22-14.25.35:296][  0]LogContentStreaming: Texture pool size now 1000 MB
[2021.02.22-14.25.35:297][  1]LogPixelStreamingSS: Connected to SS
[2021.02.22-14.25.35:297][  1]LogPixelStreamingSS: <- SS: {"type":"config","peerConnectionOptions":{}}
[2021.02.22-14.25.35:313][  2]LogRenderer: Reallocating scene render targets to support 128x128 Format 10 NumSamples 1 (Frame:1).
[2021.02.22-14.25.35:365][  2]LogRenderer: Reallocating scene render targets to support 1920x1080 Format 10 NumSamples 1 (Frame:2).
[2021.02.22-14.25.38:251][175]LogPixelStreamingSS: <- SS: {"type":"offer","sdp":"v=0\r\no=- 4645987478835330054 2 IN IP4 127.0.0.1\r\ns=-\r\nt=0 0\r\na=group:BUNDLE 0 1 2\r\na=msid-semantic: WMS\r\nm=audio 9 UDP/TLS/RTP/SAVPF 111 103 104 9 0 8 106 105 13 110 112 113 126\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:HQG4\r\na=ice-pwd:3jOMPBhm8gZf9CRguoi3lUb+\r\na=ice-options:trickle\r\na=fingerprint:sha-256 4D:9F:DF:87:DB:AD:9B:BA:61:77:11:09:F1:D6:94:AE:05:0F:CF:5F:E3:57:67:DD:10:17:34:5A:3C:6F:32:0B\r\na=setup:actpass\r\na=mid:0\r\na=extmap:1 urn:ietf:params:rtp-hdrext:ssrc-audio-level\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid\r\na=extmap:5 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id\r\na=extmap:6 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id\r\na=recvonly\r\na=rtcp-mux\r\na=rtpmap:111 opus/48000/2\r\na=rtcp-fb:111 transport-cc\r\na=fmtp:111 minptime=10;useinbandfec=1\r\na=rtpmap:103 ISAC/16000\r\na=rtpmap:104 ISAC/32000\r\na=rtpmap:9 G722/8000\r\na=rtpmap:0 PCMU/8000\r\na=rtpmap:8 PCMA/8000\r\na=rtpmap:106 CN/32000\r\na=rtpmap:105 CN/16000\r\na=rtpmap:13 CN/8000\r\na=rtpmap:110 telephone-event/48000\r\na=rtpmap:112 telephone-event/32000\r\na=rtpmap:113 telephone-event/16000\r\na=rtpmap:126 telephone-event/8000\r\nm=video 9 UDP/TLS/RTP/SAVPF 96 97 98 99 100 101 122 102 121 127 120 125 107 108 109 124 119 123 118 114 115 116\r\nc=IN IP4 0.0.0.0\r\na=rtcp:9 IN IP4 0.0.0.0\r\na=ice-ufrag:HQG4\r\na=ice-pwd:3jOMPBhm8gZf9CRguoi3lUb+\r\na=ice-options:trickle\r\na=fingerprint:sha-256 4D:9F:DF:87:DB:AD:9B:BA:61:77:11:09:F1:D6:94:AE:05:0F:CF:5F:E3:57:67:DD:10:17:34:5A:3C:6F:32:0B\r\na=setup:actpass\r\na=mid:1\r\na=extmap:14 urn:ietf:params:rtp-hdrext:toffset\r\na=extmap:2 http://www.webrtc.org/experiments/rtp-hdrext/abs-send-time\r\na=extmap:13 urn:3gpp:video-orientation\r\na=extmap:3 http://www.ietf.org/id/draft-holmer-rmcat-transport-wide-cc-extensions-01\r\na=extmap:12 http://www.webrtc.org/experiments/rtp-hdrext/playout-delay\r\na=extmap:11 http://www.webrtc.org/experiments/rtp-hdrext/video-content-type\r\na=extmap:7 http://www.webrtc.org/experiments/rtp-hdrext/video-timing\r\na=extmap:8 http://www.webrtc.org/experiments/rtp-hdrext/color-space\r\na=extmap:4 urn:ietf:params:rtp-hdrext:sdes:mid\r\na=extmap:5 urn:ietf:params:rtp-hdrext:sdes:rtp-stream-id\r\na=extmap:6 urn:ietf:params:rtp-hdrext:sdes:repaired-rtp-stream-id\r\na=recvonly\r\na=rtcp-mux\r\na=rtcp-rsize\r\na=rtpmap:96 VP8/90000\r\na=rtcp-fb:96 goog-remb\r\na=rtcp-fb:96 transport-cc\r\na=rtcp-fb:96 ccm fir\r\na=rtcp-fb:96 nack\r\na=rtcp-fb:96 nack pli\r\na=rtpmap:97 rtx/90000\r\na=fmtp:97 apt=96\r\na=rtpmap:98 VP9/90000\r\na=rtcp-fb:98 goog-remb\r\na=rtcp-fb:98 transport-cc\r\na=rtcp-fb:98 ccm fir\r\na=rtcp-fb:98 nack\r\na=rtcp-fb:98 nack pli\r\na=fmtp:98 profile-id=0\r\na=rtpmap:99 rtx/90000\r\na=fmtp:99 apt=98\r\na=rtpmap:100 VP9/90000\r\na=rtcp-fb:100 goog-remb\r\na=rtcp-fb:100 transport-cc\r\na=rtcp-fb:100 ccm fir\r\na=rtcp-fb:100 nack\r\na=rtcp-fb:100 nack pli\r\na=fmtp:100 profile-id=2\r\na=rtpmap:101 rtx/90000\r\na=fmtp:101 apt=100\r\na=rtpmap:122 VP9/90000\r\na=rtcp-fb:122 goog-remb\r\na=rtcp-fb:122 transport-cc\r\na=rtcp-fb:122 ccm fir\r\na=rtcp-fb:122 nack\r\na=rtcp-fb:122 nack pli\r\na=fmtp:122 profile-id=1\r\na=rtpmap:102 H264/90000\r\na=rtcp-fb:102 goog-remb\r\na=rtcp-fb:102 transport-cc\r\na=rtcp-fb:102 ccm fir\r\na=rtcp-fb:102 nack\r\na=rtcp-fb:102 nack pli\r\na=fmtp:102 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42001f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:121 rtx/90000\r\na=fmtp:121 apt=102\r\na=rtpmap:127 H264/90000\r\na=rtcp-fb:127 goog-remb\r\na=rtcp-fb:127 transport-cc\r\na=rtcp-fb:127 ccm fir\r\na=rtcp-fb:127 nack\r\na=rtcp-fb:127 nack pli\r\na=fmtp:127 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42001f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:120 rtx/90000\r\na=fmtp:120 apt=127\r\na=rtpmap:125 H264/90000\r\na=rtcp-fb:125 goog-remb\r\na=rtcp-fb:125 transport-cc\r\na=rtcp-fb:125 ccm fir\r\na=rtcp-fb:125 nack\r\na=rtcp-fb:125 nack pli\r\na=fmtp:125 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=42e01f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:107 rtx/90000\r\na=fmtp:107 apt=125\r\na=rtpmap:108 H264/90000\r\na=rtcp-fb:108 goog-remb\r\na=rtcp-fb:108 transport-cc\r\na=rtcp-fb:108 ccm fir\r\na=rtcp-fb:108 nack\r\na=rtcp-fb:108 nack pli\r\na=fmtp:108 level-asymmetry-allowed=1;packetization-mode=0;profile-level-id=42e01f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:109 rtx/90000\r\na=fmtp:109 apt=108\r\na=rtpmap:124 H264/90000\r\na=rtcp-fb:124 goog-remb\r\na=rtcp-fb:124 transport-cc\r\na=rtcp-fb:124 ccm fir\r\na=rtcp-fb:124 nack\r\na=rtcp-fb:124 nack pli\r\na=fmtp:124 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=4d001f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:119 rtx/90000\r\na=fmtp:119 apt=124\r\na=rtpmap:123 H264/90000\r\na=rtcp-fb:123 goog-remb\r\na=rtcp-fb:123 transport-cc\r\na=rtcp-fb:123 ccm fir\r\na=rtcp-fb:123 nack\r\na=rtcp-fb:123 nack pli\r\na=fmtp:123 level-asymmetry-allowed=1;packetization-mode=1;profile-level-id=64001f;x-google-start-bitrate=10000;x-google-max-bitrate=20000\r\na=rtpmap:118 rtx/90000\r\na=fmtp:118 apt=123\r\na=rtpmap:114 red/90000\r\na=rtpmap:115 rtx/90000\r\na=fmtp:115 apt=114\r\na=rtpmap:116 ulpfec/90000\r\nm=application 9 UDP/DTLS/SCTP webrtc-datachannel\r\nc=IN IP4 0.0.0.0\r\na=ice-ufrag:HQG4\r\na=ice-pwd:3jOMPBhm8gZf9CRguoi3lUb+\r\na=ice-options:trickle\r\na=fingerprint:sha-256 4D:9F:DF:87:DB:AD:9B:BA:61:77:11:09:F1:D6:94:AE:05:0F:CF:5F:E3:57:67:DD:10:17:34:5A:3C:6F:32:0B\r\na=setup:actpass\r\na=mid:2\r\na=sctp-port:5000\r\na=max-message-size:262144\r\n","playerId":102}
[2021.02.22-14.25.38:252][175]PixelStreamer: FPlayerSession::FPlayerSession: PlayerId=102, quality controller: 1
[2021.02.22-14.25.38:255][175]PixelStreamer: FPlayerSession::OnRenegotiationNeeded : PlayerId=102
[2021.02.22-14.25.38:255][175]PixelStreamer: FPlayerSession::OnRenegotiationNeeded : PlayerId=102
[2021.02.22-14.25.38:255][175]PixelStreamer: FPlayerSession::OnSignalingChange : PlayerId=102, NewState=HaveRemoteOffer
[2021.02.22-14.25.38:255][175]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 2578ecaa-0b2f-486e-8825-c85122920905.local 58767 typ host generation 0 ufrag HQG4 network-cost 999","sdpMid":"0","sdpMLineIndex":0},"playerId":102}
[2021.02.22-14.25.38:255][175]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 2578ecaa-0b2f-486e-8825-c85122920905.local 58769 typ host generation 0 ufrag HQG4 network-cost 999","sdpMid":"1","sdpMLineIndex":1},"playerId":102}
[2021.02.22-14.25.38:257][175]PixelStreamer: FPlayerSession::OnSignalingChange : PlayerId=102, NewState=Stable
[2021.02.22-14.25.38:257][175]PixelStreamer: FPlayerSession::OnIceConnectionChange : PlayerId=102, NewState=IceConnectionChecking
[2021.02.22-14.25.38:257][175]LogPixelStreamingSS: <- SS: {"type":"iceCandidate","candidate":{"candidate":"candidate:3988902457 1 udp 2113937151 2578ecaa-0b2f-486e-8825-c85122920905.local 58771 typ host generation 0 ufrag HQG4 network-cost 999","sdpMid":"2","sdpMLineIndex":2},"playerId":102}
[2021.02.22-14.25.38:257][175]PixelStreamer: FPlayerSession::OnIceGatheringChange : PlayerId=102, NewState=IceGatheringGathering
[2021.02.22-14.25.38:257][175]PixelStreamer: FPlayerSession::OnIceCandidate : PlayerId=102
[2021.02.22-14.25.38:284][177]PixelStreamer: WebRTC VideoEncoder created, quality controller
[2021.02.22-14.25.38:284][177]LogCudaVideoEncoder: Buffer #0 (0) dropped
[2021.02.22-14.25.38:301][178]LogCudaVideoEncoder: Buffer #1 (0) dropped
[2021.02.22-14.25.38:318][179]LogCudaVideoEncoder: Buffer #2 (0) dropped
[2021.02.22-14.25.38:334][180]LogCudaVideoEncoder: Buffer #3 (0) dropped
[2021.02.22-14.25.38:351][181]LogCudaVideoEncoder: Buffer #4 (0) dropped
[2021.02.22-14.25.38:368][182]LogCudaVideoEncoder: Buffer #5 (0) dropped
[2021.02.22-14.25.38:368][182]PixelStreamer: FPlayerSession::OnIceCandidate : PlayerId=102
[2021.02.22-14.25.38:368][182]PixelStreamer: FPlayerSession::OnIceGatheringChange : PlayerId=102, NewState=IceGatheringComplete
[2021.02.22-14.25.38:384][183]LogCudaVideoEncoder: Buffer #6 (0) dropped
[2021.02.22-14.25.38:401][184]LogCudaVideoEncoder: Buffer #7 (0) dropped
[2021.02.22-14.25.38:418][185]LogCudaVideoEncoder: Buffer #8 (0) dropped
[2021.02.22-14.25.38:434][186]LogCudaVideoEncoder: Buffer #9 (0) dropped
[2021.02.22-14.25.38:451][187]LogCudaVideoEncoder: Buffer #10 (0) dropped
[2021.02.22-14.25.38:468][188]LogCudaVideoEncoder: Buffer #11 (0) dropped
[2021.02.22-14.25.38:484][189]LogCudaVideoEncoder: Buffer #12 (0) dropped
[2021.02.22-14.25.38:501][190]LogCudaVideoEncoder: Buffer #13 (0) dropped
[2021.02.22-14.25.38:518][191]LogCudaVideoEncoder: Buffer #14 (0) dropped
[2021.02.22-14.25.38:534][192]LogCudaVideoEncoder: Buffer #15 (0) dropped
dai-martov commented 3 years ago

The game build can run successfully in the container now.

That is good news, what did you do to make it run?

I will get some more eyes on these logs to see what we can find.

To get it working, i added these in my Dockerfile

USER root
RUN apt-get update && apt-get install -y xdg-user-dirs xdg-utils
RUN apt-get install -y nodejs npm pulseaudio pulseaudio-utils
RUN echo "default-server = unix:/run/user/1000/pulse/native" >> /etc/pulse/client.conf
RUN echo "autospawn = no" >> /etc/pulse/client.conf
RUN echo "daemon-binary = /bin/true" >> /etc/pulse/client.conf
RUN echo "enable-shm = false" >> /etc/pulse/client.conf
USER ue4
dai-martov commented 3 years ago

I got it to work by adding this line to the cirrus.js code:

let clientConfig = {type: 'config', peerConnectionOptions: { 'iceServers': [{'urls': ['stun:stun.cablenet-as.net:3478']}] }};

thank you very much for your help!

lcdlv commented 3 years ago

@dai-martov I still have problems to connect from outside of the VM.

I add you line here: .... let clientConfig = {type: 'config', peerConnectionOptions: { 'iceServers': [{'urls': ['stun:stun.cablenet-as.net:3478']}] }}; //var clientConfig = { type: 'config', peerConnectionOptions: {} };

// Parse public server address from command line // --publicIp try { if (typeof config.publicIp != 'undefined') { serverPublicIp = config.publicIp.toString(); ....

but I still have "LogCudaVideoEncoder: Buffer #14 (0) dropped" in the game terminal.

I don't know what can I do.

lcdlv commented 3 years ago

https://github.com/adamrehn/pixel-streaming-linux/issues/36