Browse Source

dont enable gpu by default on gtk

Dan Walmsley 7 years ago
parent
commit
7add17a39b
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs

+ 1 - 1
src/Gtk/Avalonia.Gtk3/Gtk3Platform.cs

@@ -149,7 +149,7 @@ namespace Avalonia.Gtk3
     public class Gtk3PlatformOptions
     public class Gtk3PlatformOptions
     {
     {
         public bool? UseDeferredRendering { get; set; } = true;
         public bool? UseDeferredRendering { get; set; } = true;
-        public bool? UseGpuAcceleration { get; set; } = true;
+        public bool? UseGpuAcceleration { get; set; };
         public ICustomGtk3NativeLibraryResolver CustomResolver { get; set; }
         public ICustomGtk3NativeLibraryResolver CustomResolver { get; set; }
     }
     }
 }
 }