diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-02-29 12:55:57 +0100 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-02-29 12:55:57 +0100 |
| commit | 50250bd2ca6bd4e30486da9a55ffee0cebebc37d (patch) | |
| tree | 82ca32449ae6bc296f918baf55e1f5aba60b1dda /rebuild_wrappers.py | |
| parent | 0e71c3a2ac67f9c77d27571f3e70429aefded5d5 (diff) | |
| download | box64-50250bd2ca6bd4e30486da9a55ffee0cebebc37d.tar.gz box64-50250bd2ca6bd4e30486da9a55ffee0cebebc37d.zip | |
Added wrapped support for EGL/GLESv2
Diffstat (limited to 'rebuild_wrappers.py')
| -rwxr-xr-x | rebuild_wrappers.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rebuild_wrappers.py b/rebuild_wrappers.py index 70ab3889..115e7d80 100755 --- a/rebuild_wrappers.py +++ b/rebuild_wrappers.py @@ -399,7 +399,9 @@ def readFiles(files: Iterable[Filename]) -> Tuple[JumbledGlobals, JumbledRedirec or match("sdl1mixer", "sdl2mixer") \ or match("sdl1net", "sdl2net") \ or match("sdl1ttf", "sdl2ttf") \ - or match("libGL", "libEGL") \ + or match("libgl", "libegl") \ + or match("libgl", "glesv2") \ + or match("libegl", "glesv2") \ or match("libc", "tcmallocminimal") \ or match("libc", "tbbmallocproxy") \ or match("libc", "androidshmem") \ |