Browse Source

Add thread name in DxgiConnection (#20505)

The thread name in WinUiCompositorConnection is DwmRenderTimerLoop
pull/20514/head
lindexi 2 weeks ago
committed by GitHub
parent
commit
3b3a5d2b76
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/Windows/Avalonia.Win32/DirectX/DxgiConnection.cs

1
src/Windows/Avalonia.Win32/DirectX/DxgiConnection.cs

@ -168,6 +168,7 @@ namespace Avalonia.Win32.DirectX
});
thread.IsBackground = true;
thread.SetApartmentState(System.Threading.ApartmentState.STA);
thread.Name = "DxgiRenderTimerLoop";
thread.Start();
// block until
return tcs.Task.Result;

Loading…
Cancel
Save