-
Notifications
You must be signed in to change notification settings - Fork 1
/
nohup.out
5772 lines (5772 loc) · 527 KB
/
nohup.out
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Looking for binary: ../../../GeometryTrack2/Config/BinaryConfig.ini
Increasing per-process limit of core file size to infinity.
LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default.
LogConsoleResponse: Display: Failed to find resolution value strings in scalability ini. Falling back to default.
LogPakFile: Display: Found Pak file ../../../GeometryTrack2/Content/Paks/GeometryTrack2-LinuxNoEditor.pak attempting to mount.
LogPakFile: Display: Mounting pak file ../../../GeometryTrack2/Content/Paks/GeometryTrack2-LinuxNoEditor.pak.
LogPakFile: PakFile PrimaryIndexSize=44290
LogPakFile: PakFile PathHashIndexSize=50872
LogPakFile: PakFile FullDirectoryIndexSize=81421
LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: PakFile '../../../GeometryTrack2/Content/Paks/GeometryTrack2-LinuxNoEditor.pak' (chunk index -1, root '../../../') mounted
LogShaderLibrary: Display: ShaderCodeLibraryPakFileMountedCallback: pending pak file info (ChunkID:-1 Root:../../../ File:../../../GeometryTrack2/Content/Paks/GeometryTrack2-LinuxNoEditor.pak)
LogPakFile: OnPakFileMounted2Time == 0.000007
LogPlatformFile: Using cached read wrapper
LogTaskGraph: Started task graph with 5 named threads and 17 total threads with 3 sets of task threads.
LogStats: Stats thread started at 0.144257
LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: ''
LogInit: Display: Loading text-based GConfig....
LogPluginManager: Mounting plugin UnrealCV
LogPluginManager: Mounting plugin Paper2D
LogPluginManager: Mounting plugin AISupport
LogPluginManager: Mounting plugin EnvironmentQueryEditor
LogPluginManager: Mounting plugin LightPropagationVolume
LogPluginManager: Mounting plugin CameraShakePreviewer
LogPluginManager: Mounting plugin GameplayCameras
LogPluginManager: Mounting plugin TemplateSequence
LogPluginManager: Mounting plugin LevelSequenceEditor
LogPluginManager: Mounting plugin OodleData
LogPluginManager: Mounting plugin OodleNetwork
LogPluginManager: Mounting plugin AnimationSharing
LogPluginManager: Mounting plugin SignificanceManager
LogPluginManager: Mounting plugin PluginUtils
LogPluginManager: Mounting plugin PropertyAccessEditor
LogPluginManager: Mounting plugin UObjectPlugin
LogPluginManager: Mounting plugin AssetManagerEditor
LogPluginManager: Mounting plugin FacialAnimation
LogPluginManager: Mounting plugin GeometryMode
LogPluginManager: Mounting plugin SpeedTreeImporter
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 ChaosClothEditor
LogPluginManager: Mounting plugin ChaosCloth
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 PythonScriptPlugin
LogPluginManager: Mounting plugin CharacterAI
LogPluginManager: Mounting plugin MotoSynth
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 MatineeToLevelSequence
LogPluginManager: Mounting plugin OnlineSubsystemNull
LogPluginManager: Mounting plugin OnlineSubsystem
LogPluginManager: Mounting plugin OnlineSubsystemUtils
LogPluginManager: Mounting plugin LauncherChunkInstaller
LogPluginManager: Mounting plugin ActorLayerUtilities
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 ChunkDownloader
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 OpenXREyeTracker
LogPluginManager: Mounting plugin OpenXR
LogPluginManager: Mounting plugin OpenXRHandTracking
LogPluginManager: Mounting plugin LiveLink
LogPluginManager: Mounting plugin Takes
LogPluginManager: Mounting plugin PhysXVehicles
LogPluginManager: Mounting plugin RuntimePhysXCooking
LogPluginManager: Mounting plugin SoundFields
LogPluginManager: Mounting plugin SteamVR
LogPluginManager: Mounting plugin Synthesis
LogPluginManager: Mounting plugin AudioSynesthesia
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.27-CL-18319896
LogInit: Engine Version: 4.27.2-18319896+++UE4+Release-4.27
LogInit: Compatible Engine Version: 4.27.0-17155196+++UE4+Release-4.27
LogInit: Net CL: 17155196
LogInit: OS: GenericOSVersionLabel (GenericOSSubVersionLabel), CPU: 11th Gen Intel(R) Core(TM) i5-11400H @ 2.70GHz, GPU: GenericGPUBrand
LogInit: Compiled (64-bit): Nov 30 2021 07:42:46
LogInit: Compiled with Clang: 11.0.1 (https://github.com/llvm/llvm-project 43ff75f2c3feef64f9d73328230d34dac8832a91)
LogInit: Build Configuration: Development
LogInit: Branch Name: ++UE4+Release-4.27
LogInit: Command Line:
LogInit: Base Directory: /media/snorlax/新加卷/Projects/2023-Active_Tracking_with_Obstructions/gym-unrealcv-1.0-master/gym_unrealcv/envs/UnrealEnv/GeometryTrack2/GeometryTrack2/Binaries/Linux/
LogInit: Allocator: binned2
LogInit: Installed Engine Build: 0
LogDevObjectVersion: Number of dev versions registered: 29
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): 40
LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37
LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3
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): 14
LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0
LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 45
LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13
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): 15
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): 47
LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 1
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): 41
LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1
LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1
LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1
LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2
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 [../../../GeometryTrack2/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]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[con.DebugEarlyDefault:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[r.setres:1280x720]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[r.GPUCrashDebugging:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.12:991][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.MinBulkDataSizeForAsyncLoading:131072]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.AsyncLoadingThreadEnabled:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.EventDrivenLoaderEnabled:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.WarnIfTimeLimitExceeded:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMultiplier:1.5]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.TimeLimitExceededMinTime:0.005]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.UseBackgroundLevelStreaming:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.PriorityAsyncLoadingExtraTime:15.0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.UnregisterComponentsTimeLimit:1.0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[s.FlushStreamingOnExit:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.MaxObjectsNotConsideredByGC:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.SizeOfPermanentObjectPool:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.FlushStreamingOnGC:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.NumRetriesBeforeForcingGC:10]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.AllowParallelGC:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.MaxObjectsInEditor:25165824]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.IncrementalBeginDestroyEnabled:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.CreateGCClusters:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.MinGCClusterSize:5]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.ActorClusteringEnabled:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.BlueprintClusteringEnabled:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.UseDisregardForGCOnDedicatedServers:0]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Setting CVar [[gc.MultithreadedDestructionEnabled:1]]
[2023.10.08-14.14.12:991][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.12:992][ 0]LogInit: Initializing SDL.
[2023.10.08-14.14.13:029][ 0]LogInit: Initialized SDL 2.0.12 revision: 13609 (hg-13609:34cc7d3b69d3) (compiled against 2.0.12)
[2023.10.08-14.14.13:029][ 0]LogInit: Using SDL video driver 'x11'
[2023.10.08-14.14.13:029][ 0]LogInit: Display metrics:
[2023.10.08-14.14.13:029][ 0]LogInit: PrimaryDisplayWidth: 1920
[2023.10.08-14.14.13:029][ 0]LogInit: PrimaryDisplayHeight: 1080
[2023.10.08-14.14.13:029][ 0]LogInit: PrimaryDisplayWorkAreaRect:
[2023.10.08-14.14.13:029][ 0]LogInit: Left=70, Top=27, Right=1920, Bottom=1080
[2023.10.08-14.14.13:029][ 0]LogInit: VirtualDisplayRect:
[2023.10.08-14.14.13:029][ 0]LogInit: Left=70, Top=0, Right=3840, Bottom=1080
[2023.10.08-14.14.13:029][ 0]LogInit: TitleSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2023.10.08-14.14.13:029][ 0]LogInit: ActionSafePaddingSize: X=0.000 Y=0.000 Z=0.000 W=0.000
[2023.10.08-14.14.13:029][ 0]LogInit: Number of monitors: 2
[2023.10.08-14.14.13:029][ 0]LogInit: Monitor 0
[2023.10.08-14.14.13:029][ 0]LogInit: Name: XWAYLAND3 24"
[2023.10.08-14.14.13:029][ 0]LogInit: ID: display0
[2023.10.08-14.14.13:029][ 0]LogInit: NativeWidth: 1920
[2023.10.08-14.14.13:029][ 0]LogInit: NativeHeight: 1080
[2023.10.08-14.14.13:029][ 0]LogInit: bIsPrimary: true
[2023.10.08-14.14.13:029][ 0]LogInit: Monitor 1
[2023.10.08-14.14.13:029][ 0]LogInit: Name: XWAYLAND0 15"
[2023.10.08-14.14.13:029][ 0]LogInit: ID: display1
[2023.10.08-14.14.13:029][ 0]LogInit: NativeWidth: 1920
[2023.10.08-14.14.13:029][ 0]LogInit: NativeHeight: 1080
[2023.10.08-14.14.13:029][ 0]LogInit: bIsPrimary: false
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.ShadowQuality:5]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:10]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:2048]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:2048]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.01]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AOQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VolumetricFog:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridPixelSize:8]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VolumetricFog.GridSizeZ:128]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:8]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:8]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:1000]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:64]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.RefractionQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSR.Quality:3]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DetailMode:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:1 ; High quality]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSS.Scale:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSS.Quality:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:3]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:4.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:128.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:3]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
[2023.10.08-14.14.13:030][ 0]LogLinux: Selected Device Profile: [LinuxNoEditor]
[2023.10.08-14.14.13:030][ 0]LogInit: Applying CVar settings loaded from the selected device profile: [LinuxNoEditor]
[2023.10.08-14.14.13:030][ 0]LogHAL: Display: Platform has ~ 4 GB [16471277568 / 4294967296 / 16], which maps to Smallest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0)
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.RHICmdBypass:0]]
[2023.10.08-14.14.13:030][ 0]LogInit: Going up to parent DeviceProfile [Linux]
[2023.10.08-14.14.13:030][ 0]LogInit: Going up to parent DeviceProfile []
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.SkeletalMeshLODBias:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.ViewDistanceScale:1.0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.PostProcessAAQuality:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@0] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LightFunctionQuality:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.ShadowQuality:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.MaxCascades:1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.MaxResolution:512]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.MaxCSMResolution:512]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.RadiusThreshold:0.06]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.DistanceScale:0.6]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.CSM.TransitionScale:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.Shadow.PreShadowResolutionFactor:0.5]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DistanceFieldShadowing:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.DistanceFieldAO:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.VolumetricFog:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.LightMaxDrawDistanceScale:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.CapsuleShadows:0]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.MotionBlurQuality:4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMipLevelFactor:0.4]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionMaxQuality:100]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionLevels:-1]]
[2023.10.08-14.14.13:030][ 0]LogConfig: Setting CVar [[r.AmbientOcclusionRadiusScale:1.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DepthOfFieldQuality:2]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.RenderTargetPoolMin:400]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.LensFlareQuality:2]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SceneColorFringeQuality:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.EyeAdaptationQuality:2]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.BloomQuality:5]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.FastBlurThreshold:100]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Upscale.Quality:3]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Tonemapper.GrainQuantization:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.LightShaftQuality:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Filter.SizeScale:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Tonemapper.Quality:5]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@0] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.MipBias:16]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.AmortizeCPUToGPUCopy:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.Boost:0.3]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.MaxAnisotropy:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.VT.MaxAnisotropy:4]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.LimitPoolSizeToVRAM:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.PoolSize:400]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.Streaming.MaxEffectiveScreenSize:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@0] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.TranslucencyLightingVolumeDim:24]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.RefractionQuality:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSR.Quality:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSR.HalfResSceneColor:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SceneColorFormat:3]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.DetailMode:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.TranslucencyVolumeBlur:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.MaterialQualityLevel:0 ; Low quality]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.AnisotropicMaterials:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSS.Scale:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSS.SampleSet:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSS.Quality:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSS.HalfRes:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SSGI.Quality:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.EmitterSpawnRateScale:0.125]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.ParticleLightQuality:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:8.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:2.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:16.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMin:2.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.SampleCountMax:16.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.SkyLight.RealTimeReflectionCapture:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[fx.Niagara.QualityLevel:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[foliage.DensityScale:1.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[grass.DensityScale:1.0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Scalability.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyLighting.IntegrationType:2]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.HairStrands.SkyAO.SampleCount:4]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[net.UseAdaptiveNetUpdateFrequency:0]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[p.chaos.AllowCreatePhysxBodies:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[fx.SkipVectorVMBackendOptimizations:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[r.ForceDebugViewModes:1]]
[2023.10.08-14.14.13:031][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [../../../GeometryTrack2/Saved/Config/LinuxNoEditor/Engine.ini]
[2023.10.08-14.14.13:031][ 0]LogConfig: Setting CVar [[g.TimeoutForBlockOnRenderFence:60000]]
[2023.10.08-14.14.13:031][ 0]LogInit: Unix hardware info:
[2023.10.08-14.14.13:031][ 0]LogInit: - we are the first instance of this executable
[2023.10.08-14.14.13:031][ 0]LogInit: - this process' id (pid) is 151917, parent process' id (ppid) is 151916
[2023.10.08-14.14.13:031][ 0]LogInit: - we are not running under debugger
[2023.10.08-14.14.13:031][ 0]LogInit: - machine network name is 'snorlax-Laptop'
[2023.10.08-14.14.13:031][ 0]LogInit: - user name is 'snorlax' (snorlax)
[2023.10.08-14.14.13:031][ 0]LogInit: - we're logged in locally
[2023.10.08-14.14.13:031][ 0]LogInit: - we're running with rendering
[2023.10.08-14.14.13:032][ 0]LogInit: - CPU: GenuineIntel '11th Gen Intel(R) Core(TM) i5-11400H @ 2.70GHz' (signature: 0x806D1)
[2023.10.08-14.14.13:032][ 0]LogInit: - Number of physical cores available for the process: 6
[2023.10.08-14.14.13:032][ 0]LogInit: - Number of logical cores available for the process: 12
[2023.10.08-14.14.13:032][ 0]LogInit: - Cache line size: 64
[2023.10.08-14.14.13:032][ 0]LogInit: - Memory allocator used: binned2
[2023.10.08-14.14.13:032][ 0]LogInit: - This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no
[2023.10.08-14.14.13:032][ 0]LogInit: - This is an internal build.
[2023.10.08-14.14.13:032][ 0]LogCore: Benchmarking clocks:
[2023.10.08-14.14.13:032][ 0]LogCore: - CLOCK_MONOTONIC (id=1) can sustain 72975310 (72975K, 73M) calls per second without zero deltas.
[2023.10.08-14.14.13:032][ 0]LogCore: - CLOCK_MONOTONIC_RAW (id=4) can sustain 71769355 (71769K, 72M) calls per second without zero deltas.
[2023.10.08-14.14.13:032][ 0]LogCore: - CLOCK_MONOTONIC_COARSE (id=6) can sustain 228850672 (228851K, 229M) calls per second with 99.999886% zero deltas.
[2023.10.08-14.14.13:032][ 0]LogCore: Selected clock_id 1 (CLOCK_MONOTONIC) since it is the fastest support clock without zero deltas.
[2023.10.08-14.14.13:032][ 0]LogInit: Unix-specific commandline switches:
[2023.10.08-14.14.13:032][ 0]LogInit: -ansimalloc - use malloc()/free() from libc (useful for tools like valgrind and electric fence)
[2023.10.08-14.14.13:032][ 0]LogInit: -jemalloc - use jemalloc for all memory allocation
[2023.10.08-14.14.13:032][ 0]LogInit: -binnedmalloc - use binned malloc for all memory allocation
[2023.10.08-14.14.13:032][ 0]LogInit: -filemapcachesize=NUMBER - set the size for case-sensitive file mapping cache
[2023.10.08-14.14.13:032][ 0]LogInit: -useksm - uses kernel same-page mapping (KSM) for mapped memory (OFF)
[2023.10.08-14.14.13:032][ 0]LogInit: -ksmmergeall - marks all mmap'd memory pages suitable for KSM (OFF)
[2023.10.08-14.14.13:032][ 0]LogInit: -preloadmodulesymbols - Loads the main module symbols file into memory (OFF)
[2023.10.08-14.14.13:032][ 0]LogInit: -sigdfl=SIGNAL - Allows a specific signal to be set to its default handler rather then ignoring the signal
[2023.10.08-14.14.13:032][ 0]LogInit: -httpproxy=ADDRESS:PORT - redirects HTTP requests to a proxy (only supported if compiled with libcurl)
[2023.10.08-14.14.13:032][ 0]LogInit: -reuseconn - allow libcurl to reuse HTTP connections (only matters if compiled with libcurl)
[2023.10.08-14.14.13:032][ 0]LogInit: -virtmemkb=NUMBER - sets process virtual memory (address space) limit (overrides VirtualMemoryLimitInKB value from .ini)
[2023.10.08-14.14.13:032][ 0]LogInit: - Physical RAM available (not considering process quota): 16 GB (15708 MB, 16085232 KB, 16471277568 bytes)
[2023.10.08-14.14.13:032][ 0]LogInit: - VirtualMemoryAllocator pools will grow at scale 1.4
[2023.10.08-14.14.13:032][ 0]LogInit: - MemoryRangeDecommit() will be a no-op (re-run with -vmapoolevict to change)
[2023.10.08-14.14.13:059][ 0]LogInit: Physics initialised using underlying interface: PhysX
[2023.10.08-14.14.13:060][ 0]LogInit: Using OS detected language (zh-CN).
[2023.10.08-14.14.13:060][ 0]LogInit: Using OS detected locale (zh-CN).
[2023.10.08-14.14.13:060][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the language.
[2023.10.08-14.14.13:060][ 0]LogTextLocalizationManager: No localization for 'zh-CN' exists, so 'en' will be used for the locale.
[2023.10.08-14.14.13:079][ 0]LogHAL: Warning: Splash screen image not found.
[2023.10.08-14.14.13:084][ 0]LogSlate: New Slate User Created. User Index 0, Is Virtual User: 0
[2023.10.08-14.14.13:084][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0
[2023.10.08-14.14.13:087][ 0]LogInit: Using SDL_WINDOW_VULKAN
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: - Found 8 instance layers
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_INTEL_nullhw
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_MESA_device_select
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_MESA_overlay
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_NV_optimus
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_32
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_fossilize_64
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_32
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_LAYER_VALVE_steam_overlay_64
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: - Found 20 instance extensions
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_acquire_drm_display
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_acquire_xlib_display
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_debug_report
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_debug_utils
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_direct_mode_display
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_display_surface_counter
[2023.10.08-14.14.14:377][ 0]LogVulkanRHI: Display: * VK_EXT_swapchain_colorspace
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_device_group_creation
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_display
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_external_fence_capabilities
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_external_semaphore_capabilities
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_get_display_properties2
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_get_surface_capabilities2
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_surface
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI:Unable to read VR Path Registry from /home/snorlax/.config/openvr/openvrpaths.vrpath
DRM kernel driver 'nvidia-drm' in use. NVK requires nouveau.
Display: * VK_KHR_surface_protected_capabilities
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_wayland_surface
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_xcb_surface
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface
[2023.10.08-14.14.14:378][ 0]LogHMD: Failed to initialize OpenVR with code 110
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: Not using instance layers
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: Using instance extensions
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_surface
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_xlib_surface
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_external_memory_capabilities
[2023.10.08-14.14.14:378][ 0]LogVulkanRHI: Display: * VK_KHR_get_physical_device_properties2
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: Found 3 device(s)
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: Device 0: Intel(R) UHD Graphics (TGL GT1)
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: - API 1.3.261(0x403105) Driver 0x5c03000 VendorId 0x8086
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: - DeviceID 0x9a68 Type Integrated GPU
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 8 Timestamps 1
[2023.10.08-14.14.14:420][ 0]LogVulkanRHI: Display: - Device Properties driverName: Intel open-source Mesa driver
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Device Properties driverInfo: Mesa 23.3~git2310020600.dbe223~oibaf~j (git-dbe2230 2023-10-02 jammy-oibaf-ppa)
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_MESA_device_select
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_4444_formats
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_border_color_swizzle
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_buffer_device_address
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_calibrated_timestamps
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_color_write_enable
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conditional_rendering
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conservative_rasterization
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_custom_border_color
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_bias_control
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clamp_zero_one
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_control
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_enable
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_indexing
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_display_control
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_dynamic_rendering_unused_attachments
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state3
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_dma_buf
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_host
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_fragment_shader_interlock
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority_query
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_graphics_pipeline_library
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_query_reset
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_2d_view_of_3d
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_drm_format_modifier
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_robustness
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_sliced_view_of_3d
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_view_min_lod
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_index_type_uint8
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_inline_uniform_block
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_line_rasterization
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_load_store_op_none
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_budget
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_multi_draw
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_mutable_descriptor_type
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_non_seamless_cube_map
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pci_bus_info
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_physical_device_drm
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_cache_control
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_feedback
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_robustness
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_post_depth_coverage
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitive_topology_list_restart
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitives_generated_query
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_private_data
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_provoking_vertex
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_queue_family_foreign
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_robustness2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sample_locations
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sampler_filter_minmax
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_scalar_block_layout
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_separate_stencil_usage
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_demote_to_helper_invocation
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_module_identifier
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_stencil_export
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_viewport_index_layer
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_subgroup_size_control
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_texel_buffer_alignment
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_tooling_info
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_transform_feedback
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_attribute_divisor
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_input_dynamic_state
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_ycbcr_image_arrays
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_decorate_string
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_hlsl_functionality1
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_user_type
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_INTEL_shader_integer_functions2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_8bit_storage
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_buffer_device_address
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_copy_commands2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_create_renderpass2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_deferred_host_operations
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_depth_stencil_resolve
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_device_group
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_draw_indirect_count
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_driver_properties
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dynamic_rendering
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence_fd
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore_fd
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_format_feature_flags2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_fragment_shading_rate
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_imageless_framebuffer
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_incremental_present
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance3
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance4
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance5
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_map_memory2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_multiview
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_executable_properties
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_library
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_present_id
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_present_wait
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_push_descriptor
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_ycbcr_conversion
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_separate_depth_stencil_layouts
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_atomic_int64
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_clock
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float16_int8
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float_controls
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_integer_dot_product
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_non_semantic_info
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_extended_types
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_uniform_control_flow
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_terminate_invocation
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_spirv_1_4
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain_mutable_format
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_synchronization2
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_timeline_semaphore
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_uniform_buffer_standard_layout
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_vulkan_memory_model
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_workgroup_memory_explicit_layout
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_zero_initialize_workgroup_memory
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_compute_shader_derivatives
[2023.10.08-14.14.14:421][ 0]LogVulkanRHI: Display: - Found device extension VK_VALVE_mutable_descriptor_type
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: Device 1: llvmpipe (LLVM 15.0.7, 256 bits)
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - API 1.3.261(0x403105) Driver 0x1 VendorId 0x10005
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - DeviceID 0x0 Type CPU
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 8 Timestamps 1
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Device Properties driverName: llvmpipe
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Device Properties driverInfo: Mesa 23.3~git2310020600.dbe223~oibaf~j (git-dbe2230 2023-10-02 jammy-oibaf-ppa) (LLVM 15.0.7)
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_MESA_device_select
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_AMDX_shader_enqueue
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_ARM_rasterization_order_attachment_access
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_4444_formats
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_attachment_feedback_loop_dynamic_state
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_attachment_feedback_loop_layout
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_border_color_swizzle
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_calibrated_timestamps
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_color_write_enable
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conditional_rendering
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_custom_border_color
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_control
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_enable
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_range_unrestricted
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_buffer
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_indexing
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_dynamic_rendering_unused_attachments
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state3
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_host
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_graphics_pipeline_library
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_image_copy
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_query_reset
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_2d_view_of_3d
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_robustness
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_sliced_view_of_3d
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_index_type_uint8
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_inline_uniform_block
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_line_rasterization
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_load_store_op_none
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_budget
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_priority
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_mesh_shader
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_multi_draw
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_multisampled_render_to_single_sampled
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_mutable_descriptor_type
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_non_seamless_cube_map
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pageable_device_local_memory
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_cache_control
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_feedback
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_post_depth_coverage
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitive_topology_list_restart
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitives_generated_query
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_private_data
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_provoking_vertex
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_rasterization_order_attachment_access
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_robustness2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sampler_filter_minmax
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_scalar_block_layout
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_separate_stencil_usage
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_demote_to_helper_invocation
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_object
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_stencil_export
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_viewport_index_layer
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_subgroup_size_control
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_texel_buffer_alignment
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_transform_feedback
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_attribute_divisor
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_input_dynamic_state
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_decorate_string
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_GOOGLE_hlsl_functionality1
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_8bit_storage
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_buffer_device_address
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_copy_commands2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_create_renderpass2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_depth_stencil_resolve
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_device_group
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_draw_indirect_count
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_driver_properties
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dynamic_rendering
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_format_feature_flags2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_imageless_framebuffer
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_incremental_present
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance3
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance4
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance5
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_map_memory2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_multiview
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_library
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_push_descriptor
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_separate_depth_stencil_layouts
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_atomic_int64
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_clock
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float16_int8
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float_controls
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_integer_dot_product
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_non_semantic_info
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_extended_types
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_terminate_invocation
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_spirv_1_4
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain_mutable_format
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_synchronization2
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_timeline_semaphore
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_uniform_buffer_standard_layout
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_vulkan_memory_model
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_zero_initialize_workgroup_memory
[2023.10.08-14.14.14:422][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_device_generated_commands
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Device 2: NVIDIA GeForce RTX 3050 Laptop GPU
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - API 1.3.205(0x4030cd) Driver 0x80da4040 VendorId 0x10de
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - DeviceID 0x25a5 Type Discrete GPU
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Max Descriptor Sets Bound 32 Timestamps 1
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Device Properties driverName: NVIDIA
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Device Properties driverInfo: 515.105.01
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device layer VK_LAYER_MESA_device_select
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_4444_formats
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_blend_operation_advanced
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_border_color_swizzle
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_buffer_device_address
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_calibrated_timestamps
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_color_write_enable
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conditional_rendering
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_conservative_rasterization
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_custom_border_color
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_control
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_clip_enable
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_depth_range_unrestricted
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_descriptor_indexing
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_discard_rectangles
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_display_control
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_extended_dynamic_state2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_dma_buf
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_external_memory_host
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_fragment_shader_interlock
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_global_priority_query
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_host_query_reset
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_drm_format_modifier
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_robustness
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_image_view_min_lod
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_index_type_uint8
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_inline_uniform_block
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_line_rasterization
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_load_store_op_none
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_memory_budget
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_multi_draw
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pci_bus_info
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_physical_device_drm
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_cache_control
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_pipeline_creation_feedback
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_post_depth_coverage
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_primitive_topology_list_restart
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_private_data
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_provoking_vertex
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_queue_family_foreign
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_robustness2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sample_locations
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_sampler_filter_minmax
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_scalar_block_layout
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_separate_stencil_usage
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_atomic_float
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_demote_to_helper_invocation
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_image_atomic_int64
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_ballot
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_subgroup_vote
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_shader_viewport_index_layer
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_subgroup_size_control
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_texel_buffer_alignment
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_tooling_info
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_transform_feedback
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_attribute_divisor
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_vertex_input_dynamic_state
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_ycbcr_2plane_444_formats
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_EXT_ycbcr_image_arrays
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_16bit_storage
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_8bit_storage
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_acceleration_structure
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_bind_memory2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_buffer_device_address
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_copy_commands2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_create_renderpass2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dedicated_allocation
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_deferred_host_operations
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_depth_stencil_resolve
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_descriptor_update_template
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_device_group
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_draw_indirect_count
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_driver_properties
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_dynamic_rendering
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_fence_fd
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_memory_fd
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_external_semaphore_fd
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_format_feature_flags2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_fragment_shading_rate
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_get_memory_requirements2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_global_priority
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_image_format_list
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_imageless_framebuffer
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance1
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance3
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_maintenance4
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_multiview
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_executable_properties
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_pipeline_library
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_present_id
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_present_wait
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_push_descriptor
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_ray_query
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_ray_tracing_pipeline
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_relaxed_block_layout
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_mirror_clamp_to_edge
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_sampler_ycbcr_conversion
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_separate_depth_stencil_layouts
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_atomic_int64
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_clock
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_draw_parameters
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float16_int8
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_float_controls
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_integer_dot_product
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_non_semantic_info
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_extended_types
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_subgroup_uniform_control_flow
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_shader_terminate_invocation
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_spirv_1_4
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_storage_buffer_storage_class
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_swapchain_mutable_format
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_synchronization2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_timeline_semaphore
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_uniform_buffer_standard_layout
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_variable_pointers
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_vulkan_memory_model
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_workgroup_memory_explicit_layout
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_KHR_zero_initialize_workgroup_memory
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_clip_space_w_scaling
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_compute_shader_derivatives
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_cooperative_matrix
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_corner_sampled_image
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_coverage_reduction_mode
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_cuda_kernel_launch
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_dedicated_allocation
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_dedicated_allocation_image_aliasing
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_device_diagnostic_checkpoints
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_device_diagnostics_config
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_device_generated_commands
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_fill_rectangle
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_fragment_coverage_to_color
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_fragment_shader_barycentric
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_fragment_shading_rate_enums
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_framebuffer_mixed_samples
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_geometry_shader_passthrough
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_inherited_viewport_scissor
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_linear_color_attachment
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_mesh_shader
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_ray_tracing
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_ray_tracing_motion_blur
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_representative_fragment_test
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_sample_mask_override_coverage
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_scissor_exclusive
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_shader_image_footprint
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_shader_sm_builtins
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_shader_subgroup_partitioned
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_shading_rate_image
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_viewport_array2
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NV_viewport_swizzle
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NVX_binary_import
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NVX_image_view_handle
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: - Found device extension VK_NVX_multiview_per_view_attributes
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Using Device 2: Geometry 1 Tessellation 1 BufferAtomic64 1
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Found 3 Queue Families
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Initializing Queue Family 0: 16 queues Gfx Compute Xfer Sparse
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Initializing Queue Family 1: 2 queues Xfer Sparse
[2023.10.08-14.14.14:423][ 0]LogVulkanRHI: Display: Skipping unnecessary Queue Family 2: 8 queues Compute Xfer Sparse
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: Using device layers
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: Using device extensions
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_driver_properties
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_get_memory_requirements2
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_dedicated_allocation
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_swapchain
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance1
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_maintenance2
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_EXT_memory_budget
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_EXT_scalar_block_layout
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_shader_atomic_int64
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: * VK_KHR_image_format_list
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: 2 Device Memory Heaps; Max memory allocations -1
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: 0: Flags 0x1 Size 4294967296 (4096.00 MB) GPU
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: 1: Flags 0x0 Size 12353458176 (11781.18 MB)
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: 5 Device Memory Types (Not unified)
[2023.10.08-14.14.14:541][ 0]LogVulkanRHI: Display: 1: Flags 0x00001 Heap 0 Local