Nikita Tsukanov
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with
6 additions and
1 deletions
-
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" |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|