├── .gitignore ├── .gitmodules ├── COPYING ├── README.md ├── VkLayer_FROG_gamescope_wsi.x86_64.json ├── modules ├── espeak-ng │ └── espeak-ng-1.52.json ├── gamemode │ ├── README.md │ └── gamemode-1.8.json ├── libaio │ └── libaio-0.3.112.json ├── libbz2 │ └── libbz2-1.0.8.json ├── libdecor │ └── libdecor.json ├── libpng │ ├── libpng-1.2.json │ └── libpng-1.6.json ├── nvidia-cg-toolkit │ └── nvidia-cg-toolkit-3.1.0013.json ├── pcaudiolib │ └── pcaudiolib-1.3.json └── xrandr │ └── xrandr-1.5.json ├── org.libretro.RetroArch.appdata.xml ├── org.libretro.RetroArch.json └── retroarch.cfg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/README.md -------------------------------------------------------------------------------- /VkLayer_FROG_gamescope_wsi.x86_64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/VkLayer_FROG_gamescope_wsi.x86_64.json -------------------------------------------------------------------------------- /modules/espeak-ng/espeak-ng-1.52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/espeak-ng/espeak-ng-1.52.json -------------------------------------------------------------------------------- /modules/gamemode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/gamemode/README.md -------------------------------------------------------------------------------- /modules/gamemode/gamemode-1.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/gamemode/gamemode-1.8.json -------------------------------------------------------------------------------- /modules/libaio/libaio-0.3.112.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/libaio/libaio-0.3.112.json -------------------------------------------------------------------------------- /modules/libbz2/libbz2-1.0.8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/libbz2/libbz2-1.0.8.json -------------------------------------------------------------------------------- /modules/libdecor/libdecor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/libdecor/libdecor.json -------------------------------------------------------------------------------- /modules/libpng/libpng-1.2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/libpng/libpng-1.2.json -------------------------------------------------------------------------------- /modules/libpng/libpng-1.6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/libpng/libpng-1.6.json -------------------------------------------------------------------------------- /modules/nvidia-cg-toolkit/nvidia-cg-toolkit-3.1.0013.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/nvidia-cg-toolkit/nvidia-cg-toolkit-3.1.0013.json -------------------------------------------------------------------------------- /modules/pcaudiolib/pcaudiolib-1.3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/pcaudiolib/pcaudiolib-1.3.json -------------------------------------------------------------------------------- /modules/xrandr/xrandr-1.5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/modules/xrandr/xrandr-1.5.json -------------------------------------------------------------------------------- /org.libretro.RetroArch.appdata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/org.libretro.RetroArch.appdata.xml -------------------------------------------------------------------------------- /org.libretro.RetroArch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/org.libretro.RetroArch.json -------------------------------------------------------------------------------- /retroarch.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flathub/org.libretro.RetroArch/HEAD/retroarch.cfg --------------------------------------------------------------------------------