LibGPU: Don't dlopen using absolute path

This commit is contained in:
Sahan Fernando 2022-04-07 22:44:42 +10:00 committed by Andreas Kling
commit 154cb4e368
Notes: sideshowbarker 2024-07-17 14:17:53 +09:00

View file

@ -20,7 +20,7 @@ namespace GPU {
static HashMap<String, String> const s_driver_path_map
{
#if defined(__serenity__)
{ "softgpu", "/usr/lib/libsoftgpu.so" },
{ "softgpu", "libsoftgpu.so" },
#elif defined(__APPLE__)
{ "softgpu", "./liblagom-softgpu.dylib" },
#else