mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
LibGPU: Do not load LibSoftGPU via symlink inside Serenity
For unknown reasons, unveil() does not work on symlinks. This prevents it from being used in an unveil environment such as WebContent.
This commit is contained in:
parent
df2c0588ea
commit
7d1fcb0cb3
Notes:
sideshowbarker
2024-07-17 10:16:20 +09:00
Author: https://github.com/Lubrsi Commit: https://github.com/SerenityOS/serenity/commit/7d1fcb0cb3 Pull-request: https://github.com/SerenityOS/serenity/pull/14184 Reviewed-by: https://github.com/Quaker762 ✅ Reviewed-by: https://github.com/gmta ✅ Reviewed-by: https://github.com/linusg ✅ Reviewed-by: https://github.com/sunverwerth
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ namespace GPU {
|
|||
static HashMap<String, String> const s_driver_path_map
|
||||
{
|
||||
#if defined(__serenity__)
|
||||
{ "softgpu", "libsoftgpu.so" },
|
||||
{ "softgpu", "libsoftgpu.so.serenity" },
|
||||
#elif defined(__APPLE__)
|
||||
{ "softgpu", "./liblagom-softgpu.dylib" },
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue