Browse Source

[X11] Blacklist SVGA3D gpu driver (#15742)

designer_protocol_theme_variant
Nikita Tsukanov 2 years ago
committed by GitHub
parent
commit
38d810b36f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 7
      src/Avalonia.X11/X11Platform.cs

7
src/Avalonia.X11/X11Platform.cs

@ -345,7 +345,12 @@ namespace Avalonia
// llvmpipe is a software GL rasterizer. If it's returned by glGetString,
// that usually means that something in the system is horribly misconfigured
// 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"
};

Loading…
Cancel
Save