Skip to content

Commit

Permalink
[X11] Blacklist SVGA3D gpu driver (#15742)
Browse files Browse the repository at this point in the history
  • Loading branch information
kekekeks authored and maxkatz6 committed Aug 12, 2024
1 parent a588543 commit 39a7f08
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/Avalonia.X11/X11Platform.cs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,12 @@ public class X11PlatformOptions
// 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"
};


Expand Down

0 comments on commit 39a7f08

Please sign in to comment.