From 4444ce94c850b5b98558a067d62dfff4453ea932 Mon Sep 17 00:00:00 2001 From: Travis Nickles Date: Wed, 12 Feb 2020 21:46:52 -0600 Subject: [PATCH] Use software rendering by default Related to issue #1019 --- DS4Windows/App.xaml.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/DS4Windows/App.xaml.cs b/DS4Windows/App.xaml.cs index 11f7300..7819cfe 100644 --- a/DS4Windows/App.xaml.cs +++ b/DS4Windows/App.xaml.cs @@ -16,6 +16,7 @@ using System.Windows; using System.Windows.Interop; using WPFLocalizeExtension.Engine; using NLog; +using System.Windows.Media; namespace DS4WinWPF { @@ -107,6 +108,7 @@ namespace DS4WinWPF CreateTempWorkerThread(); CreateControlService(); + RenderOptions.ProcessRenderMode = RenderMode.SoftwareOnly; DS4Windows.Global.FindConfigLocation(); bool firstRun = DS4Windows.Global.firstRun;