diff --git a/.gitignore b/.gitignore index b291c05ea..7c572f63d 100644 --- a/.gitignore +++ b/.gitignore @@ -60,3 +60,4 @@ app/keystores/* *.pyc __pycache__/ resign.keystore +logs/ diff --git a/app/src/main/assets/graphics_driver/a8xx-gen8-V21.zip b/app/src/main/assets/graphics_driver/a8xx-gen8-V21.zip new file mode 100644 index 000000000..dce6aea01 Binary files /dev/null and b/app/src/main/assets/graphics_driver/a8xx-gen8-V21.zip differ diff --git a/app/src/main/assets/wincomponents/wincomponents.json b/app/src/main/assets/wincomponents/wincomponents.json index f2611b321..25e5747d3 100644 --- a/app/src/main/assets/wincomponents/wincomponents.json +++ b/app/src/main/assets/wincomponents/wincomponents.json @@ -6,6 +6,7 @@ "directplay" : ["dplaysvr.exe", "dplayx", "dpmodemx", "dpnet", "dpnhpast", "dpnhupnp", "dpnsvr.exe", "dpwsockx"], "xaudio" : ["x3daudio1_0", "x3daudio1_1", "x3daudio1_2", "x3daudio1_3", "x3daudio1_4", "x3daudio1_5", "x3daudio1_6", "x3daudio1_7", "xactengine2_0", "xactengine2_1", "xactengine2_2", "xactengine2_3", "xactengine2_4", "xactengine2_5", "xactengine2_6", "xactengine2_7", "xactengine2_8", "xactengine2_9", "xactengine2_10", "xactengine3_0", "xactengine3_1", "xactengine3_2", "xactengine3_3", "xactengine3_4", "xactengine3_5", "xactengine3_6", "xactengine3_7", "xapofx1_0", "xapofx1_1", "xapofx1_2", "xapofx1_3", "xapofx1_4", "xapofx1_5", "xaudio2_0", "xaudio2_1", "xaudio2_2", "xaudio2_3", "xaudio2_4", "xaudio2_5", "xaudio2_6", "xaudio2_7"], "vcrun2010" : ["msvcp100", "msvcr100", "vcomp100", "atl100"], + "vcrun2022" : ["msvcp140", "msvcp140_1", "msvcp140_2", "msvcp140_codecvt_ids", "vcomp140", "vcruntime140", "vcruntime140_1", "concrt140"], "wmdecoder" : ["wmvcore", "wmasf", "wmadmod", "wmvdecod"], "opengl" : ["libgallium_wgl", "opengl32"] } diff --git a/app/src/main/java/app/gamenative/ui/component/dialog/ContainerConfigDialog.kt b/app/src/main/java/app/gamenative/ui/component/dialog/ContainerConfigDialog.kt index f53a6b9db..1c88ea895 100644 --- a/app/src/main/java/app/gamenative/ui/component/dialog/ContainerConfigDialog.kt +++ b/app/src/main/java/app/gamenative/ui/component/dialog/ContainerConfigDialog.kt @@ -107,7 +107,9 @@ private fun winComponentsItemTitleRes(string: String): Int { "directplay" -> R.string.directplay "directshow" -> R.string.directshow "directx" -> R.string.directx + "xaudio" -> R.string.xaudio "vcrun2010" -> R.string.vcrun2010 + "vcrun2022" -> R.string.vcrun2022 "wmdecoder" -> R.string.wmdecoder "opengl" -> R.string.wmdecoder else -> throw IllegalArgumentException("No string res found for Win Components title: $string") diff --git a/app/src/main/java/app/gamenative/ui/model/MainViewModel.kt b/app/src/main/java/app/gamenative/ui/model/MainViewModel.kt index d6315344c..8a4fd4b23 100644 --- a/app/src/main/java/app/gamenative/ui/model/MainViewModel.kt +++ b/app/src/main/java/app/gamenative/ui/model/MainViewModel.kt @@ -279,6 +279,8 @@ class MainViewModel @Inject constructor( bootingSplashTimeoutJob?.cancel() bootingSplashTimeoutJob = null setShowBootingSplash(false) + setTestGraphics(false) + setBootToContainer(false) // Check if we have a temporary override before doing anything val hadTemporaryOverride = IntentLaunchManager.hasTemporaryOverride(appId) diff --git a/app/src/main/java/app/gamenative/ui/screen/xserver/XServerScreen.kt b/app/src/main/java/app/gamenative/ui/screen/xserver/XServerScreen.kt index fc06f2af0..48128d7a6 100644 --- a/app/src/main/java/app/gamenative/ui/screen/xserver/XServerScreen.kt +++ b/app/src/main/java/app/gamenative/ui/screen/xserver/XServerScreen.kt @@ -2554,12 +2554,16 @@ private fun extractGraphicsDriverFiles( } if (changed) { - TarCompressorUtils.extract( - TarCompressorUtils.Type.ZSTD, - context.assets, - "graphics_driver/turnip-${turnipVersion}.tzst", - rootDir, - ) + if (turnipVersion.endsWith(".zip")) { + com.winlator.core.FileUtils.extractZipFromAssets(context, "graphics_driver/$turnipVersion", rootDir) + } else { + TarCompressorUtils.extract( + TarCompressorUtils.Type.ZSTD, + context.assets, + "graphics_driver/turnip-${turnipVersion}.tzst", + rootDir, + ) + } TarCompressorUtils.extract( TarCompressorUtils.Type.ZSTD, context.assets, diff --git a/app/src/main/res/values-da/strings.xml b/app/src/main/res/values-da/strings.xml index 1fca92946..dcf0eb995 100644 --- a/app/src/main/res/values-da/strings.xml +++ b/app/src/main/res/values-da/strings.xml @@ -54,7 +54,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK-version diff --git a/app/src/main/res/values-de/strings.xml b/app/src/main/res/values-de/strings.xml index 8d211c403..6f47cb090 100644 --- a/app/src/main/res/values-de/strings.xml +++ b/app/src/main/res/values-de/strings.xml @@ -107,7 +107,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK-Version diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml index 43114ad95..4783c59f6 100644 --- a/app/src/main/res/values-fr/strings.xml +++ b/app/src/main/res/values-fr/strings.xml @@ -115,7 +115,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Décodeur Windows Media OpenGL Version DXVK diff --git a/app/src/main/res/values-it/strings.xml b/app/src/main/res/values-it/strings.xml index 267898321..12eae837f 100644 --- a/app/src/main/res/values-it/strings.xml +++ b/app/src/main/res/values-it/strings.xml @@ -114,7 +114,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL Versione DXVK diff --git a/app/src/main/res/values-pt-rBR/strings.xml b/app/src/main/res/values-pt-rBR/strings.xml index 0cf9c8116..27f29ed0b 100644 --- a/app/src/main/res/values-pt-rBR/strings.xml +++ b/app/src/main/res/values-pt-rBR/strings.xml @@ -54,7 +54,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK Version diff --git a/app/src/main/res/values-uk/strings.xml b/app/src/main/res/values-uk/strings.xml index d56e51ba4..4f2e9ba1c 100644 --- a/app/src/main/res/values-uk/strings.xml +++ b/app/src/main/res/values-uk/strings.xml @@ -115,7 +115,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Декодер Windows Media OpenGL Версія DXVK diff --git a/app/src/main/res/values-zh-rCN/strings.xml b/app/src/main/res/values-zh-rCN/strings.xml index d5c295e2a..5cb9dba9f 100644 --- a/app/src/main/res/values-zh-rCN/strings.xml +++ b/app/src/main/res/values-zh-rCN/strings.xml @@ -114,7 +114,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK 版本 diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml index 483e7aaf5..c858d596c 100644 --- a/app/src/main/res/values-zh-rTW/strings.xml +++ b/app/src/main/res/values-zh-rTW/strings.xml @@ -114,7 +114,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK 版本 diff --git a/app/src/main/res/values/arrays.xml b/app/src/main/res/values/arrays.xml index 19df06cc5..11516dace 100644 --- a/app/src/main/res/values/arrays.xml +++ b/app/src/main/res/values/arrays.xml @@ -41,6 +41,7 @@ 26.0.0_R8 + a8xx-gen8-V21.zip 25.1.0 25.2.0 25.3.0 diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 555bd99e3..b109bac97 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -119,7 +119,9 @@ DirectPlay DirectShow DirectX + XAudio Visual C++ 2010 + Visual C++ 2022 Windows Media Decoder OpenGL DXVK Version diff --git a/logs/app_logs_2026-01-20_08-47-24.txt b/logs/app_logs_2026-01-20_08-47-24.txt deleted file mode 100644 index d49c90372..000000000 --- a/logs/app_logs_2026-01-20_08-47-24.txt +++ /dev/null @@ -1,103 +0,0 @@ ---------- beginning of system -01-20 08:47:08.012 3271 3271 D VRI[MainActivityAliasDefault]: relayoutWindow result, sizeChanged:false, surfaceControlChanged:true, transformHintChanged:false, mSurfaceSize:Point(1272, 2772), mLastSurfaceSize:Point(1272, 2772), mWidth:1272, mHeight:2772, requestedWidth:1272, requestedHeight:2772, transformHint:0, installOrientation:0, displayRotation:0, isSurfaceValid:false, attr.flag:-2122251904, tmpFrames:ClientWindowFrames{frame=[0,0][1272,2772] display=[0,0][1272,2772] parentFrame=[0,0][0,0]}, relayoutAsync:false, mSyncSeqId:0 -01-20 08:47:14.653 3271 3271 D ActivityThread: ComponentInfo{app.gamenative/app.gamenative.MainActivityAliasDefault} checkFinished=false 2 -01-20 08:47:14.654 3271 3271 D ResourcesManagerExtImpl: applyConfigurationToAppResourcesLocked app.getDisplayId() return callback.displayId:0 -01-20 08:47:14.659 3271 3271 D VRI[MainActivityAliasDefault]: relayoutWindow result, sizeChanged:false, surfaceControlChanged:true, transformHintChanged:false, mSurfaceSize:Point(1272, 2772), mLastSurfaceSize:Point(1272, 2772), mWidth:1272, mHeight:2772, requestedWidth:1272, requestedHeight:2772, transformHint:0, installOrientation:0, displayRotation:0, isSurfaceValid:true, attr.flag:-2122251904, tmpFrames:ClientWindowFrames{frame=[0,0][1272,2772] display=[0,0][1272,2772] parentFrame=[0,0][0,0]}, relayoutAsync:false, mSyncSeqId:0 -01-20 08:47:14.659 3271 3271 W VRI[MainActivityAliasDefault]: updateBlastSurfaceIfNeeded, surfaceSize:Point(1272, 2772), lastSurfaceSize:Point(1272, 2772), format:-3, blastBufferQueue:null ---------- beginning of main -01-20 08:47:19.589 3271 6738 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:false mUpcomingWindowFocus:false -01-20 08:47:19.589 3271 3271 D VRI[MainActivityAliasDefault]: visibilityChanged oldVisibility=true newVisibility=false -01-20 08:47:19.590 3271 14682 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:false mUpcomingWindowFocus:false -01-20 08:47:19.592 3271 3271 D HWUI : RenderProxy::destroy: this=0x7941f6b900, mContext=0x78bcc7fd80 -01-20 08:47:19.592 3271 3327 D HWUI : SkiaVulkanPipeline::setSurface: this=0x789bcb51c0, surface=NULL -01-20 08:47:19.594 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#86(BLAST Consumer)86](id:cc700000056,api:1,p:3271,c:3271) disconnect: api 1 -01-20 08:47:19.602 3271 3271 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#86](f:0,a:1) destructor() -01-20 08:47:19.602 3271 3271 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#86(BLAST Consumer)86](id:cc700000056,api:0,p:-1,c:3271) disconnect -01-20 08:47:19.603 3271 3271 D VRI[MainActivityAliasDefault]: visibilityChanged oldVisibility=true newVisibility=false -01-20 08:47:19.604 3271 3271 D VRI[MainActivityAliasDefault]: setWindowStopped stopped:true -01-20 08:47:19.605 3271 3271 D VRI[MainActivityAliasDefault]: setWindowStopped stopped:true -01-20 08:47:19.609 3271 3271 D HWUI : RenderProxy::destroy: this=0x794fb0e700, mContext=0x794b23a4c0 -01-20 08:47:19.609 3271 3327 D HWUI : SkiaVulkanPipeline::setSurface: this=0x794b22df00, surface=NULL -01-20 08:47:19.610 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#85(BLAST Consumer)85](id:cc700000055,api:1,p:3271,c:3271) disconnect: api 1 -01-20 08:47:19.610 3271 3327 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#85](f:0,a:1) destructor() -01-20 08:47:19.610 3271 3327 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#85(BLAST Consumer)85](id:cc700000055,api:0,p:-1,c:3271) disconnect -01-20 08:47:19.611 3271 3271 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=363, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1272, 2772), relayoutAsync=false, flags=0, newFlags=1453337952, title=app.gamenative/app.gamenative.MainActivityAliasDefault -01-20 08:47:19.613 3271 3271 D VRI[MainActivityAliasDefault]: relayoutWindow result, sizeChanged:false, surfaceControlChanged:true, transformHintChanged:false, mSurfaceSize:Point(1272, 2772), mLastSurfaceSize:Point(1272, 2772), mWidth:1272, mHeight:2772, requestedWidth:1272, requestedHeight:2772, transformHint:0, installOrientation:0, displayRotation:0, isSurfaceValid:false, attr.flag:-2122251904, tmpFrames:ClientWindowFrames{frame=[0,0][1272,2772] display=[0,0][1272,2772] parentFrame=[0,0][0,0]}, relayoutAsync:false, mSyncSeqId:0 -01-20 08:47:19.683 3271 3327 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78bfaa0600, surface=NULL -01-20 08:47:20.185 3271 3302 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{adc6693 V.E...... R.....ID 0,0-1272,2575 aid=1073742165 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to false -01-20 08:47:20.459 3271 6738 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:true mUpcomingWindowFocus:false -01-20 08:47:20.459 3271 14682 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:true mUpcomingWindowFocus:false -01-20 08:47:20.459 3271 3271 D VRI[MainActivityAliasDefault]: visibilityChanged oldVisibility=false newVisibility=true -01-20 08:47:20.470 3271 3271 D BufferQueueConsumer: [](id:cc700000057,api:0,p:-1,c:3271) connect: controlledByApp=false -01-20 08:47:20.470 3271 3271 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#87(BLAST Consumer)87](id:cc700000057,api:0,p:-1,c:3271) setMaxAcquiredBufferCount: 2 -01-20 08:47:20.471 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#87(BLAST Consumer)87](id:cc700000057,api:1,p:3271,c:3271) connect: api=1 producerControlledByApp=true -01-20 08:47:20.471 3271 3271 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=app.gamenative/app.gamenative.MainActivityAliasDefault)/@0xd2708c6,currentBufferRatio=1.0,desiredRatio=1.0 -01-20 08:47:20.508 3271 3327 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#87](f:0,a:1) acquireNextBufferLocked size=1496x2799 mFrameNumber=1 applyTransaction=true mTimestamp=105772155064233(auto) mPendingTransactions.size=0 graphicBufferId=14048838025666 transform=0 -01-20 08:47:20.508 3271 3327 D VRI[MainActivityAliasDefault]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-20 08:47:20.509 3271 3271 D VRI[MainActivityAliasDefault]: draw finished. seqId=0 -01-20 08:47:20.516 3271 3271 D VRI[MainActivityAliasDefault]: setWindowStopped stopped:false -01-20 08:47:20.516 3271 3271 D VRI[MainActivityAliasDefault]: setWindowStopped stopped:false -01-20 08:47:20.518 3271 3271 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-20 08:47:20.518 3271 3271 W WindowOnBackDispatcher: OnBackInvokedCallback is not enabled for the application. -01-20 08:47:20.518 3271 3271 W WindowOnBackDispatcher: Set 'android:enableOnBackInvokedCallback="true"' in the application manifest. -01-20 08:47:20.529 3271 3271 D ActivityThread: ComponentInfo{app.gamenative/app.gamenative.MainActivityAliasDefault} checkFinished=false 2 -01-20 08:47:20.529 3271 3271 D ResourcesManagerExtImpl: applyConfigurationToAppResourcesLocked app.getDisplayId() return callback.displayId:0 -01-20 08:47:20.529 3271 3271 V AutofillClientController: onActivityResumed() -01-20 08:47:20.529 3271 3271 V AutofillClientController: onActivityPostResumed() -01-20 08:47:20.529 3271 3271 V AutofillClientController: onActivityPostResumed(): Relayout fix enabled -01-20 08:47:20.529 3271 3271 V AutofillClientController: forResume(): Not attempting refill. -01-20 08:47:20.533 3271 3271 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=363, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1272, 2772), relayoutAsync=false, flags=0, newFlags=1453337952, title=app.gamenative/app.gamenative.MainActivityAliasDefault -01-20 08:47:20.534 3271 3271 D VRI[MainActivityAliasDefault]: relayoutWindow result, sizeChanged:false, surfaceControlChanged:true, transformHintChanged:false, mSurfaceSize:Point(1272, 2772), mLastSurfaceSize:Point(1272, 2772), mWidth:1272, mHeight:2772, requestedWidth:1272, requestedHeight:2772, transformHint:0, installOrientation:0, displayRotation:0, isSurfaceValid:true, attr.flag:-2122251904, tmpFrames:ClientWindowFrames{frame=[0,0][1272,2772] display=[0,0][1272,2772] parentFrame=[0,0][0,0]}, relayoutAsync:false, mSyncSeqId:0 -01-20 08:47:20.534 3271 3271 W VRI[MainActivityAliasDefault]: updateBlastSurfaceIfNeeded, surfaceSize:Point(1272, 2772), lastSurfaceSize:Point(1272, 2772), format:-3, blastBufferQueue:null -01-20 08:47:20.534 3271 3271 D BufferQueueConsumer: [](id:cc700000058,api:0,p:-1,c:3271) connect: controlledByApp=false -01-20 08:47:20.534 3271 3271 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#88(BLAST Consumer)88](id:cc700000058,api:0,p:-1,c:3271) setMaxAcquiredBufferCount: 2 -01-20 08:47:20.534 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#88(BLAST Consumer)88](id:cc700000058,api:1,p:3271,c:3271) connect: api=1 producerControlledByApp=true -01-20 08:47:20.535 3271 3271 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=app.gamenative/app.gamenative.MainActivityAliasDefault)/@0x36ca9ba,currentBufferRatio=1.0,desiredRatio=1.0 -01-20 08:47:20.539 3271 3327 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#88](f:0,a:1) acquireNextBufferLocked size=1272x2772 mFrameNumber=1 applyTransaction=true mTimestamp=105772185831264(auto) mPendingTransactions.size=0 graphicBufferId=14048838025667 transform=0 -01-20 08:47:20.539 3271 3327 D VRI[MainActivityAliasDefault]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-20 08:47:20.539 3271 3271 D VRI[MainActivityAliasDefault]: draw finished. seqId=0 -01-20 08:47:20.557 3271 3271 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-20 08:47:20.559 3271 3271 D InsetsController: hide(ime(), fromIme=false) -01-20 08:47:20.559 3271 3271 I ImeTracker: app.gamenative:9cf4c6e8: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-20 08:47:21.561 3271 3302 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{adc6693 V.E...... R....... 0,0-1272,2575 aid=1073742165 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to true -01-20 08:47:21.915 3271 3271 D WindowOnBackDispatcher: onBackInvoked callback: android.view.ViewRootImpl$$ExternalSyntheticLambda13@cbf67d7, animationCallback is null -01-20 08:47:21.915 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onDeliverInputEvent: key event -01-20 08:47:21.915 3271 3271 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-20 08:47:21.915 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onDeliverInputEvent: key event -01-20 08:47:21.915 3271 3271 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-20 08:47:21.916 3271 3271 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-20 08:47:21.916 3271 3271 D Dialog : dispatchKeyEvent to androidx.compose.ui.window.DialogWrapper@6ba7ab2 will call onBackPressed -01-20 08:47:21.919 3271 3271 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,window dying -01-20 08:47:21.919 3271 3271 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,unregisterSystemUIBroadcastReceiver -01-20 08:47:21.920 3271 3271 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault, unregisterSystemUIBroadcastReceiver failed java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@2802a6c -01-20 08:47:21.920 3271 3271 W WindowOnBackDispatcher: sendCancelIfRunning: isInProgress=false callback=android.view.ViewRootImpl$$ExternalSyntheticLambda13@cbf67d7 -01-20 08:47:21.921 3271 3271 D HWUI : RenderProxy::destroy: this=0x7941f6b900, mContext=0x78bcc7fd80 -01-20 08:47:21.921 3271 3327 D HWUI : SkiaVulkanPipeline::setSurface: this=0x789bcb51c0, surface=NULL -01-20 08:47:21.921 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#87(BLAST Consumer)87](id:cc700000057,api:1,p:3271,c:3271) disconnect: api 1 -01-20 08:47:21.921 3271 3271 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#87](f:0,a:1) destructor() -01-20 08:47:21.921 3271 3271 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#87(BLAST Consumer)87](id:cc700000057,api:0,p:-1,c:3271) disconnect -01-20 08:47:21.933 3271 3271 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-20 08:47:21.935 3271 3271 D InsetsController: hide(ime(), fromIme=false) -01-20 08:47:21.935 3271 3271 I ImeTracker: app.gamenative:9bcc626f: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-20 08:47:22.936 3271 3302 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{9c2924 V.E...... R....... 0,0-1272,2772 aid=0 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to true -01-20 08:47:23.100 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 105774746, mIsMoving = true, mUpdated = true -01-20 08:47:23.100 3271 3271 V AutofillManager: requestHideFillUi(null): anchor = null -01-20 08:47:24.332 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 105775979, mIsMoving = false, mUpdated = true -01-20 08:47:24.332 3271 3271 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-20 08:47:24.743 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 105776389, mIsMoving = true, mUpdated = true -01-20 08:47:24.743 3271 3271 V AutofillManager: requestHideFillUi(null): anchor = null -01-20 08:47:24.798 3271 3271 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 105776444, mIsMoving = false, mUpdated = true -01-20 08:47:24.804 3271 3271 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-20 08:47:24.826 3271 3271 D VRI[MainActivityAliasDefault]: onFocusEvent false -01-20 08:47:25.219 3271 3291 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:false mUpcomingWindowFocus:false -01-20 08:47:25.219 3271 3271 D VRI[MainActivityAliasDefault]: visibilityChanged oldVisibility=true newVisibility=false -01-20 08:47:25.228 3271 3271 D HWUI : RenderProxy::destroy: this=0x794fb0e700, mContext=0x794b23a4c0 -01-20 08:47:25.228 3271 3327 D HWUI : SkiaVulkanPipeline::setSurface: this=0x794b22df00, surface=NULL -01-20 08:47:25.229 3271 3327 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#88(BLAST Consumer)88](id:cc700000058,api:1,p:3271,c:3271) disconnect: api 1 -01-20 08:47:25.229 3271 3327 D HWUI : endAllActiveAnimators on 0x78a346a600 (UnprojectedRipple) with handle 0x795b8d5ce0 -01-20 08:47:25.231 3271 3271 D ViewRootImplExtImpl: wrapConfigInfoIntoFlags rotation=0, smallestScreenWidthDp=363, residentWS=false, scenario=0, bounds=Rect(0, 0 - 1272, 2772), relayoutAsync=false, flags=0, newFlags=1453337952, title=app.gamenative/app.gamenative.MainActivityAliasDefault -01-20 08:47:25.237 3271 3271 D VRI[MainActivityAliasDefault]: relayoutWindow result, sizeChanged:false, surfaceControlChanged:true, transformHintChanged:false, mSurfaceSize:Point(1272, 2772), mLastSurfaceSize:Point(1272, 2772), mWidth:1272, mHeight:2772, requestedWidth:1272, requestedHeight:2772, transformHint:0, installOrientation:0, displayRotation:0, isSurfaceValid:false, attr.flag:-2122251904, tmpFrames:ClientWindowFrames{frame=[0,0][1272,2772] display=[0,0][1272,2772] parentFrame=[0,0][0,0]}, relayoutAsync:false, mSyncSeqId:0 -01-20 08:47:25.238 3271 3271 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#88](f:0,a:1) destructor() -01-20 08:47:25.238 3271 3271 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#88(BLAST Consumer)88](id:cc700000058,api:0,p:-1,c:3271) disconnect -01-20 08:47:25.240 3271 3271 D VRI[MainActivityAliasDefault]: setWindowStopped stopped:true -01-20 08:47:25.800 3271 14682 D VRI[MainActivityAliasDefault]: dispatchAppVisibility visible:true mUpcomingWindowFocus:false diff --git a/logs/pluvia_crash_2026-01-19_17-13-58.txt b/logs/pluvia_crash_2026-01-19_17-13-58.txt deleted file mode 100644 index 39e8033f0..000000000 --- a/logs/pluvia_crash_2026-01-19_17-13-58.txt +++ /dev/null @@ -1,380 +0,0 @@ -Timestamp: 2026-01-19_17-13-58 -App Version: 0.7.0 (9) - ----------- Device Information ---------- -OnePlus - OnePlus - CPH2749 -Android Version: 16 - ----------- Cause ---------- -Exception: java.lang.IllegalArgumentException -Message: No string res found for Win Components title: vcrun2022 - ----------- Stack Trace ---------- -java.lang.IllegalArgumentException: No string res found for Win Components title: vcrun2022 - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt.winComponentsItemTitleRes(ContainerConfigDialog.kt:113) - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt.access$winComponentsItemTitleRes(ContainerConfigDialog.kt:1) - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2$1$2$6.invoke(ContainerConfigDialog.kt:1858) - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2$1$2$6.invoke(ContainerConfigDialog.kt:1855) - at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:130) - at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:51) - at com.alorma.compose.settings.ui.SettingsGroupKt$SettingsGroup$1$2.invoke(SettingsGroup.kt:43) - at com.alorma.compose.settings.ui.SettingsGroupKt$SettingsGroup$1$2.invoke(SettingsGroup.kt:42) - at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:121) - at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:51) - at androidx.compose.runtime.CompositionLocalKt.CompositionLocalProvider(CompositionLocal.kt:384) - at com.alorma.compose.settings.ui.SettingsGroupKt.SettingsGroup(SettingsGroup.kt:42) - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2.invoke(ContainerConfigDialog.kt:1855) - at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2.invoke(ContainerConfigDialog.kt:969) - at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:130) - at androidx.compose.runtime.internal.ComposableLambdaImpl$invoke$2.invoke(ComposableLambda.kt:132) - at androidx.compose.runtime.internal.ComposableLambdaImpl$invoke$2.invoke(ComposableLambda.kt:131) - at androidx.compose.runtime.RecomposeScopeImpl.compose(RecomposeScopeImpl.kt:235) - at androidx.compose.runtime.ComposerImpl.recomposeToGroupEnd(Composer.kt:2838) - at androidx.compose.runtime.ComposerImpl.skipCurrentGroup(Composer.kt:3158) - at androidx.compose.runtime.ComposerImpl.doCompose-aFTiNEg(Composer.kt:3706) - at androidx.compose.runtime.ComposerImpl.recompose-aFTiNEg$runtime_release(Composer.kt:3648) - at androidx.compose.runtime.CompositionImpl.recompose(Composition.kt:1002) - at androidx.compose.runtime.Recomposer.performRecompose(Recomposer.kt:1266) - at androidx.compose.runtime.Recomposer.access$performRecompose(Recomposer.kt:142) - at androidx.compose.runtime.Recomposer$runRecomposeAndApplyChanges$2$1.invoke(Recomposer.kt:620) - at androidx.compose.runtime.Recomposer$runRecomposeAndApplyChanges$2$1.invoke(Recomposer.kt:591) - at androidx.compose.ui.platform.AndroidUiFrameClock$withFrameNanos$2$callback$1.doFrame(AndroidUiFrameClock.android.kt:39) - at androidx.compose.ui.platform.AndroidUiDispatcher.performFrameDispatch(AndroidUiDispatcher.android.kt:108) - at androidx.compose.ui.platform.AndroidUiDispatcher.access$performFrameDispatch(AndroidUiDispatcher.android.kt:41) - at androidx.compose.ui.platform.AndroidUiDispatcher$dispatchCallback$1.doFrame(AndroidUiDispatcher.android.kt:69) - at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1850) - at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1861) - at android.view.Choreographer.doCallbacks(Choreographer.java:1373) - at android.view.Choreographer.doFrame(Choreographer.java:1225) - at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1835) - at android.os.Handler.handleCallback(Handler.java:1027) - at android.os.Handler.dispatchMessage(Handler.java:108) - at android.os.Looper.loopOnce(Looper.java:298) - at android.os.Looper.loop(Looper.java:408) - at android.app.ActivityThread.main(ActivityThread.java:9964) - at java.lang.reflect.Method.invoke(Native Method) - at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:613) - at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1074) - Suppressed: kotlinx.coroutines.internal.DiagnosticCoroutineContextException: [androidx.compose.runtime.PausableMonotonicFrameClock@fb13667, androidx.compose.ui.platform.MotionDurationScaleImpl@7b1bc14, StandaloneCoroutine{Cancelling}@9735cbd, AndroidUiDispatcher@38e42b2] - - ----------- Logcat ---------- ---------- beginning of main -01-19 17:13:50.042 12569 12608 D BLASTBufferQueue: [VRI[Pop-Up Window]#16](f:0,a:1) acquireNextBufferLocked size=821x1344 mFrameNumber=1 applyTransaction=true mTimestamp=57874084880838(auto) mPendingTransactions.size=0 graphicBufferId=53983443943492 transform=0 -01-19 17:13:50.042 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-19 17:13:50.042 12569 12569 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:50.047 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0xe131a77,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:50.048 12569 12569 D OplusSystemUINavigationGesture: packageName: app.gamenative, systemGestureExclusionChanged region=SkRegion((0,0,709,1232)) list: -01-19 17:13:50.048 12569 12569 D OplusSystemUINavigationGesture: systemGestureExclusionChanged rect=Rect(0, 0 - 709, 1232) -01-19 17:13:50.054 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0xe131a77,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:50.056 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent false -01-19 17:13:50.056 12569 12569 D VRI[Pop-Up Window]: onFocusEvent true -01-19 17:13:50.058 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=3 didProduceBuffer=true syncBuffer=false -01-19 17:13:50.058 12569 12608 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:50.058 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:50.058 12569 12569 I ImeTracker: app.gamenative:d603727d: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:50.888 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57874930, mIsMoving = true, mUpdated = true -01-19 17:13:50.888 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:50.974 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57875016, mIsMoving = false, mUpdated = true -01-19 17:13:50.974 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:50.991 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0xe131a77,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:51.056 12569 12590 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{21c0cbf V.E...... R....... 0,0-1272,2575 aid=1073741831 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to false -01-19 17:13:51.057 12569 12590 D OplusScrollToTopManager: Pop-Up Window,This androidx.compose.ui.window.PopupLayout{369cb58 V.E...... ........ 0,0-709,1232 #1020002 android:id/content aid=1073741865 alpha=1.0 viewInfo = } change focus to true -01-19 17:13:51.074 12569 12569 D OplusScrollToTopManager: Pop-Up Window,window dying -01-19 17:13:51.074 12569 12569 D OplusScrollToTopManager: Pop-Up Window,unregisterSystemUIBroadcastReceiver -01-19 17:13:51.074 12569 12569 D OplusScrollToTopManager: Pop-Up Window, unregisterSystemUIBroadcastReceiver failed java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@bd0ce6a -01-19 17:13:51.074 12569 12569 W WindowOnBackDispatcher: sendCancelIfRunning: isInProgress=false callback=android.view.ViewRootImpl$$ExternalSyntheticLambda13@baef1a8 -01-19 17:13:51.075 12569 12569 D HWUI : RenderProxy::destroy: this=0x7962e1c800, mContext=0x78a83394c0 -01-19 17:13:51.075 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c8100, surface=NULL -01-19 17:13:51.075 12569 12608 D BufferQueueProducer: [VRI[Pop-Up Window]#16(BLAST Consumer)16](id:311900000010,api:1,p:12569,c:12569) disconnect: api 1 -01-19 17:13:51.075 12569 12608 D HWUI : endAllActiveAnimators on 0x7962f95a00 (UnprojectedRipple) with handle 0x7962f41f60 -01-19 17:13:51.077 12569 13262 D BLASTBufferQueue: [VRI[Pop-Up Window]#16](f:0,a:1) destructor() -01-19 17:13:51.077 12569 13262 D BufferQueueConsumer: [VRI[Pop-Up Window]#16(BLAST Consumer)16](id:311900000010,api:0,p:-1,c:12569) disconnect -01-19 17:13:51.094 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-19 17:13:51.095 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:51.095 12569 12569 I ImeTracker: app.gamenative:2aa24c4f: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:51.287 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57875330, mIsMoving = true, mUpdated = true -01-19 17:13:51.287 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:51.366 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57875409, mIsMoving = false, mUpdated = true -01-19 17:13:51.367 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:51.373 12569 12569 D WindowManager: Add to mViews: androidx.compose.ui.window.PopupLayout{cac873c V.E...... ......I. 0,0-0,0 #1020002 android:id/content alpha=1.0 viewInfo = },pkg= app.gamenative -01-19 17:13:51.373 12569 12608 D skia : setRusSupported enable 0 -01-19 17:13:51.375 12569 12569 D ViewRootImplExtImpl: onDisplayChanged -1 for VRI android.view.ViewRootImpl@89bd54b -01-19 17:13:51.379 12569 12569 E OplusBracketLog: [OplusViewMirrorManager] updateHostViewRootIfNeeded, not support android.view.ViewRootImpl@89bd54b -01-19 17:13:51.381 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:51.381 12569 12569 W WindowOnBackDispatcher: OnBackInvokedCallback is not enabled for the application. -01-19 17:13:51.381 12569 12569 W WindowOnBackDispatcher: Set 'android:enableOnBackInvokedCallback="true"' in the application manifest. -01-19 17:13:51.385 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:51.385 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:51.388 12569 12569 D VRI[Pop-Up Window]: setLayoutParams: x = 811, y = 1064 -01-19 17:13:51.390 12569 12569 D BufferQueueConsumer: [](id:311900000011,api:0,p:-1,c:12569) connect: controlledByApp=false -01-19 17:13:51.390 12569 12569 D BufferQueueConsumer: [VRI[Pop-Up Window]#17(BLAST Consumer)17](id:311900000011,api:0,p:-1,c:12569) setMaxAcquiredBufferCount: 2 -01-19 17:13:51.391 12569 12608 D BufferQueueProducer: [VRI[Pop-Up Window]#17(BLAST Consumer)17](id:311900000011,api:1,p:12569,c:12569) connect: api=1 producerControlledByApp=true -01-19 17:13:51.393 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x1b81bc1,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:51.395 12569 12608 D BLASTBufferQueue: [VRI[Pop-Up Window]#17](f:0,a:1) acquireNextBufferLocked size=517x840 mFrameNumber=1 applyTransaction=true mTimestamp=57875438038702(auto) mPendingTransactions.size=0 graphicBufferId=53983443943496 transform=0 -01-19 17:13:51.395 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-19 17:13:51.396 12569 12569 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:51.400 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x1b81bc1,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:51.401 12569 12569 D OplusSystemUINavigationGesture: packageName: app.gamenative, systemGestureExclusionChanged region=SkRegion((0,0,405,728)) list: -01-19 17:13:51.401 12569 12569 D OplusSystemUINavigationGesture: systemGestureExclusionChanged rect=Rect(0, 0 - 405, 728) -01-19 17:13:51.402 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent false -01-19 17:13:51.405 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x1b81bc1,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:51.406 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=2 didProduceBuffer=true syncBuffer=false -01-19 17:13:51.406 12569 12569 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:51.411 12569 12569 D VRI[Pop-Up Window]: onFocusEvent true -01-19 17:13:51.411 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:51.411 12569 12569 I ImeTracker: app.gamenative:9457d2a: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:52.100 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57876142, mIsMoving = true, mUpdated = true -01-19 17:13:52.100 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:52.169 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57876212, mIsMoving = false, mUpdated = true -01-19 17:13:52.170 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:52.189 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x1b81bc1,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:52.279 12569 12569 D OplusScrollToTopManager: Pop-Up Window,window dying -01-19 17:13:52.279 12569 12569 D OplusScrollToTopManager: Pop-Up Window,unregisterSystemUIBroadcastReceiver -01-19 17:13:52.279 12569 12569 D OplusScrollToTopManager: Pop-Up Window, unregisterSystemUIBroadcastReceiver failed java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@21ebd02 -01-19 17:13:52.279 12569 12569 W WindowOnBackDispatcher: sendCancelIfRunning: isInProgress=false callback=android.view.ViewRootImpl$$ExternalSyntheticLambda13@d5bab65 -01-19 17:13:52.280 12569 12569 D HWUI : RenderProxy::destroy: this=0x7962e1dd00, mContext=0x78a837e900 -01-19 17:13:52.280 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457f1840, surface=NULL -01-19 17:13:52.280 12569 12608 D BufferQueueProducer: [VRI[Pop-Up Window]#17(BLAST Consumer)17](id:311900000011,api:1,p:12569,c:12569) disconnect: api 1 -01-19 17:13:52.280 12569 12608 D HWUI : endAllActiveAnimators on 0x7962c88600 (UnprojectedRipple) with handle 0x7962ffce40 -01-19 17:13:52.283 12569 13956 D BLASTBufferQueue: [VRI[Pop-Up Window]#17](f:0,a:1) destructor() -01-19 17:13:52.283 12569 13956 D BufferQueueConsumer: [VRI[Pop-Up Window]#17(BLAST Consumer)17](id:311900000011,api:0,p:-1,c:12569) disconnect -01-19 17:13:52.299 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-19 17:13:52.301 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:52.301 12569 12569 I ImeTracker: app.gamenative:7cdb1655: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:52.540 12569 12964 I SteamService$logger: [WebSocketConnection] -> Watchdog: No response for 25 seconds -01-19 17:13:52.796 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57876838, mIsMoving = true, mUpdated = true -01-19 17:13:52.796 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:52.875 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57876918, mIsMoving = false, mUpdated = true -01-19 17:13:52.877 12569 12569 D ContainerUtils: Applying containerData to container. execArgs: '', saveToDisk: true -01-19 17:13:52.886 12569 12569 D ContainerUtils: Container set: preferredInputApi=BOTH, dinputMapperType=0x01 -01-19 17:13:52.886 12569 12569 D ContainerUtils: Set container.execArgs to '' -01-19 17:13:52.886 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:52.889 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:52.891 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:52.892 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:52.893 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:52.895 12569 12569 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,window dying -01-19 17:13:52.895 12569 12569 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,unregisterSystemUIBroadcastReceiver -01-19 17:13:52.895 12569 12569 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault, unregisterSystemUIBroadcastReceiver failed java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@7a9e96a -01-19 17:13:52.895 12569 12569 W WindowOnBackDispatcher: sendCancelIfRunning: isInProgress=false callback=android.view.ViewRootImpl$$ExternalSyntheticLambda13@90d483e -01-19 17:13:52.903 12569 12569 D HWUI : RenderProxy::destroy: this=0x7961b1c600, mContext=0x78a1b69b40 -01-19 17:13:52.903 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457f0a80, surface=NULL -01-19 17:13:52.903 12569 12608 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#2(BLAST Consumer)2](id:311900000002,api:1,p:12569,c:12569) disconnect: api 1 -01-19 17:13:52.903 12569 12608 D HWUI : endAllActiveAnimators on 0x7962d52a00 (UnprojectedRipple) with handle 0x79cd825ac0 -01-19 17:13:52.907 12569 12585 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#2](f:0,a:1) destructor() -01-19 17:13:52.907 12569 12585 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#2(BLAST Consumer)2](id:311900000002,api:0,p:-1,c:12569) disconnect -01-19 17:13:52.924 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-19 17:13:52.925 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:52.925 12569 12569 I ImeTracker: app.gamenative:644ffa76: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:53.929 12569 12590 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{d2bfa9e V.E...... R.....I. 0,0-1272,2772 aid=0 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to true -01-19 17:13:55.609 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57879652, mIsMoving = true, mUpdated = true -01-19 17:13:55.609 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:55.696 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57879739, mIsMoving = false, mUpdated = true -01-19 17:13:55.697 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:55.706 12569 12569 D WindowManager: Add to mViews: androidx.compose.ui.window.PopupLayout{3aac322 V.E...... ......I. 0,0-0,0 #1020002 android:id/content alpha=1.0 viewInfo = },pkg= app.gamenative -01-19 17:13:55.706 12569 12608 D skia : setRusSupported enable 0 -01-19 17:13:55.709 12569 12569 D ViewRootImplExtImpl: onDisplayChanged -1 for VRI android.view.ViewRootImpl@da716e9 -01-19 17:13:55.712 12569 12569 E OplusBracketLog: [OplusViewMirrorManager] updateHostViewRootIfNeeded, not support android.view.ViewRootImpl@da716e9 -01-19 17:13:55.713 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:55.713 12569 12569 W WindowOnBackDispatcher: OnBackInvokedCallback is not enabled for the application. -01-19 17:13:55.713 12569 12569 W WindowOnBackDispatcher: Set 'android:enableOnBackInvokedCallback="true"' in the application manifest. -01-19 17:13:55.719 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:55.719 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:55.725 12569 12569 D VRI[Pop-Up Window]: setLayoutParams: x = 656, y = 379 -01-19 17:13:55.727 12569 12569 D BufferQueueConsumer: [](id:311900000012,api:0,p:-1,c:12569) connect: controlledByApp=false -01-19 17:13:55.727 12569 12569 D BufferQueueConsumer: [VRI[Pop-Up Window]#18(BLAST Consumer)18](id:311900000012,api:0,p:-1,c:12569) setMaxAcquiredBufferCount: 2 -01-19 17:13:55.728 12569 12608 D BufferQueueProducer: [VRI[Pop-Up Window]#18(BLAST Consumer)18](id:311900000012,api:1,p:12569,c:12569) connect: api=1 producerControlledByApp=true -01-19 17:13:55.730 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x2e4c881,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:55.732 12569 12608 D BLASTBufferQueue: [VRI[Pop-Up Window]#18](f:0,a:1) acquireNextBufferLocked size=658x1680 mFrameNumber=1 applyTransaction=true mTimestamp=57879774989586(auto) mPendingTransactions.size=0 graphicBufferId=53983443943500 transform=0 -01-19 17:13:55.732 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-19 17:13:55.732 12569 12569 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:55.738 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x2e4c881,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:55.738 12569 12569 D OplusSystemUINavigationGesture: packageName: app.gamenative, systemGestureExclusionChanged region=SkRegion((0,0,546,1568)) list: -01-19 17:13:55.738 12569 12569 D OplusSystemUINavigationGesture: systemGestureExclusionChanged rect=Rect(0, 0 - 546, 1568) -01-19 17:13:55.742 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent false -01-19 17:13:55.744 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x2e4c881,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:55.745 12569 12608 D VRI[Pop-Up Window]: Received frameCommittedCallback lastAttemptedDrawFrameNum=3 didProduceBuffer=true syncBuffer=false -01-19 17:13:55.745 12569 12569 D VRI[Pop-Up Window]: draw finished. seqId=0 -01-19 17:13:55.750 12569 12569 D VRI[Pop-Up Window]: onFocusEvent true -01-19 17:13:55.753 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:55.753 12569 12569 I ImeTracker: app.gamenative:aa08fdac: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:56.122 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57880165, mIsMoving = true, mUpdated = true -01-19 17:13:56.122 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:56.185 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57880228, mIsMoving = false, mUpdated = true -01-19 17:13:56.194 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:56.197 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:56.198 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:56.200 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:56.201 12569 12569 D CustomGameScanner: Found cached icon at /storage/emulated/0/Documents/Games/PC/WWE 2K23/WWE2K23_x64.extracted.ico -01-19 17:13:56.206 12569 12569 D colorx : I can't find colorx layer , let's enumerate colorx layers first. -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: ===== BEGIN DUMP OF OVERRIDDEN SETTINGS ===== -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: ===== END DUMP OF OVERRIDDEN SETTINGS ===== -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: QUALCOMM build : 80a18e6bf8, I3a37e51b1a -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Build Date : 11/06/25 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Shader Compiler Version : E031.50.19.13 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Local Branch : -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Remote Branch : refs/tags/AU_LINUX_ANDROID_LA.VENDOR.16.2.0.R1.11.00.00.1277.089 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Remote Branch : NONE -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Reconstruct Branch : NOTHING -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Build Config : C P 20.0.0 AArch64 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Driver Path : /vendor/lib64/hw/vulkan.adreno.so -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Driver Version : 0842.19 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: PFP : 0x01510094 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: ME : 0x01510025 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Application Name : (null) -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Process Name : app.gamenative -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Application Version : 0x00000000 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Engine Name : (null) -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Engine Version : 0x00000000 -01-19 17:13:56.207 12569 12569 I AdrenoVK-0: Api Version : 0x00400000 -01-19 17:13:56.214 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:56.214 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:56.214 12569 12569 W WindowOnBackDispatcher: OnBackInvokedCallback is not enabled for the application. -01-19 17:13:56.214 12569 12569 W WindowOnBackDispatcher: Set 'android:enableOnBackInvokedCallback="true"' in the application manifest. -01-19 17:13:56.214 12569 12569 D WindowManager: Add to mViews: com.android.internal.policy.DecorView{741ec06 V.E...... R.....I. 0,0-0,0 alpha=1.0 viewInfo = }[MainActivityAliasDefault],pkg= app.gamenative -01-19 17:13:56.215 12569 12608 D skia : setRusSupported enable 0 -01-19 17:13:56.217 12569 12569 D ViewRootImplExtImpl: onDisplayChanged -1 for VRI android.view.ViewRootImpl@e2701d -01-19 17:13:56.218 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=Pop-Up Window)/@0x2e4c881,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:56.219 12569 12569 E OplusBracketLog: [OplusViewMirrorManager] updateHostViewRootIfNeeded, not support android.view.ViewRootImpl@e2701d -01-19 17:13:56.221 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:56.221 12569 12569 D WindowOnBackDispatcher: predictive settings is disabled for app.gamenative -01-19 17:13:56.280 12569 12569 D BufferQueueConsumer: [](id:311900000013,api:0,p:-1,c:12569) connect: controlledByApp=false -01-19 17:13:56.280 12569 12569 D BufferQueueConsumer: [VRI[MainActivityAliasDefault]#19(BLAST Consumer)19](id:311900000013,api:0,p:-1,c:12569) setMaxAcquiredBufferCount: 2 -01-19 17:13:56.281 12569 12608 D BufferQueueProducer: [VRI[MainActivityAliasDefault]#19(BLAST Consumer)19](id:311900000013,api:1,p:12569,c:12569) connect: api=1 producerControlledByApp=true -01-19 17:13:56.292 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=app.gamenative/app.gamenative.MainActivityAliasDefault)/@0x655a2c2,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:56.297 12569 12608 D BLASTBufferQueue: [VRI[MainActivityAliasDefault]#19](f:0,a:1) acquireNextBufferLocked size=1496x2799 mFrameNumber=1 applyTransaction=true mTimestamp=57880339726565(auto) mPendingTransactions.size=0 graphicBufferId=53983443943504 transform=0 -01-19 17:13:56.297 12569 12608 D VRI[MainActivityAliasDefault]: Received frameCommittedCallback lastAttemptedDrawFrameNum=1 didProduceBuffer=true syncBuffer=false -01-19 17:13:56.297 12569 12569 D VRI[MainActivityAliasDefault]: draw finished. seqId=0 -01-19 17:13:56.298 12569 12569 D VRI[Pop-Up Window]: onFocusEvent false -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type Wine: 1 -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type Proton: 1 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type Turnip: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type Vortek: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type VirGL: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type DXVK: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type VKD3D: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type Box64: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type WOWBox64: 0 -01-19 17:13:56.298 12569 12569 D ContentsManager: No directories found (or directory doesn't exist) -01-19 17:13:56.298 12569 12569 D ContentsManager: Total profiles for type FEXCore: 0 -01-19 17:13:56.303 12569 12601 D ContainerUtils: Scanning for executables in A: drive: /storage/emulated/0/Documents/Games/PC/WWE 2K23 -01-19 17:13:56.313 12569 12601 D ContainerUtils: Found 10 executables in A: drive -01-19 17:13:56.317 12569 12569 I SurfaceControl: setExtendedRangeBrightness sc=Surface(name=app.gamenative/app.gamenative.MainActivityAliasDefault)/@0x655a2c2,currentBufferRatio=1.0,desiredRatio=1.0 -01-19 17:13:56.326 12569 12569 D VRI[MainActivityAliasDefault]: onFocusEvent true -01-19 17:13:56.333 12569 12608 D VRI[MainActivityAliasDefault]: Received frameCommittedCallback lastAttemptedDrawFrameNum=3 didProduceBuffer=true syncBuffer=false -01-19 17:13:56.333 12569 12569 D VRI[MainActivityAliasDefault]: draw finished. seqId=0 -01-19 17:13:56.341 12569 12569 D InsetsController: hide(ime(), fromIme=false) -01-19 17:13:56.341 12569 12569 I ImeTracker: app.gamenative:4292c712: onCancelled at PHASE_CLIENT_ALREADY_HIDDEN -01-19 17:13:56.386 12569 12569 D OplusScrollToTopManager: Pop-Up Window,window dying -01-19 17:13:56.386 12569 12569 D OplusScrollToTopManager: Pop-Up Window,unregisterSystemUIBroadcastReceiver -01-19 17:13:56.386 12569 12569 D OplusScrollToTopManager: Pop-Up Window, unregisterSystemUIBroadcastReceiver failed java.lang.IllegalArgumentException: Receiver not registered: android.view.OplusScrollToTopManager$2@56e807b -01-19 17:13:56.386 12569 12569 W WindowOnBackDispatcher: sendCancelIfRunning: isInProgress=false callback=android.view.ViewRootImpl$$ExternalSyntheticLambda13@9bd143 -01-19 17:13:56.386 12569 12569 D HWUI : RenderProxy::destroy: this=0x795d80df00, mContext=0x78a838f480 -01-19 17:13:56.386 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79c8b0eb00, surface=NULL -01-19 17:13:56.387 12569 12608 D BufferQueueProducer: [VRI[Pop-Up Window]#18(BLAST Consumer)18](id:311900000012,api:1,p:12569,c:12569) disconnect: api 1 -01-19 17:13:56.387 12569 12608 D HWUI : endAllActiveAnimators on 0x7962fecc00 (UnprojectedRipple) with handle 0x79619b8d40 -01-19 17:13:56.389 12569 12585 D BLASTBufferQueue: [VRI[Pop-Up Window]#18](f:0,a:1) destructor() -01-19 17:13:56.389 12569 12585 D BufferQueueConsumer: [VRI[Pop-Up Window]#18(BLAST Consumer)18](id:311900000012,api:0,p:-1,c:12569) disconnect -01-19 17:13:56.745 12569 12590 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{d2bfa9e V.E...... R....... 0,0-1272,2772 aid=0 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to false -01-19 17:13:56.909 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57880952, mIsMoving = true, mUpdated = true -01-19 17:13:56.910 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:57.101 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57881143, mIsMoving = false, mUpdated = true -01-19 17:13:57.101 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:57.260 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457f0a80, surface=NULL -01-19 17:13:57.260 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c4140, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c52c0, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c4500, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457ef900, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x794d611c40, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457eff40, surface=NULL -01-19 17:13:57.261 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c43c0, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c61c0, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c6800, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x7962a64c40, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457efb80, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x78985c8100, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79457f1840, surface=NULL -01-19 17:13:57.262 12569 12608 D HWUI : SkiaVulkanPipeline::setSurface: this=0x79c8b0eb00, surface=NULL -01-19 17:13:57.336 12569 12590 D OplusScrollToTopManager: app.gamenative/app.gamenative.MainActivityAliasDefault,This com.android.internal.policy.DecorView{741ec06 V.E...... R......D 0,0-1272,2575 aid=1073741871 alpha=1.0 viewInfo = }[MainActivityAliasDefault] change focus to true -01-19 17:13:57.540 12569 12658 E SteamService$logger: [WebSocketConnection] -> Watchdog: No response for 30 seconds. Disconnecting from steam -01-19 17:13:57.540 12569 12658 I SteamService$logger: [WebSocketConnection] -> Disconnect called: false -01-19 17:13:57.543 12569 12658 I SteamService$logger: [CMClient] -> EventHandler `disconnected` called. User Initiated: false, Expected Disconnection: false -01-19 17:13:57.543 12569 12658 I SteamService$logger: [SmartCMServerList] -> Marking cmp1-vie1.steamserver.net/146.66.155.84:443 - WEB_SOCKET as BAD -01-19 17:13:57.543 12569 12658 I SteamService$logger: [SmartCMServerList] -> Marking cmp1-vie1.steamserver.net/146.66.155.84:27018 - WEB_SOCKET as BAD -01-19 17:13:57.544 12569 12969 I SteamService$logger: [WebSocketConnection] -> Websocket cancelling: StandaloneCoroutine was cancelled -01-19 17:13:57.544 12569 12599 I SteamService: Disconnected from Steam. User initiated: false -01-19 17:13:57.544 12569 12599 W SteamService: Attempting to reconnect (retry 1) -01-19 17:13:57.545 12569 12660 I SteamService$logger: [SmartCMServerList] -> Next server candidate: cmp2-vie1.steamserver.net/146.66.155.85:443 (WEB_SOCKET) -01-19 17:13:57.545 12569 12660 I SteamService$logger: [CMClient] -> Connecting to cmp2-vie1.steamserver.net/146.66.155.85:443 with protocol [WEB_SOCKET], and with connection impl WebSocketConnection -01-19 17:13:57.547 12569 12660 I SteamService$logger: [WebSocketConnection] -> Trying connection to cmp2-vie1.steamserver.net:443 -01-19 17:13:57.696 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57881739, mIsMoving = true, mUpdated = true -01-19 17:13:57.696 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:57.751 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57881793, mIsMoving = false, mUpdated = true -01-19 17:13:57.752 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return -01-19 17:13:58.292 12569 12674 I SteamService$logger: [WebSocketConnection] -> Connected to cmp2-vie1.steamserver.net:443 -01-19 17:13:58.293 12569 12674 I SteamService$logger: [CMClient] -> EventHandler `connected` called -01-19 17:13:58.293 12569 12674 I SteamService$logger: [SmartCMServerList] -> Marking cmp2-vie1.steamserver.net/146.66.155.85:443 - WEB_SOCKET as GOOD -01-19 17:13:58.294 12569 12599 I SteamService: Connected to Steam -01-19 17:13:58.294 12569 12599 I MainViewModel: Received is connected -01-19 17:13:58.531 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 0, mVsyncTime = 57882574, mIsMoving = true, mUpdated = true -01-19 17:13:58.531 12569 12569 V AutofillManager: requestHideFillUi(null): anchor = null -01-19 17:13:58.618 12569 12569 I DynamicFramerate [AnimationSpeedAware]: onEventHandled: info: InputEventInfo: mX = 0, mY = 0, mAction = 1, mVsyncTime = 57882660, mIsMoving = false, mUpdated = true -01-19 17:13:58.619 12569 12569 D ViewRootImplExtImpl: the up motion event handled by client, just return ---------- beginning of crash -01-19 17:13:58.639 12569 12569 E AndroidRuntime: FATAL EXCEPTION: main -01-19 17:13:58.639 12569 12569 E AndroidRuntime: Process: app.gamenative, PID: 12569 -01-19 17:13:58.639 12569 12569 E AndroidRuntime: java.lang.IllegalArgumentException: No string res found for Win Components title: vcrun2022 -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt.winComponentsItemTitleRes(ContainerConfigDialog.kt:113) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt.access$winComponentsItemTitleRes(ContainerConfigDialog.kt:1) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2$1$2$6.invoke(ContainerConfigDialog.kt:1858) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2$1$2$6.invoke(ContainerConfigDialog.kt:1855) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:130) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:51) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at com.alorma.compose.settings.ui.SettingsGroupKt$SettingsGroup$1$2.invoke(SettingsGroup.kt:43) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at com.alorma.compose.settings.ui.SettingsGroupKt$SettingsGroup$1$2.invoke(SettingsGroup.kt:42) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:121) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:51) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.CompositionLocalKt.CompositionLocalProvider(CompositionLocal.kt:384) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at com.alorma.compose.settings.ui.SettingsGroupKt.SettingsGroup(SettingsGroup.kt:42) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2.invoke(ContainerConfigDialog.kt:1855) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at app.gamenative.ui.component.dialog.ContainerConfigDialogKt$ContainerConfigDialog$22$2.invoke(ContainerConfigDialog.kt:969) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl.invoke(ComposableLambda.kt:130) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl$invoke$2.invoke(ComposableLambda.kt:132) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.internal.ComposableLambdaImpl$invoke$2.invoke(ComposableLambda.kt:131) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.RecomposeScopeImpl.compose(RecomposeScopeImpl.kt:235) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.ComposerImpl.recomposeToGroupEnd(Composer.kt:2838) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.ComposerImpl.skipCurrentGroup(Composer.kt:3158) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.ComposerImpl.doCompose-aFTiNEg(Composer.kt:3706) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.ComposerImpl.recompose-aFTiNEg$runtime_release(Composer.kt:3648) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.CompositionImpl.recompose(Composition.kt:1002) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.Recomposer.performRecompose(Recomposer.kt:1266) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.Recomposer.access$performRecompose(Recomposer.kt:142) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.Recomposer$runRecomposeAndApplyChanges$2$1.invoke(Recomposer.kt:620) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.runtime.Recomposer$runRecomposeAndApplyChanges$2$1.invoke(Recomposer.kt:591) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.ui.platform.AndroidUiFrameClock$withFrameNanos$2$callback$1.doFrame(AndroidUiFrameClock.android.kt:39) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.ui.platform.AndroidUiDispatcher.performFrameDispatch(AndroidUiDispatcher.android.kt:108) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.ui.platform.AndroidUiDispatcher.access$performFrameDispatch(AndroidUiDispatcher.android.kt:41) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at androidx.compose.ui.platform.AndroidUiDispatcher$dispatchCallback$1.doFrame(AndroidUiDispatcher.android.kt:69) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1850) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.view.Choreographer$CallbackRecord.run(Choreographer.java:1861) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.view.Choreographer.doCallbacks(Choreographer.java:1373) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.view.Choreographer.doFrame(Choreographer.java:1225) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1835) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.os.Handler.handleCallback(Handler.java:1027) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.os.Handler.dispatchMessage(Handler.java:108) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.os.Looper.loopOnce(Looper.java:298) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.os.Looper.loop(Looper.java:408) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at android.app.ActivityThread.main(ActivityThread.java:9964) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at java.lang.reflect.Method.invoke(Native Method) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:613) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1074) -01-19 17:13:58.639 12569 12569 E AndroidRuntime: Suppressed: kotlinx.coroutines.internal.DiagnosticCoroutineContextException: [androidx.compose.runtime.PausableMonotonicFrameClock@fb13667, androidx.compose.ui.platform.MotionDurationScaleImpl@7b1bc14, StandaloneCoroutine{Cancelling}@9735cbd, AndroidUiDispatcher@38e42b2] - diff --git a/logs/wine_debug.log (2).txt b/logs/wine_debug.log (2).txt deleted file mode 100644 index 484f4da75..000000000 --- a/logs/wine_debug.log (2).txt +++ /dev/null @@ -1,695 +0,0 @@ -EVSHIM starting up… -Bound to SDL 2.32.6 Axis=0x78bcc4d804 -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem ->>> VJOY UPDATER for Player 0 is LIVE in PID 19521 <<< -EVSHIM starting up… -Bound to SDL 2.32.6 Axis=0x73f9615804 -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem ->>> VJOY UPDATER for Player 0 is LIVE in PID 19533 <<< -esync: up and running. -Failed to open /etc/machine-id, error No such file or directory. -0024:fixme:fsync:do_fsync futexes not supported on this platform. -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -002c:fixme:fsync:do_fsync futexes not supported on this platform. -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\wineboot.exe" at 0000000140000000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -0034:fixme:fsync:do_fsync futexes not supported on this platform. -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\services.exe" at 0000000140000000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\userenv.dll" at 0000004FFF700000: builtin -0034:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\setupapi.dll" at 0000004FFF640000: builtin -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -0040:fixme:fsync:do_fsync futexes not supported on this platform. -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winedevice.exe" at 0000000140000000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0000004FFF580000: builtin -0040:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\hidparse.sys" at 0000004FFF520000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\winebus.sys" at 0000004FFF550000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\setupapi.dll" at 0000004FFF640000: builtin -004c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\hidclass.sys" at 0000004FFF4D0000: builtin -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\winehid.sys" at 0000004FFF500000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -004c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -004c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 -004c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 -004c:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 -0068:fixme:hid:handle_IRP_MN_QUERY_ID Unhandled type 00000005 -_r_debug not found in ld.so -0068:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -0068:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -0068:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -0068:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0000004FFED90000: builtin -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -0070:fixme:fsync:do_fsync futexes not supported on this platform. -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winedevice.exe" at 0000000140000000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0000004FFF580000: builtin -0068:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\winexinput.sys" at 0000004FFED60000: builtin -0068:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented! -0070:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -0078:err:ntoskrnl:ZwLoadDriver failed to create driver L"\\Registry\\Machine\\System\\CurrentControlSet\\Services\\SharedGpuResources": c0000142 -0034:fixme:service:scmdatabase_autostart_services Auto-start service L"SharedGpuResources" failed to start: 1114 -_r_debug not found in ld.so -0068:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented! -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -0094:fixme:fsync:do_fsync futexes not supported on this platform. -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winedevice.exe" at 0000000140000000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ntoskrnl.exe" at 0000004FFF580000: builtin -0068:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented! -0094:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -00a0:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\mountmgr.sys" at 0000004FFED30000: builtin -0068:fixme:xinput:pdo_pnp IRP_MN_QUERY_ID type 5, not implemented! -00a0:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\setupapi.dll" at 0000004FFF640000: builtin -00a0:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\drivers\\nsiproxy.sys" at 0000004FFED00000: builtin -00b8:err:nsi:poll_netlink bind failed, errno 13. -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shell32.dll" at 0000004FFE3A0000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -002c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\start.exe" at 0000000140000000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shell32.dll" at 0000004FFE3A0000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -0024:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -_r_debug not found in ld.so -EVSHIM starting up… -Bound to SDL 2.32.6 Axis=0x787a0e7804 -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem ->>> VJOY UPDATER for Player 0 is LIVE in PID 19599 <<< -00c8:fixme:fsync:do_fsync futexes not supported on this platform. -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\explorer.exe" at 0000000140000000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winex11.drv" at 0000004FFE290000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0000004FFED90000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\winsxs\\arm64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef\\comctl32.dll" at 0000004FFE080000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shell32.dll" at 0000004FFE3A0000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -00d8:fixme:fsync:do_fsync futexes not supported on this platform. -00d8:err:environ:init_peb starting L"C:\\windows\\winhandler.exe" in experimental ARM64EC mode -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\winhandler.exe" at 0000000140000000: native -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\libarm64ecfex.dll" at 0000004FFD750000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0000004FFD320000: builtin -00c8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\actxprxy.dll" at 0000004FFD530000: builtin -00c8:err:ole:start_rpcss Failed to start RpcSs service -00d8:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x21cca0,0x00000004) stub -00d8:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d1,0x21ccc8,0x00000008) stub -00d8:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x21cd60,0x00000004) stub -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -_r_debug not found in ld.so -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\SHELL32.dll" at 0000004FFE3A0000: builtin -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -00e8:fixme:fsync:do_fsync futexes not supported on this platform. -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\tabtip.exe" at 0000000140000000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shell32.dll" at 0000004FFE3A0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0000004FFD320000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -00d8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\oleacc.dll" at 0000004FFD200000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\uiautomationcore.dll" at 0000004FFD260000: builtin -00e8:trace:loaddll:build_module Loaded L"c:\\windows\\system32\\winex11.drv" at 0000004FFE290000: builtin -00e8:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0000004FFED90000: builtin -00e8:fixme:oleacc:find_class_data unhandled window class: L"#32769" -00e8:fixme:uiautomation:uia_get_providers_for_hwnd Override provider callback currently unimplemented. -00e8:fixme:uiautomation:default_uia_provider_callback Default ProviderType_NonClientArea provider unimplemented. -00e8:fixme:oleacc:find_class_data unhandled window class: L"#32769" -00e8:fixme:uiautomation:base_hwnd_fragment_get_FragmentRoot 0000000001456418, 000000000011FC00: stub! -00e8:fixme:uiautomation:base_hwnd_fragment_GetEmbeddedFragmentRoots 0000000001456418, 000000000011FBF0: stub! -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001459480, 10002, 000000000183F960: stub -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -0124:fixme:fsync:do_fsync futexes not supported on this platform. -0124:err:environ:init_peb starting L"A:\\Spider-Man.exe" in experimental ARM64EC mode -0124:trace:loaddll:build_module Loaded L"A:\\Spider-Man.exe" at 0000000140000000: native -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\libarm64ecfex.dll" at 0000004FFD750000: builtin -0124:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x11cca0,0x00000004) stub -0124:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d1,0x11ccc8,0x00000008) stub -0124:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x11cd60,0x00000004) stub -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\version.dll" at 0000004FFD1A0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\gdi32.dll" at 0000004FFF180000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\vulkan-1.dll" at 0000004FFD170000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\setupapi.dll" at 0000004FFF640000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winevulkan.dll" at 0000004FFD100000: builtin -0124:trace:loaddll:build_module Loaded L"A:\\amd_ags_x64.dll" at 0000004FFD1D0000: builtin -0124:trace:loaddll:build_module Loaded L"A:\\GFSDK_SSAO_D3D11.win64.dll" at 0000004FFCF60000: native -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\SHELL32.dll" at 0000004FFE3A0000: builtin -0124:trace:loaddll:build_module Loaded L"A:\\steamclient64.dll" at 0000004FFC380000: native -0124:trace:loaddll:build_module Loaded L"A:\\steam_api64.dll" at 0000004FFCF00000: native -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\faultrep.dll" at 0000004FFC360000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0000004FFD320000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\jsproxy.dll" at 0000004FFC2A0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\WINHTTP.dll" at 0000004FFC2E0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\dbghelp.dll" at 0000004FFC1E0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\dnsapi.dll" at 0000004FFC140000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\nsi.dll" at 0000004FFC110000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\IPHLPAPI.DLL" at 0000004FFC180000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msacm32.dll" at 0000004FFC030000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\WINMM.dll" at 0000004FFC070000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\pdh.dll" at 0000004FFC000000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\HID.DLL" at 0000004FFBFD0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\propsys.dll" at 0000004FFBEC0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rtworkq.dll" at 0000004FFBE90000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\MFPlat.DLL" at 0000004FFBF10000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\MFReadWrite.dll" at 0000004FFBE30000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\bcrypt.dll" at 0000004FFBDF0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\UxTheme.dll" at 0000004FFED90000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -0124:trace:loaddll:build_module Loaded L"c:\\windows\\system32\\winex11.drv" at 0000004FFE290000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\VCRUNTIME140.dll" at 0000004FFBD60000: builtin -0124:trace:loaddll:build_module Loaded L"A:\\gattaca.dll" at 0000004FFBD90000: native -0124:fixme:ntdll:NtQuerySystemInformation info_class SYSTEM_PERFORMANCE_INFORMATION -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\d3d12.dll" at 0000004FFBD20000: native -0124:trace:loaddll:build_module Loaded L"C:\\Program Files (x86)\\Steam\\gameoverlayrenderer64.dll" at 0000004FFBB30000: native -0124:fixme:bcrypt:BCryptGenerateSymmetricKey ignoring object buffer -0124:fixme:bcrypt:BCryptGenerateSymmetricKey ignoring object buffer -0124:trace:loaddll:build_module Loaded L"A:\\crs-client.dll" at 0000004FFBAB0000: native -0124:fixme:file:NtLockFile I/O completion on lock not implemented yet -_r_debug not found in ld.so -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/tmp/gamepad.mem -> /data/data/app.gamenative/files/imagefs/tmp/gamepad.mem -015c:fixme:fsync:do_fsync futexes not supported on this platform. -015c:err:environ:init_peb starting L"A:\\crs-handler.exe" in experimental ARM64EC mode -015c:trace:loaddll:build_module Loaded L"A:\\crs-handler.exe" at 0000000140000000: native -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\libarm64ecfex.dll" at 0000004FFD750000: builtin -015c:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x11cca0,0x00000004) stub -015c:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d1,0x11ccc8,0x00000008) stub -015c:fixme:process:NtSetInformationProcess (0xffffffffffffffff,0x000007d0,0x11cd60,0x00000004) stub -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernelbase.dll" at 0000004FFFC50000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\kernel32.dll" at 0000004FFFE10000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ucrtbase.dll" at 0000004FFF9D0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\sechost.dll" at 0000004FFFB70000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msvcrt.dll" at 0000004FFF890000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\advapi32.dll" at 0000004FFFBD0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\win32u.dll" at 0000004FFF100000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ws2_32.dll" at 0000004FFF830000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\user32.dll" at 0000004FFF280000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\GDI32.dll" at 0000004FFF180000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\imm32.dll" at 0000004FFF0B0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\winsxs\\arm64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef\\COMCTL32.dll" at 0000004FFE080000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shcore.dll" at 0000004FFE2D0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\shlwapi.dll" at 0000004FFE310000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\SHELL32.dll" at 0000004FFE3A0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\VERSION.dll" at 0000004FFD1A0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rpcrt4.dll" at 0000004FFF730000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\combase.dll" at 0000004FFEE40000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\coml2.dll" at 0000004FFEE00000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\ole32.dll" at 0000004FFEEE0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\oleaut32.dll" at 0000004FFD320000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\jsproxy.dll" at 0000004FFC2A0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\WINHTTP.dll" at 0000004FFC2E0000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\POWRPROF.dll" at 0000004FFBA80000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\MSIMG32.dll" at 0000004FFBA60000: builtin -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/share/fonts -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite: /data/data/com.winlator.cmod/files/imagefs/usr/share/fonts/.uuid -> /data/data/app.gamenative/files/imagefs/usr/share/fonts/.uuid -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -I replace: rewrite (fstatat): /data/data/com.winlator.cmod/files/imagefs/usr/local/share/fonts -> /data/data/app.gamenative/files/imagefs/usr/local/share/fonts -015c:trace:loaddll:build_module Loaded L"c:\\windows\\system32\\winex11.drv" at 0000004FFE290000: builtin -015c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\uxtheme.dll" at 0000004FFED90000: builtin -015c:fixme:file:NtLockFile I/O completion on lock not implemented yet -015c:fixme:process:SetProcessShutdownParameters (00000100, 00000001): partial stub. -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\dxgi.dll" at 0000004FFB7B0000: native -warn: CreateDXGIFactory2: Ignoring flags -info: Game: Spider-Man.exe -info: DXVK: v2.4.1 -info: Vulkan: Found vkGetInstanceProcAddr in winevulkan.dll @ 0x4ffd125bd0 -info: Built-in extension providers: -info: Platform WSI -info: OpenVR -info: OpenXR -info: OpenVR: could not open registry key, status 2 -info: OpenVR: Failed to locate module -Memory mapping flag was not specified -hook_android_load_sphal_library: filename: vulkan.adreno.so -hook_android_dlopen_ext: filename: vulkan.adreno.so -hook_android_dlopen_ext: loading custom driver: /data/user/0/app.gamenative/files/contents/adrenotools/A8XX MR v21/libvulkan_freedreno.so -info: Enabled instance extensions: -info: VK_EXT_surface_maintenance1 -info: VK_KHR_get_surface_capabilities2 -info: VK_KHR_surface -info: VK_KHR_win32_surface -UtilLayer: Calling Vulkan function vkCreateInstance -info: Wrapper (Turnip Adreno (TM) 840 (git-8e1dc1f5a5)/v21): -info: Driver : Wrapper driver 25.99.99 -info: Memory Heap[0]: -info: Size: 11334 MiB -info: Flags: 0x1 -info: Memory Type[0]: Property Flags = 0x7 -info: Memory Type[1]: Property Flags = 0xf -info: Memory Type[2]: Property Flags = 0xb -info: Memory Type[3]: Property Flags = 0x11 -warn: DXGI: Found monitors not associated with any adapter, using fallback -info: Adapter LUID 0: 0:3f5 -err: readMonitorEdidFromKey: Failed to get EDID reg key size -err: DXGI: Failed to parse display metadata + colorimetry info, using blank. -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\d3d12core.dll" at 0000004FFB200000: native -105622.409:0120:0124:info:vkd3d-proton:vkd3d_instance_apply_application_workarounds: Program name: "Spider-Man.exe" (hash: 3f7c05c45fd32791) -105622.410:0120:0124:info:vkd3d-proton:vkd3d_instance_apply_application_workarounds: Detected game Spider-Man.exe, adding config 0x80400000000, removing masks 0x0. -105622.410:0120:0124:info:vkd3d-proton:vkd3d_instance_deduce_config_flags_from_environment: shader_cache is used, global_pipeline_cache is enforced. -105622.410:0120:0124:info:vkd3d-proton:vkd3d_config_flags_init_once: VKD3D_CONFIG=''. -105622.411:0120:0124:info:vkd3d-proton:vkd3d_get_vk_version: vkd3d-proton - applicationVersion: 3.0.0. -105622.411:0120:0124:info:vkd3d-proton:vkd3d_instance_init: vkd3d-proton - build: 21a49c975df83a7. -105622.453:0120:0124:info:vkd3d-proton:vkd3d_init_device_caps: Not all relevant pipeline stages are supported by EXT_dgc. Skipping EXT. -105622.467:0120:0124:info:vkd3d-proton:vkd3d_memory_info_decide_hvv_usage: Topology: UMA-like topology. -105622.467:0120:0124:info:vkd3d-proton:vkd3d_memory_info_upload_hvv_memory_properties: Topology: HVV usage is allowed, using DEVICE_LOCAL | HOST_COHERENT for UPLOAD. -105622.470:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_get_bindless_flags: Device supports VK_EXT_mutable_descriptor_type. -105622.470:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.470:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.470:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.522:0120:0124:fixme:vkd3d-proton:d3d12_device_caps_init_feature_options1: TotalLaneCount = 2048, may be inaccurate. -105622.523:0120:0124:info:vkd3d-proton:vkd3d_pipeline_library_init_disk_cache: Remapping VKD3D_SHADER_CACHE to: vkd3d-proton.cache. -105622.523:0120:0124:info:vkd3d-proton:vkd3d_pipeline_library_init_disk_cache: Attempting to load disk cache from: vkd3d-proton.cache. -105622.525:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_thread_main: Performing async setup of stream archive ... -105622.528:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_merge: No write cache exists. No need to merge any disk caches. -105622.529:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Merging pipeline libraries took 3.729 ms. -105622.532:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Mapping read-only cache took 0.497 ms. -105622.534:0120:0180:info:vkd3d-proton:d3d12_pipeline_library_read_blob_stream_format: Device teardown request received, stopping parse early. -105622.534:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Parsing stream archive took 2.331 ms. -105622.534:0120:0180:info:vkd3d-proton:vkd3d_pipeline_library_disk_thread_main: Done performing async setup of stream archive. -0124:trace:loaddll:build_module Loaded L"A:\\D3DCompiler_47.dll" at 0000004FFADE0000: native -105622.559:0120:0124:info:vkd3d-proton:vkd3d_get_vk_version: vkd3d-proton - applicationVersion: 3.0.0. -105622.559:0120:0124:info:vkd3d-proton:vkd3d_instance_init: vkd3d-proton - build: 21a49c975df83a7. -105622.597:0120:0124:info:vkd3d-proton:vkd3d_init_device_caps: Not all relevant pipeline stages are supported by EXT_dgc. Skipping EXT. -105622.607:0120:0124:info:vkd3d-proton:vkd3d_memory_info_decide_hvv_usage: Topology: UMA-like topology. -105622.607:0120:0124:info:vkd3d-proton:vkd3d_memory_info_upload_hvv_memory_properties: Topology: HVV usage is allowed, using DEVICE_LOCAL | HOST_COHERENT for UPLOAD. -105622.608:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_get_bindless_flags: Device supports VK_EXT_mutable_descriptor_type. -105622.608:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.608:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.608:0120:0124:info:vkd3d-proton:vkd3d_bindless_state_add_binding: Device supports VK_EXT_descriptor_buffer! -105622.610:0120:0124:fixme:vkd3d-proton:d3d12_device_caps_init_feature_options1: TotalLaneCount = 2048, may be inaccurate. -105622.610:0120:0124:info:vkd3d-proton:vkd3d_pipeline_library_init_disk_cache: Remapping VKD3D_SHADER_CACHE to: vkd3d-proton.cache. -105622.610:0120:0124:info:vkd3d-proton:vkd3d_pipeline_library_init_disk_cache: Attempting to load disk cache from: vkd3d-proton.cache. -105622.611:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_thread_main: Performing async setup of stream archive ... -105622.614:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_merge: No write cache exists. No need to merge any disk caches. -105622.615:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Merging pipeline libraries took 3.463 ms. -105622.615:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Mapping read-only cache took 0.427 ms. -105622.623:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_cache_initial_setup: Parsing stream archive took 7.966 ms. -105622.623:0120:0188:info:vkd3d-proton:vkd3d_pipeline_library_disk_thread_main: Done performing async setup of stream archive. -0124:trace:loaddll:build_module Loaded L"A:\\ffx_fsr2_api_x64.dll" at 0000004FFADA0000: native -0124:trace:loaddll:build_module Loaded L"A:\\ffx_fsr2_api_dx12_x64.dll" at 0000004FFAAF0000: native -0124:trace:loaddll:free_modref Unloaded module L"A:\\ffx_fsr2_api_x64.dll" : native -0124:trace:loaddll:build_module Loaded L"C:\\windows\\winsxs\\arm64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.2600.2982_none_deadbeef\\comctl32.dll" at 0000004FFE080000: builtin -00f8:fixme:oleacc:find_class_data unhandled window class: L"#32770" -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\msimg32.dll" at 0000004FFBA60000: builtin -00f8:fixme:oleacc:Window_get_accState (00000000008C2670)->(000000000183FD50 {VT_I4: 0} 000000000183FD38) -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497010, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"#32770" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001459480, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"#32770" -00f8:fixme:oleacc:Window_get_accState (00000000008BB0D0)->(000000000183FD50 {VT_I4: 0} 000000000183FD38) -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497010, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"#32770" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497010, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497010, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"SysTabControl32" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497010, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"SysTabControl32" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"msctls_trackbar32" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"msctls_trackbar32" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"msctls_trackbar32" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"msctls_trackbar32" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Static" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"ComboBox" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 000000000145AD10, 10002, 000000000183F960: stub -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 00000000014650D0, 10002, 000000000183F960: stub -0124:fixme:system:NtUserSystemParametersInfo Unimplemented action: 59 (SPI_SETSTICKYKEYS) -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 0000000001497600, 10002, 000000000183F960: stub -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 000000000145AD10, 10002, 000000000183F960: stub -00f8:fixme:oleacc:find_class_data unhandled window class: L"Button" -034c:fixme:combase:RoGetActivationFactory (L"Windows.Gaming.Input.Gamepad", {8bbce529-d49c-39e9-9560-e47dde96b7c8}, 0000000147A85EC0): semi-stub -034c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\dinput8.dll" at 0000004FFAA10000: builtin -034c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\windows.gaming.input.dll" at 0000004FFAA90000: builtin -035c:err:service:device_notify_proc failed to open RPC handle, error 1722 -034c:fixme:combase:RoGetActivationFactory (L"Windows.Gaming.Input.Gamepad", {42676dc5-0856-47c4-9213-b395504c3a3c}, 0000000147A85EB8): semi-stub -034c:fixme:combase:RoGetActivationFactory (L"Windows.Gaming.Input.RawGameController", {eb8d0792-e95a-4b19-afc7-0a59f8bf759e}, 0000000147A85EB0): semi-stub -034c:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\xinput9_1_0.dll" at 0000004FFADB0000: builtin -0364:fixme:kernelbase:AppPolicyGetThreadInitializationType FFFFFFFFFFFFFFFA, 000000006423FF80 -105640.785:0120:032c:info:vkd3d-proton:dxgi_vk_swap_chain_init: Creating swapchain (1280 x 720), BufferCount = 2. -00f8:fixme:uiautomation:msaa_provider_GetPatternProvider Unimplemented patternId 10002 -00f8:fixme:uiautomation:base_hwnd_provider_GetPatternProvider 000000000145AD10, 10002, 000000000183F960: stub -105640.792:0120:032c:info:vkd3d-proton:dxgi_vk_swap_chain_init_sync_objects: Ensure maximum latency of 3 frames with KHR_present_wait. -105640.794:0120:032c:info:vkd3d-proton:dxgi_vk_swap_chain_init_waiter_thread: Enabling present wait path for frame latency. -105640.794:0120:032c:info:vkd3d-proton:dxgi_vk_swap_chain_init_sleep_state: Timer interval is 1.0 ms. -warn: DXGI: MakeWindowAssociation: Ignoring flags -03e0:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -03ec:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -03f0:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -03e8:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -03f4:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -03e4:fixme:thread:NtSetInformationThread ThreadIdealProcessor stub! -0124:trace:loaddll:build_module Loaded L"A:\\bink2w64.dll" at 0000004FFA980000: native -0438:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\mmdevapi.dll" at 0000004FFA920000: builtin -0438:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winepulse.drv" at 0000004FFA8F0000: builtin -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\XAudio2_7.DLL" at 0000004FFA860000: builtin -0440:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\compstui.dll" at 0000004FFA730000: builtin -0440:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\winspool.drv" at 0000004FFA780000: builtin -0440:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\wbem\\wbemprox.dll" at 0000004FFA7E0000: builtin -0440:fixme:wbemprox:client_security_SetBlanket 0000004FFA83DCD0, 000000007D861DB0, 10, 0, (null), 3, 3, 0000000000000000, 0 -0440:fixme:wbemprox:client_security_Release 0000004FFA83DCD0 -0124:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\xaudio2_8.dll" at 0000004FFA6A0000: builtin -0440:fixme:wbemprox:enum_class_object_Next timeout not supported -wine: setpriority 3 for pid -1 failed: 3 -0480:fixme:kernelbase:AppPolicyGetThreadInitializationType FFFFFFFFFFFFFFFA, 000000027FE9FF80 -105646.271:0120:0190:info:vkd3d-proton:d3d12_command_queue_execute: Enabling staggered submissions for command queue 0000000001968d00, queue family 0. -0124:err:sync:RtlLeaveCriticalSection section 00000001476A80C0 (null) is not acquired -105646.714:0120:03c8:info:vkd3d-proton:d3d12_command_queue_execute: Enabling staggered submissions for command queue 0000000062a257f0, queue family 0. -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\crypt32.dll" at 0000004FFA580000: builtin -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\secur32.dll" at 0000004FFA530000: builtin -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\Kerberos.dll" at 0000004FFA500000: builtin -0484:err:kerberos:kerberos_LsaApInitializePackage no Kerberos support, expect problems -0484:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\Kerberos.dll" : builtin -105646.987:0120:0190:info:vkd3d-proton:dxgi_vk_swap_chain_recreate_swapchain_in_present_task: Got 3 swapchain images. -105647.004:0120:0190:info:vkd3d-proton:dxgi_vk_swap_chain_recreate_swapchain_in_present_task: Got 3 swapchain images. -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\netapi32.dll" at 0000004FFA4B0000: builtin -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\MSV1_0.dll" at 0000004FFA500000: builtin -0484:err:ntlm:ntlm_LsaApInitializePackage no NTLM support, expect problems -0484:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\MSV1_0.dll" : builtin -0484:trace:loaddll:free_modref Unloaded module L"C:\\windows\\system32\\netapi32.dll" : builtin -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\schannel.dll" at 0000004FFA500000: builtin -0484:trace:loaddll:build_module Loaded L"C:\\windows\\system32\\rsaenh.dll" at 0000004FFA490000: builtin -105655.791:0120:03c8:info:vkd3d-proton:d3d12_command_queue_execute: Disabling staggered submissions for command queue 0000000062a257f0, queue family 0. -wine: setpriority -5 for pid -1 failed: 3 -105656.017:0120:03c8:info:vkd3d-proton:d3d12_command_queue_execute: Enabling staggered submissions for command queue 0000000062a257f0, queue family 0. -013c:err:esync:esync_set_event write: Bad file descriptor -105740.165:0120:0190:info:vkd3d-proton:d3d12_command_queue_execute: Disabling staggered submissions for command queue 0000000001968d00, queue family 0. -105740.179:0120:0190:info:vkd3d-proton:d3d12_command_queue_execute: Enabling staggered submissions for command queue 0000000001968d00, queue family 0. -X connection to :0 broken (explicit kill or server shutdown). -X connection to :0 broken (explicit kill or server shutdown). -X connection to :0 broken (explicit kill or server shutdown). -X connection to :0 broken (explicit kill or server shutdown). -X connection to :0 broken (explicit kill or server shutdown). -X connection to :0 broken (explicit kill or server shutdown).