├── .github ├── dependabot.yml └── workflows │ └── release.yml ├── .gitignore ├── LICENSE ├── QtMsBuild ├── Qt.props ├── deploy │ ├── qt_import.props │ ├── qtdeploy.props │ ├── qtdeploy.targets │ └── qtdeploy.xml ├── moc │ ├── qt_import.props │ ├── qtmoc.props │ ├── qtmoc.targets │ ├── qtmoc.xml │ ├── qtmoc_cl.targets │ └── qtmoc_v3.xml ├── qml │ ├── qt_import.props │ ├── qtqml.props │ ├── qtqml.targets │ ├── qtqml_cache.props │ ├── qtqml_cache.targets │ ├── qtqml_static.props │ └── qtqml_static.targets ├── qt.targets ├── qt5.natvis.xml ├── qt6.natvis.xml ├── qt_defaults.props ├── qt_globals.targets ├── qt_inner.targets ├── qt_private.props ├── qt_settings.targets ├── qt_settings.xml ├── qt_tasks.targets ├── qt_vars.targets ├── rcc │ ├── qt_import.props │ ├── qtrcc.props │ ├── qtrcc.targets │ ├── qtrcc.xml │ ├── qtrcc_cl.targets │ └── qtrcc_v3.xml ├── repc │ ├── qt_import.props │ ├── qtrepc.props │ ├── qtrepc.targets │ ├── qtrepc.xml │ ├── qtrepc_cl.targets │ └── qtrepc_v3.xml ├── translation │ ├── qt_import.props │ ├── qttranslation.props │ ├── qttranslation.targets │ └── qttranslation.xml ├── uic │ ├── qt_import.props │ ├── qtuic.props │ ├── qtuic.targets │ ├── qtuic.xml │ └── qtuic_v3.xml ├── version.log └── version.targets ├── README.md ├── limit-nvpstate.sln ├── limit-nvpstate ├── about.cpp ├── about.h ├── about.ui ├── config.cpp ├── config.h ├── config.json ├── icon.ico ├── limit-nvpstate.rc ├── limit-nvpstate.vcxproj ├── limit-nvpstate.vcxproj.filters ├── limit-nvpstate.vcxproj.user ├── limitnvpstate.cpp ├── limitnvpstate.h ├── limitnvpstate.qrc ├── limitnvpstate.ui ├── main.cpp ├── nvidia.cpp ├── nvidia.h ├── resource.h ├── utils.cpp └── utils.h ├── nvapi ├── NvApiDriverSettings.c ├── NvApiDriverSettings.h ├── amd64 │ └── nvapi64.lib ├── nvHLSLExtns.h ├── nvHLSLExtnsInternal.h ├── nvShaderExtnEnums.h ├── nvapi.h ├── nvapi_lite_common.h ├── nvapi_lite_d3dext.h ├── nvapi_lite_salend.h ├── nvapi_lite_salstart.h ├── nvapi_lite_sli.h ├── nvapi_lite_stereo.h ├── nvapi_lite_surround.h └── x86 │ └── nvapi.lib └── vcpkg.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/LICENSE -------------------------------------------------------------------------------- /QtMsBuild/Qt.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/Qt.props -------------------------------------------------------------------------------- /QtMsBuild/deploy/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/deploy/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/deploy/qtdeploy.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/deploy/qtdeploy.props -------------------------------------------------------------------------------- /QtMsBuild/deploy/qtdeploy.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/deploy/qtdeploy.targets -------------------------------------------------------------------------------- /QtMsBuild/deploy/qtdeploy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/deploy/qtdeploy.xml -------------------------------------------------------------------------------- /QtMsBuild/moc/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/moc/qtmoc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qtmoc.props -------------------------------------------------------------------------------- /QtMsBuild/moc/qtmoc.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qtmoc.targets -------------------------------------------------------------------------------- /QtMsBuild/moc/qtmoc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qtmoc.xml -------------------------------------------------------------------------------- /QtMsBuild/moc/qtmoc_cl.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qtmoc_cl.targets -------------------------------------------------------------------------------- /QtMsBuild/moc/qtmoc_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/moc/qtmoc_v3.xml -------------------------------------------------------------------------------- /QtMsBuild/qml/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml.props -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml.targets -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml_cache.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml_cache.props -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml_cache.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml_cache.targets -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml_static.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml_static.props -------------------------------------------------------------------------------- /QtMsBuild/qml/qtqml_static.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qml/qtqml_static.targets -------------------------------------------------------------------------------- /QtMsBuild/qt.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt.targets -------------------------------------------------------------------------------- /QtMsBuild/qt5.natvis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt5.natvis.xml -------------------------------------------------------------------------------- /QtMsBuild/qt6.natvis.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt6.natvis.xml -------------------------------------------------------------------------------- /QtMsBuild/qt_defaults.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_defaults.props -------------------------------------------------------------------------------- /QtMsBuild/qt_globals.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_globals.targets -------------------------------------------------------------------------------- /QtMsBuild/qt_inner.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_inner.targets -------------------------------------------------------------------------------- /QtMsBuild/qt_private.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_private.props -------------------------------------------------------------------------------- /QtMsBuild/qt_settings.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_settings.targets -------------------------------------------------------------------------------- /QtMsBuild/qt_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_settings.xml -------------------------------------------------------------------------------- /QtMsBuild/qt_tasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_tasks.targets -------------------------------------------------------------------------------- /QtMsBuild/qt_vars.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/qt_vars.targets -------------------------------------------------------------------------------- /QtMsBuild/rcc/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/rcc/qtrcc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qtrcc.props -------------------------------------------------------------------------------- /QtMsBuild/rcc/qtrcc.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qtrcc.targets -------------------------------------------------------------------------------- /QtMsBuild/rcc/qtrcc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qtrcc.xml -------------------------------------------------------------------------------- /QtMsBuild/rcc/qtrcc_cl.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qtrcc_cl.targets -------------------------------------------------------------------------------- /QtMsBuild/rcc/qtrcc_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/rcc/qtrcc_v3.xml -------------------------------------------------------------------------------- /QtMsBuild/repc/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/repc/qtrepc.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qtrepc.props -------------------------------------------------------------------------------- /QtMsBuild/repc/qtrepc.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qtrepc.targets -------------------------------------------------------------------------------- /QtMsBuild/repc/qtrepc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qtrepc.xml -------------------------------------------------------------------------------- /QtMsBuild/repc/qtrepc_cl.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qtrepc_cl.targets -------------------------------------------------------------------------------- /QtMsBuild/repc/qtrepc_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/repc/qtrepc_v3.xml -------------------------------------------------------------------------------- /QtMsBuild/translation/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/translation/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/translation/qttranslation.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/translation/qttranslation.props -------------------------------------------------------------------------------- /QtMsBuild/translation/qttranslation.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/translation/qttranslation.targets -------------------------------------------------------------------------------- /QtMsBuild/translation/qttranslation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/translation/qttranslation.xml -------------------------------------------------------------------------------- /QtMsBuild/uic/qt_import.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/uic/qt_import.props -------------------------------------------------------------------------------- /QtMsBuild/uic/qtuic.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/uic/qtuic.props -------------------------------------------------------------------------------- /QtMsBuild/uic/qtuic.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/uic/qtuic.targets -------------------------------------------------------------------------------- /QtMsBuild/uic/qtuic.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/uic/qtuic.xml -------------------------------------------------------------------------------- /QtMsBuild/uic/qtuic_v3.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/uic/qtuic_v3.xml -------------------------------------------------------------------------------- /QtMsBuild/version.log: -------------------------------------------------------------------------------- 1 | 3.2.0.47 2 | -------------------------------------------------------------------------------- /QtMsBuild/version.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/QtMsBuild/version.targets -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/README.md -------------------------------------------------------------------------------- /limit-nvpstate.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate.sln -------------------------------------------------------------------------------- /limit-nvpstate/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/about.cpp -------------------------------------------------------------------------------- /limit-nvpstate/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/about.h -------------------------------------------------------------------------------- /limit-nvpstate/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/about.ui -------------------------------------------------------------------------------- /limit-nvpstate/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/config.cpp -------------------------------------------------------------------------------- /limit-nvpstate/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/config.h -------------------------------------------------------------------------------- /limit-nvpstate/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/config.json -------------------------------------------------------------------------------- /limit-nvpstate/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/icon.ico -------------------------------------------------------------------------------- /limit-nvpstate/limit-nvpstate.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limit-nvpstate.rc -------------------------------------------------------------------------------- /limit-nvpstate/limit-nvpstate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limit-nvpstate.vcxproj -------------------------------------------------------------------------------- /limit-nvpstate/limit-nvpstate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limit-nvpstate.vcxproj.filters -------------------------------------------------------------------------------- /limit-nvpstate/limit-nvpstate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limit-nvpstate.vcxproj.user -------------------------------------------------------------------------------- /limit-nvpstate/limitnvpstate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limitnvpstate.cpp -------------------------------------------------------------------------------- /limit-nvpstate/limitnvpstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limitnvpstate.h -------------------------------------------------------------------------------- /limit-nvpstate/limitnvpstate.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limitnvpstate.qrc -------------------------------------------------------------------------------- /limit-nvpstate/limitnvpstate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/limitnvpstate.ui -------------------------------------------------------------------------------- /limit-nvpstate/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/main.cpp -------------------------------------------------------------------------------- /limit-nvpstate/nvidia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/nvidia.cpp -------------------------------------------------------------------------------- /limit-nvpstate/nvidia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/nvidia.h -------------------------------------------------------------------------------- /limit-nvpstate/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/resource.h -------------------------------------------------------------------------------- /limit-nvpstate/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/utils.cpp -------------------------------------------------------------------------------- /limit-nvpstate/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/limit-nvpstate/utils.h -------------------------------------------------------------------------------- /nvapi/NvApiDriverSettings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/NvApiDriverSettings.c -------------------------------------------------------------------------------- /nvapi/NvApiDriverSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/NvApiDriverSettings.h -------------------------------------------------------------------------------- /nvapi/amd64/nvapi64.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/amd64/nvapi64.lib -------------------------------------------------------------------------------- /nvapi/nvHLSLExtns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvHLSLExtns.h -------------------------------------------------------------------------------- /nvapi/nvHLSLExtnsInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvHLSLExtnsInternal.h -------------------------------------------------------------------------------- /nvapi/nvShaderExtnEnums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvShaderExtnEnums.h -------------------------------------------------------------------------------- /nvapi/nvapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_common.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_d3dext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_d3dext.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_salend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_salend.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_salstart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_salstart.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_sli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_sli.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_stereo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_stereo.h -------------------------------------------------------------------------------- /nvapi/nvapi_lite_surround.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/nvapi_lite_surround.h -------------------------------------------------------------------------------- /nvapi/x86/nvapi.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/nvapi/x86/nvapi.lib -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/valleyofdoom/limit-nvpstate/HEAD/vcpkg.json --------------------------------------------------------------------------------