gitextract_6hm9lafi/ ├── .github/ │ └── workflows/ │ └── build.yml ├── .gitignore ├── build-all.sh ├── build_config/ │ ├── meson-cross-file-aarch64 │ └── meson-cross-file-x86_64 ├── common/ │ ├── Addons/ │ │ ├── DXTest/ │ │ │ ├── DX8DolphinVS/ │ │ │ │ ├── Dolphin1.x │ │ │ │ ├── Dolphin2.x │ │ │ │ ├── Dolphin3.x │ │ │ │ ├── DolphinTween.vsh │ │ │ │ ├── DolphinTween2.vsh │ │ │ │ ├── SeaFloor.vsh │ │ │ │ ├── SeaFloor2.vsh │ │ │ │ ├── caust00.tga │ │ │ │ ├── caust01.tga │ │ │ │ ├── caust02.tga │ │ │ │ ├── caust03.tga │ │ │ │ ├── caust04.tga │ │ │ │ ├── caust05.tga │ │ │ │ ├── caust06.tga │ │ │ │ ├── caust07.tga │ │ │ │ ├── caust08.tga │ │ │ │ ├── caust09.tga │ │ │ │ ├── caust10.tga │ │ │ │ ├── caust11.tga │ │ │ │ ├── caust12.tga │ │ │ │ ├── caust13.tga │ │ │ │ ├── caust14.tga │ │ │ │ ├── caust15.tga │ │ │ │ ├── caust16.tga │ │ │ │ ├── caust17.tga │ │ │ │ ├── caust18.tga │ │ │ │ ├── caust19.tga │ │ │ │ ├── caust20.tga │ │ │ │ ├── caust21.tga │ │ │ │ ├── caust22.tga │ │ │ │ ├── caust23.tga │ │ │ │ ├── caust24.tga │ │ │ │ ├── caust25.tga │ │ │ │ ├── caust26.tga │ │ │ │ ├── caust27.tga │ │ │ │ ├── caust28.tga │ │ │ │ ├── caust29.tga │ │ │ │ ├── caust30.tga │ │ │ │ ├── caust31.tga │ │ │ │ ├── dolphin.x │ │ │ │ ├── dolphin_group.x │ │ │ │ ├── seafloor.x │ │ │ │ └── trace.txt │ │ │ ├── DX9EnvMapping/ │ │ │ │ ├── LobbyCube.dds │ │ │ │ ├── airplane 2.x │ │ │ │ ├── lobby_skybox.x │ │ │ │ └── teapot.x │ │ │ └── DX9StencilMirror/ │ │ │ ├── StencilMirror.dxvk-cache │ │ │ ├── StencilMirror_d3d9.log │ │ │ ├── heli.x │ │ │ └── seafloor.x │ │ ├── DefaultDLLsOverrides.reg │ │ └── Themes/ │ │ └── DarkBlue/ │ │ └── DarkBlue.reg │ └── Start Menu/ │ ├── Applications/ │ │ ├── Notepad.lnk │ │ ├── Registry Editor.lnk │ │ ├── TFM - File Manager.lnk │ │ ├── Task Manager.lnk │ │ └── Wine Configuration.lnk │ ├── DX Test/ │ │ ├── DirectX - 8/ │ │ │ └── DolphinVS.bat │ │ └── DirectX - 9/ │ │ ├── CubeMap.bat │ │ ├── SphereMap.bat │ │ └── StencilMirror.bat │ ├── Regedit Tweak/ │ │ ├── Fake GPU/ │ │ │ ├── 6600GT.reg.bat │ │ │ ├── 9600GT.reg.bat │ │ │ ├── ATIHD5800.reg.bat │ │ │ ├── GMAQ33.reg.bat │ │ │ ├── GTX1050.reg.bat │ │ │ ├── GTX470.reg.bat │ │ │ ├── IntelHD4000.reg.bat │ │ │ ├── RX480.reg.bat │ │ │ ├── VMWareSVGA3D.reg.bat │ │ │ └── VirtIOGPU.reg.bat │ │ ├── Fake VRAM/ │ │ │ ├── 128MB.bat │ │ │ ├── 1GB.bat │ │ │ ├── 256MB.bat │ │ │ ├── 2GB.bat │ │ │ ├── 3GB.bat │ │ │ ├── 4GB.bat │ │ │ ├── 512MB.bat │ │ │ ├── 6GB.bat │ │ │ ├── 768MB.bat │ │ │ └── 8GB.bat │ │ └── Graphics Settings/ │ │ └── CSMT/ │ │ ├── 0.bat │ │ ├── 1.bat │ │ └── 3.bat │ └── Update Prefix.bat ├── create-rootfs-rat.sh ├── packages/ │ ├── FreeGLUT/ │ │ ├── build.sh │ │ ├── fix-cmake-minimum.patch │ │ ├── src-fg_internal.h.patch │ │ └── src-x11-fg_main_x11.c.patch │ ├── GLU/ │ │ └── build.sh │ ├── Vulkan-Headers/ │ │ └── build.sh │ ├── Vulkan-Loader/ │ │ ├── 0001-fix-hardcoded-pathes.patch │ │ ├── 0002-properly-enable-extensions.patch │ │ └── build.sh │ ├── Vulkan-Tools/ │ │ ├── 01-no-android.patch │ │ ├── 02-do-not-search-KHR_display-automatically.patch │ │ └── build.sh │ ├── Vulkan-Volk/ │ │ └── build.sh │ ├── android-shmem/ │ │ ├── build.sh │ │ └── fix-build.patch │ ├── box64-0.3.2/ │ │ ├── build.sh │ │ ├── custom-make-install.sh │ │ └── fix-signal.patch │ ├── box64-0.3.3-8bb53e1/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── box64-0.3.4/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── box64-0.3.6/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── box64-0.3.7-cb2c29c/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── box64-0.3.8/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── box64-0.3.9-056999e/ │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── brotli/ │ │ └── build.sh │ ├── fakeintl/ │ │ ├── Makefile │ │ ├── build.sh │ │ └── libintl.h │ ├── freetype/ │ │ └── build.sh │ ├── glib/ │ │ ├── build.sh │ │ ├── gio-gdbusprivate.c.patch │ │ ├── gio-gkeyfilesettingsbackend.c.patch │ │ ├── gio-gnetworking.h.in.patch │ │ ├── gio-gunixmounts.c.patch │ │ ├── gio-xdgmime-xdgmime.c.patch │ │ ├── glib-gcharset.c.patch │ │ ├── glib-gspawn.c.patch │ │ ├── glib-gthread-posix.c.patch │ │ ├── glib-gthreadprivate.h.patch │ │ ├── glib-gtimezone.patch │ │ ├── glib-gtypes.h.patch │ │ ├── glib-gutils.c.patch │ │ ├── glib-no-ovverride-host-binary.patch │ │ ├── glib-tests-meson.build.patch │ │ └── meson.build.patch │ ├── gst-plugins-bad/ │ │ ├── build.sh │ │ └── fix-build.patch │ ├── gst-plugins-base/ │ │ └── build.sh │ ├── gst-plugins-good/ │ │ └── build.sh │ ├── gst-plugins-ugly/ │ │ └── build.sh │ ├── gstreamer/ │ │ └── build.sh │ ├── icoutils/ │ │ └── build.sh │ ├── libX11/ │ │ ├── build.sh │ │ ├── fix-pthread.patch │ │ ├── src-CrGlCur.c.patch │ │ └── src-XlibInt.c.patch │ ├── libXau/ │ │ ├── build.sh │ │ └── libXau-1.0.8_AuLock.c.patch │ ├── libXcomposite/ │ │ └── build.sh │ ├── libXcursor/ │ │ ├── build.sh │ │ └── fix-paths.patch │ ├── libXdmcp/ │ │ └── build.sh │ ├── libXext/ │ │ └── build.sh │ ├── libXfixes/ │ │ └── build.sh │ ├── libXi/ │ │ └── build.sh │ ├── libXinerama/ │ │ └── build.sh │ ├── libXrandr/ │ │ └── build.sh │ ├── libXrender/ │ │ └── build.sh │ ├── libXxf86vm/ │ │ └── build.sh │ ├── libadrenotools/ │ │ ├── 01-fix-build.patch │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── libandroid-wordexp/ │ │ ├── Makefile │ │ ├── build.sh │ │ ├── wordexp.c │ │ └── wordexp.h │ ├── libarchive/ │ │ ├── archive.h.patch │ │ ├── archive_entry.h.patch │ │ ├── archive_string.c.patch │ │ ├── archive_util.c.patch │ │ ├── archive_write_disk_posix.c.patch │ │ ├── archive_write_set_format_zip.c.patch │ │ ├── build.sh │ │ └── fix-cmake-minimum.patch │ ├── libc++/ │ │ ├── Makefile │ │ ├── build.sh │ │ └── custom-make-install.sh │ ├── libdrm/ │ │ └── build.sh │ ├── libevent/ │ │ ├── build.sh │ │ ├── cmake-minimum-fix.patch │ │ └── fix.patch │ ├── libexpat/ │ │ └── build.sh │ ├── libffi/ │ │ └── build.sh │ ├── libghttp/ │ │ └── build.sh │ ├── libglvnd/ │ │ ├── build.sh │ │ └── egl-not-android.diff │ ├── libgmp/ │ │ └── build.sh │ ├── libgnutls/ │ │ ├── build.sh │ │ ├── gl-stdio-impl.h.patch │ │ └── src-gl-stdio-impl.h.patch │ ├── libiconv/ │ │ └── build.sh │ ├── libidn2/ │ │ ├── 0000-disable-versioning-of-symbols.patch │ │ └── build.sh │ ├── libnettle/ │ │ ├── build.sh │ │ └── configure.patch │ ├── libogg/ │ │ └── build.sh │ ├── libpng/ │ │ └── build.sh │ ├── libsndfile/ │ │ ├── build.sh │ │ ├── fix-cmake-minimum.patch │ │ └── fix-tmpdir-and-alsa.patch │ ├── libtool/ │ │ └── build.sh │ ├── libunbound/ │ │ ├── build.sh │ │ ├── libunbound-libunbound.c.patch │ │ └── smallapp-unbound-host.c.patch │ ├── libunistring/ │ │ └── build.sh │ ├── libvorbis/ │ │ └── build.sh │ ├── libxcb/ │ │ ├── build.sh │ │ └── libxcb-1.12_src_xcb_util.c.patch │ ├── libxml2/ │ │ └── build.sh │ ├── libxshmfence/ │ │ └── build.sh │ ├── mangohud/ │ │ ├── 01-fix-build.patch │ │ ├── 02-fix-x11-lib-name.patch │ │ ├── 03-not-search-gpu-on-sys-folder.patch │ │ ├── 04-set-android-os-name.patch │ │ ├── 05-disable-cpu-info.patch │ │ └── build.sh │ ├── mesa-demos/ │ │ ├── 0001-fix-KHR-define.patch │ │ ├── build.sh │ │ └── src-tests-texdown.c.patch │ ├── mesa-vulkan-freedreno-24.0.0/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ ├── tu_kgsl_export_dmabuf.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-freedreno-24.3.0/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── experimental-ad710-support.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-freedreno-25.0.0/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── experimental-ad710-support.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-freedreno-25.0.3/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── experimental-ad710-support.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-freedreno-25.1.0/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── experimental-ad710-support.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-freedreno-25.1.4/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── experimental-ad710-support.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-radeon/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── mesa-vulkan-wrapper/ │ │ └── build.sh │ ├── mesa-vulkan-wrapper-adrenotools/ │ │ ├── 01-implement-adrenotools.patch │ │ └── build.sh │ ├── mesa-vulkan-wrapper-rev8/ │ │ ├── 01-install-drivers-without-hardlinks.patch │ │ ├── 02-disable-memfd-create-getrandom.patch │ │ ├── 03-wsi-common-no-pthread-cancel.patch │ │ ├── 04-Android-Vulkan-wrapper.patch │ │ ├── 05-vulkan-x11-termux-x11-support.patch │ │ ├── 06-wrapper-map-dmabuf_fd.patch │ │ ├── 07-fix-build.patch │ │ └── build.sh │ ├── mesa-vulkan-wrapper-rev9/ │ │ ├── 01-install-drivers-without-hardlinks.patch │ │ ├── 02-disable-memfd-create-getrandom.patch │ │ ├── 03-Android-Vulkan-wrapper.patch │ │ ├── 03-wsi-common-no-pthread-cancel.patch │ │ ├── 04-vulkan-x11-termux-x11-support.patch │ │ ├── 05-fix-build.patch │ │ └── build.sh │ ├── mesa-zink/ │ │ ├── build.sh │ │ ├── disable-memfd-create-getrandom.patch │ │ ├── force-linux-like-build.patch │ │ ├── install-drivers-without-hardlinks.patch │ │ ├── lld-undefined-version.patch │ │ └── wsi-common-no-pthread-cancel.patch │ ├── openssl/ │ │ ├── Configurations-15-android.conf.patch │ │ ├── build.sh │ │ └── include-crypto-rand.h.patch │ ├── opus/ │ │ └── build.sh │ ├── pcre2/ │ │ └── build.sh │ ├── pulseaudio/ │ │ ├── 01-pulseaudio-android.patch │ │ ├── 02-aaudio-sink.patch │ │ ├── build.sh │ │ └── post-install.sh │ ├── wine/ │ │ ├── build.sh │ │ └── post-install.sh │ ├── xcb-proto/ │ │ └── build.sh │ ├── xkbcommon/ │ │ └── build.sh │ ├── xkeyboard-config/ │ │ └── build.sh │ ├── xorg-utils-macros/ │ │ └── build.sh │ ├── xorgproto/ │ │ ├── build.sh │ │ └── include-x11-Xos_r.h.patch │ ├── xtrans/ │ │ ├── build.sh │ │ ├── xtrans-1.3.5_Xtransutil.c.patch │ │ ├── xtrans-1.4.0_Xtranslcl.c.patch │ │ └── xtrans-1.4.0_Xtranssock.c.patch │ ├── zlib/ │ │ ├── build.sh │ │ └── force-shared-library.patch │ └── zstd/ │ └── build.sh └── tools/ ├── create-rat-pkg.sh └── download-external-dependencies.sh