├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── dist ├── gamestream_steam_bp.ini ├── mass_effect_andromeda-box-art.jpg └── mass_effect_andromeda-box-art.png ├── install.py ├── install.spec ├── requirements.txt ├── setup.cfg ├── src ├── CMakeLists.txt ├── WinReg.hpp ├── hdr_toggle.cpp ├── hdr_toggle.hpp └── main.cpp ├── vcpkg.json ├── version.rc.in └── version.txt.in /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/README.md -------------------------------------------------------------------------------- /dist/gamestream_steam_bp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/dist/gamestream_steam_bp.ini -------------------------------------------------------------------------------- /dist/mass_effect_andromeda-box-art.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/dist/mass_effect_andromeda-box-art.jpg -------------------------------------------------------------------------------- /dist/mass_effect_andromeda-box-art.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/dist/mass_effect_andromeda-box-art.png -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/install.py -------------------------------------------------------------------------------- /install.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/install.spec -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | oschmod 2 | pyinstaller 3 | requests -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [flake8] 2 | max-line-length=160 3 | -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/WinReg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/src/WinReg.hpp -------------------------------------------------------------------------------- /src/hdr_toggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/src/hdr_toggle.cpp -------------------------------------------------------------------------------- /src/hdr_toggle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/src/hdr_toggle.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/src/main.cpp -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/vcpkg.json -------------------------------------------------------------------------------- /version.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/version.rc.in -------------------------------------------------------------------------------- /version.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyckantropen/moonlight_hdr_launcher/HEAD/version.txt.in --------------------------------------------------------------------------------