Jelajahi Sumber

[X11] Blacklist SVGA3D gpu driver (#15742)

Nikita Tsukanov 1 tahun lalu
induk
melakukan
38d810b36f
1 mengubah file dengan 6 tambahan dan 1 penghapusan
  1. 6 1
      src/Avalonia.X11/X11Platform.cs

+ 6 - 1
src/Avalonia.X11/X11Platform.cs

@@ -345,7 +345,12 @@ namespace Avalonia
             // llvmpipe is a software GL rasterizer. If it's returned by glGetString,
             // llvmpipe is a software GL rasterizer. If it's returned by glGetString,
             // that usually means that something in the system is horribly misconfigured
             // that usually means that something in the system is horribly misconfigured
             // and sometimes attempts to use GLX might cause a segfault
             // and sometimes attempts to use GLX might cause a segfault
-            "llvmpipe"
+            "llvmpipe",
+            // SVGA3D is a driver for VMWare virtual GPU
+            // There were reports of various glitches like parts of the UI not being rendered
+            // Given that VMs are mostly used by testing, we've decided to blacklist that driver
+            // for now
+            "SVGA3D"
         };
         };