├── .env ├── .env.development ├── .env.production ├── .gitignore ├── README.md ├── app ├── __init__.py ├── app_event_loop.py ├── app_fn.py ├── app_main.py ├── app_settings.py ├── cfg │ ├── __init__.py │ ├── base_mod_cfg.py │ ├── cfg_file_handler.py │ ├── foveated_cfg.py │ ├── fsr_cfg.py │ ├── vrperfkit_cfg.py │ └── vrperfkit_rsf_cfg.py ├── events.py ├── globals.py ├── log.py ├── mod │ ├── __init__.py │ ├── base_mod.py │ ├── base_mod_type.py │ ├── foveated_mod.py │ ├── fsr_mod.py │ ├── mod_utils.py │ ├── vrperfkit_mod.py │ └── vrperfkit_rsf_mod.py ├── start.py ├── util │ ├── __init__.py │ ├── custom_app.py │ ├── knownpaths.py │ ├── manifest_worker.py │ ├── runasadmin.py │ └── utils.py └── valve │ ├── __init__.py │ ├── acf.py │ └── steam.py ├── babel.config.js ├── data ├── openvr_foveated │ ├── README.md │ ├── openvr_api.dll │ └── openvr_mod.cfg ├── openvr_fsr │ ├── README.md │ ├── openvr_api.dll │ └── openvr_mod.cfg ├── screen.webp ├── vrperfkit │ ├── LICENSE │ ├── README.md │ ├── dxgi.dll │ ├── vrperfkit.yml │ └── x86 │ │ └── dxgi.dll └── vrperfkitrsf │ ├── dxgi.dll │ ├── vrperfkit_RSF.log │ └── vrperfkit_RSF.yml ├── license.txt ├── local_pkgs └── bottle-0.13.dev0.tar.gz ├── openvr_fsr_app.py ├── openvr_fsr_app.spec ├── openvr_fsr_app_win64_setup.iss ├── package.json ├── poetry.lock ├── public ├── favicon.ico ├── fonts │ ├── ultimapdac-ultralight-webfont.woff │ └── ultimapdac-ultralight-webfont.woff2 └── index.html ├── pyproject.toml ├── run.py ├── src ├── App.vue ├── assets │ ├── app_icon.ico │ ├── app_logo_inkscape.png │ ├── app_logo_inkscape.svg │ └── main.css ├── components │ ├── DirManager.vue │ ├── EntryDetails.vue │ ├── Footer.vue │ ├── LanguageSwitcher.vue │ ├── Main.vue │ ├── Setting.vue │ ├── SteamLibTable.vue │ └── Updater.vue ├── lang │ ├── index.js │ └── translations │ │ ├── de.json │ │ ├── en.json │ │ ├── ja.json │ │ └── zh.json └── main.js ├── tests ├── __init__.py ├── conftest.py ├── data │ └── input │ │ ├── custom_dir │ │ └── custom_app_writeable │ │ │ ├── Another Binary.exe │ │ │ └── sub dir │ │ │ ├── Binary.EXE │ │ │ └── openvr_api.dll │ │ ├── mod_dir │ │ ├── openvr_api.dll │ │ ├── openvr_mod.cfg │ │ └── vrperfkit.yml │ │ ├── settings_0.6.4.json │ │ ├── steamapps │ │ ├── appmanifest_123.acf │ │ ├── appmanifest_124.acf │ │ └── common │ │ │ ├── test_app │ │ │ └── openvr_api.dll │ │ │ └── test_app_writeable │ │ │ ├── Another Binary.exe │ │ │ ├── openvr_api.dll │ │ │ └── sub dir │ │ │ ├── Binary.EXE │ │ │ └── openvr_api.dll │ │ └── user_app │ │ └── openvr_api.dll ├── test_app │ ├── test_app_fn.py │ ├── test_custom_dir.py │ ├── test_mod_utils.py │ ├── test_openvr_mod.py │ ├── test_user_apps.py │ └── test_vrperfkit_mod.py └── test_valve │ └── test_steam_lib.py ├── vue.config.js └── yarn.lock /.env: -------------------------------------------------------------------------------- 1 | VUE_APP_FRIENDLY_NAME=VR Mod App -------------------------------------------------------------------------------- /.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/.env.development -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/.env.production -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/README.md -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/app_event_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/app_event_loop.py -------------------------------------------------------------------------------- /app/app_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/app_fn.py -------------------------------------------------------------------------------- /app/app_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/app_main.py -------------------------------------------------------------------------------- /app/app_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/app_settings.py -------------------------------------------------------------------------------- /app/cfg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/__init__.py -------------------------------------------------------------------------------- /app/cfg/base_mod_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/base_mod_cfg.py -------------------------------------------------------------------------------- /app/cfg/cfg_file_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/cfg_file_handler.py -------------------------------------------------------------------------------- /app/cfg/foveated_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/foveated_cfg.py -------------------------------------------------------------------------------- /app/cfg/fsr_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/fsr_cfg.py -------------------------------------------------------------------------------- /app/cfg/vrperfkit_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/vrperfkit_cfg.py -------------------------------------------------------------------------------- /app/cfg/vrperfkit_rsf_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/cfg/vrperfkit_rsf_cfg.py -------------------------------------------------------------------------------- /app/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/events.py -------------------------------------------------------------------------------- /app/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/globals.py -------------------------------------------------------------------------------- /app/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/log.py -------------------------------------------------------------------------------- /app/mod/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/__init__.py -------------------------------------------------------------------------------- /app/mod/base_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/base_mod.py -------------------------------------------------------------------------------- /app/mod/base_mod_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/base_mod_type.py -------------------------------------------------------------------------------- /app/mod/foveated_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/foveated_mod.py -------------------------------------------------------------------------------- /app/mod/fsr_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/fsr_mod.py -------------------------------------------------------------------------------- /app/mod/mod_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/mod_utils.py -------------------------------------------------------------------------------- /app/mod/vrperfkit_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/vrperfkit_mod.py -------------------------------------------------------------------------------- /app/mod/vrperfkit_rsf_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/mod/vrperfkit_rsf_mod.py -------------------------------------------------------------------------------- /app/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/start.py -------------------------------------------------------------------------------- /app/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/util/custom_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/util/custom_app.py -------------------------------------------------------------------------------- /app/util/knownpaths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/util/knownpaths.py -------------------------------------------------------------------------------- /app/util/manifest_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/util/manifest_worker.py -------------------------------------------------------------------------------- /app/util/runasadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/util/runasadmin.py -------------------------------------------------------------------------------- /app/util/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/util/utils.py -------------------------------------------------------------------------------- /app/valve/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/valve/acf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/valve/acf.py -------------------------------------------------------------------------------- /app/valve/steam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/app/valve/steam.py -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/babel.config.js -------------------------------------------------------------------------------- /data/openvr_foveated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_foveated/README.md -------------------------------------------------------------------------------- /data/openvr_foveated/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_foveated/openvr_api.dll -------------------------------------------------------------------------------- /data/openvr_foveated/openvr_mod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_foveated/openvr_mod.cfg -------------------------------------------------------------------------------- /data/openvr_fsr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_fsr/README.md -------------------------------------------------------------------------------- /data/openvr_fsr/openvr_api.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_fsr/openvr_api.dll -------------------------------------------------------------------------------- /data/openvr_fsr/openvr_mod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/openvr_fsr/openvr_mod.cfg -------------------------------------------------------------------------------- /data/screen.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/screen.webp -------------------------------------------------------------------------------- /data/vrperfkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkit/LICENSE -------------------------------------------------------------------------------- /data/vrperfkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkit/README.md -------------------------------------------------------------------------------- /data/vrperfkit/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkit/dxgi.dll -------------------------------------------------------------------------------- /data/vrperfkit/vrperfkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkit/vrperfkit.yml -------------------------------------------------------------------------------- /data/vrperfkit/x86/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkit/x86/dxgi.dll -------------------------------------------------------------------------------- /data/vrperfkitrsf/dxgi.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkitrsf/dxgi.dll -------------------------------------------------------------------------------- /data/vrperfkitrsf/vrperfkit_RSF.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/vrperfkitrsf/vrperfkit_RSF.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/data/vrperfkitrsf/vrperfkit_RSF.yml -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/license.txt -------------------------------------------------------------------------------- /local_pkgs/bottle-0.13.dev0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/local_pkgs/bottle-0.13.dev0.tar.gz -------------------------------------------------------------------------------- /openvr_fsr_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/openvr_fsr_app.py -------------------------------------------------------------------------------- /openvr_fsr_app.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/openvr_fsr_app.spec -------------------------------------------------------------------------------- /openvr_fsr_app_win64_setup.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/openvr_fsr_app_win64_setup.iss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/package.json -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/poetry.lock -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/fonts/ultimapdac-ultralight-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/public/fonts/ultimapdac-ultralight-webfont.woff -------------------------------------------------------------------------------- /public/fonts/ultimapdac-ultralight-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/public/fonts/ultimapdac-ultralight-webfont.woff2 -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/public/index.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/pyproject.toml -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/run.py -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/assets/app_icon.ico -------------------------------------------------------------------------------- /src/assets/app_logo_inkscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/assets/app_logo_inkscape.png -------------------------------------------------------------------------------- /src/assets/app_logo_inkscape.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/assets/app_logo_inkscape.svg -------------------------------------------------------------------------------- /src/assets/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/assets/main.css -------------------------------------------------------------------------------- /src/components/DirManager.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/DirManager.vue -------------------------------------------------------------------------------- /src/components/EntryDetails.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/EntryDetails.vue -------------------------------------------------------------------------------- /src/components/Footer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/Footer.vue -------------------------------------------------------------------------------- /src/components/LanguageSwitcher.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/LanguageSwitcher.vue -------------------------------------------------------------------------------- /src/components/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/Main.vue -------------------------------------------------------------------------------- /src/components/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/Setting.vue -------------------------------------------------------------------------------- /src/components/SteamLibTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/SteamLibTable.vue -------------------------------------------------------------------------------- /src/components/Updater.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/components/Updater.vue -------------------------------------------------------------------------------- /src/lang/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/lang/index.js -------------------------------------------------------------------------------- /src/lang/translations/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/lang/translations/de.json -------------------------------------------------------------------------------- /src/lang/translations/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/lang/translations/en.json -------------------------------------------------------------------------------- /src/lang/translations/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/lang/translations/ja.json -------------------------------------------------------------------------------- /src/lang/translations/zh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/lang/translations/zh.json -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/src/main.js -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/data/input/custom_dir/custom_app_writeable/Another Binary.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/custom_dir/custom_app_writeable/sub dir/Binary.EXE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/custom_dir/custom_app_writeable/sub dir/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/mod_dir/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/mod_dir/openvr_mod.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/data/input/mod_dir/openvr_mod.cfg -------------------------------------------------------------------------------- /tests/data/input/mod_dir/vrperfkit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/data/input/mod_dir/vrperfkit.yml -------------------------------------------------------------------------------- /tests/data/input/settings_0.6.4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/data/input/settings_0.6.4.json -------------------------------------------------------------------------------- /tests/data/input/steamapps/appmanifest_123.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/data/input/steamapps/appmanifest_123.acf -------------------------------------------------------------------------------- /tests/data/input/steamapps/appmanifest_124.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/data/input/steamapps/appmanifest_124.acf -------------------------------------------------------------------------------- /tests/data/input/steamapps/common/test_app/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/steamapps/common/test_app_writeable/Another Binary.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/steamapps/common/test_app_writeable/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/steamapps/common/test_app_writeable/sub dir/Binary.EXE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/steamapps/common/test_app_writeable/sub dir/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/input/user_app/openvr_api.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_app/test_app_fn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_app_fn.py -------------------------------------------------------------------------------- /tests/test_app/test_custom_dir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_custom_dir.py -------------------------------------------------------------------------------- /tests/test_app/test_mod_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_mod_utils.py -------------------------------------------------------------------------------- /tests/test_app/test_openvr_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_openvr_mod.py -------------------------------------------------------------------------------- /tests/test_app/test_user_apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_user_apps.py -------------------------------------------------------------------------------- /tests/test_app/test_vrperfkit_mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_app/test_vrperfkit_mod.py -------------------------------------------------------------------------------- /tests/test_valve/test_steam_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/tests/test_valve/test_steam_lib.py -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/vue.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tappi287/openvr_fsr_app/HEAD/yarn.lock --------------------------------------------------------------------------------