├── .github └── workflows │ ├── - │ ├── chore_purrrger.yml │ ├── chore_purrrser.yml │ ├── d3d_dxvk.yml │ ├── d3d_dxvk_a64.yml │ ├── d3d_dxvk_gpl.yml │ ├── d3d_dxvk_gpl_a64.yml │ ├── d3d_dxvk_sarek_as.yml │ ├── d3d_dxvk_sarek_as_a64.yml │ ├── d3d_vkd3d.yml │ ├── d3d_vkd3d_a64.yml │ ├── x86_box64_bio.yml │ ├── x86_fexcore.yml │ └── x86_wowbox64.yml ├── LICENSE ├── README.md ├── img.png ├── img2.png ├── scripts ├── forcebuild │ ├── dxvk-241-pr.sh │ └── dxvk-gpl-241-pr.sh ├── guard-matrix.sh ├── guard.sh ├── guts-arm64ec.sh ├── install-deps-ubuntu.sh ├── log.sh ├── packing.sh ├── patches │ ├── dxvk-gplasync-2.4.1-1-pre-reg.patch │ ├── dxvk-sarek.sh │ ├── dxvk.sh │ └── shims │ │ └── sarek-sse-shim.h ├── profiles │ ├── box64-bionic.sh │ ├── dxvk-arm64ec.sh │ ├── dxvk-gplasync-arm64ec.sh │ ├── dxvk-gplasync.sh │ ├── dxvk-sarek-async-arm64ec.sh │ ├── dxvk-sarek-async.sh │ ├── dxvk.sh │ ├── fexcore.sh │ ├── vkd3d-proton-arm64ec.sh │ ├── vkd3d-proton.sh │ └── wowbox64.sh ├── release.sh ├── setup-llvm-meson.sh └── setup-llvm.sh └── toolchains └── arm64ec.meson.ini /.github/workflows/-: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.github/workflows/chore_purrrger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/chore_purrrger.yml -------------------------------------------------------------------------------- /.github/workflows/chore_purrrser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/chore_purrrser.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk_a64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk_a64.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk_gpl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk_gpl.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk_gpl_a64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk_gpl_a64.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk_sarek_as.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk_sarek_as.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_dxvk_sarek_as_a64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_dxvk_sarek_as_a64.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_vkd3d.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_vkd3d.yml -------------------------------------------------------------------------------- /.github/workflows/d3d_vkd3d_a64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/d3d_vkd3d_a64.yml -------------------------------------------------------------------------------- /.github/workflows/x86_box64_bio.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/x86_box64_bio.yml -------------------------------------------------------------------------------- /.github/workflows/x86_fexcore.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/x86_fexcore.yml -------------------------------------------------------------------------------- /.github/workflows/x86_wowbox64.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/.github/workflows/x86_wowbox64.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/README.md -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/img.png -------------------------------------------------------------------------------- /img2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/img2.png -------------------------------------------------------------------------------- /scripts/forcebuild/dxvk-241-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/forcebuild/dxvk-241-pr.sh -------------------------------------------------------------------------------- /scripts/forcebuild/dxvk-gpl-241-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/forcebuild/dxvk-gpl-241-pr.sh -------------------------------------------------------------------------------- /scripts/guard-matrix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/guard-matrix.sh -------------------------------------------------------------------------------- /scripts/guard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/guard.sh -------------------------------------------------------------------------------- /scripts/guts-arm64ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/guts-arm64ec.sh -------------------------------------------------------------------------------- /scripts/install-deps-ubuntu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/install-deps-ubuntu.sh -------------------------------------------------------------------------------- /scripts/log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/log.sh -------------------------------------------------------------------------------- /scripts/packing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/packing.sh -------------------------------------------------------------------------------- /scripts/patches/dxvk-gplasync-2.4.1-1-pre-reg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/patches/dxvk-gplasync-2.4.1-1-pre-reg.patch -------------------------------------------------------------------------------- /scripts/patches/dxvk-sarek.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/patches/dxvk-sarek.sh -------------------------------------------------------------------------------- /scripts/patches/dxvk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/patches/dxvk.sh -------------------------------------------------------------------------------- /scripts/patches/shims/sarek-sse-shim.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/patches/shims/sarek-sse-shim.h -------------------------------------------------------------------------------- /scripts/profiles/box64-bionic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/box64-bionic.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk-arm64ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk-arm64ec.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk-gplasync-arm64ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk-gplasync-arm64ec.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk-gplasync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk-gplasync.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk-sarek-async-arm64ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk-sarek-async-arm64ec.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk-sarek-async.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk-sarek-async.sh -------------------------------------------------------------------------------- /scripts/profiles/dxvk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/dxvk.sh -------------------------------------------------------------------------------- /scripts/profiles/fexcore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/fexcore.sh -------------------------------------------------------------------------------- /scripts/profiles/vkd3d-proton-arm64ec.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/vkd3d-proton-arm64ec.sh -------------------------------------------------------------------------------- /scripts/profiles/vkd3d-proton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/vkd3d-proton.sh -------------------------------------------------------------------------------- /scripts/profiles/wowbox64.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/profiles/wowbox64.sh -------------------------------------------------------------------------------- /scripts/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/release.sh -------------------------------------------------------------------------------- /scripts/setup-llvm-meson.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/setup-llvm-meson.sh -------------------------------------------------------------------------------- /scripts/setup-llvm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/scripts/setup-llvm.sh -------------------------------------------------------------------------------- /toolchains/arm64ec.meson.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Arihany/WinlatorWCPHub/HEAD/toolchains/arm64ec.meson.ini --------------------------------------------------------------------------------