├── .github └── FUNDING.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── DLSSTweaks.ini ├── DisableNvidiaSigOverride.reg ├── EnableNvidiaSigOverride.reg ├── LICENSE.md ├── README.md ├── cmake.toml ├── cmkr.cmake ├── external ├── DLSS │ ├── LICENSE.dxvk-remix.txt │ ├── LICENSE.txt │ ├── include │ │ ├── nvsdk_ngx.h │ │ ├── nvsdk_ngx_defs.h │ │ ├── nvsdk_ngx_defs_deepdvc.h │ │ ├── nvsdk_ngx_defs_dlssd.h │ │ ├── nvsdk_ngx_dlssg.h │ │ ├── nvsdk_ngx_dlssg_vk.h │ │ ├── nvsdk_ngx_helpers.h │ │ ├── nvsdk_ngx_helpers_deepdvc.h │ │ ├── nvsdk_ngx_helpers_deepdvc_vk.h │ │ ├── nvsdk_ngx_helpers_dlssd.h │ │ ├── nvsdk_ngx_helpers_dlssd_vk.h │ │ ├── nvsdk_ngx_helpers_vk.h │ │ ├── nvsdk_ngx_params.h │ │ ├── nvsdk_ngx_params_dlssd.h │ │ └── nvsdk_ngx_vk.h │ └── license.streamline.txt ├── ngx_driver_onscreenindicator_all.reg └── ngx_driver_onscreenindicator_off.reg └── src ├── DLSSTweaks.hpp ├── DllMain.cpp ├── Proxy.cpp ├── Proxy.def ├── Proxy.hpp ├── ProxyNvngx.cpp ├── Resource.aps ├── Resource.rc ├── UserSettings.cpp ├── Utility.cpp ├── Utility.hpp ├── module_hooks ├── nvngx.cpp ├── nvngx_dlss.cpp └── nvngx_dlssg.cpp └── resource.h /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /DLSSTweaks.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/DLSSTweaks.ini -------------------------------------------------------------------------------- /DisableNvidiaSigOverride.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/DisableNvidiaSigOverride.reg -------------------------------------------------------------------------------- /EnableNvidiaSigOverride.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/EnableNvidiaSigOverride.reg -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/README.md -------------------------------------------------------------------------------- /cmake.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/cmake.toml -------------------------------------------------------------------------------- /cmkr.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/cmkr.cmake -------------------------------------------------------------------------------- /external/DLSS/LICENSE.dxvk-remix.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/LICENSE.dxvk-remix.txt -------------------------------------------------------------------------------- /external/DLSS/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/LICENSE.txt -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_defs.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_defs_deepdvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_defs_deepdvc.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_defs_dlssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_defs_dlssd.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_dlssg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_dlssg.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_dlssg_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_dlssg_vk.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers_deepdvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers_deepdvc.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers_deepdvc_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers_deepdvc_vk.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers_dlssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers_dlssd.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers_dlssd_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers_dlssd_vk.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_helpers_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_helpers_vk.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_params.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_params_dlssd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_params_dlssd.h -------------------------------------------------------------------------------- /external/DLSS/include/nvsdk_ngx_vk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/include/nvsdk_ngx_vk.h -------------------------------------------------------------------------------- /external/DLSS/license.streamline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/DLSS/license.streamline.txt -------------------------------------------------------------------------------- /external/ngx_driver_onscreenindicator_all.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/ngx_driver_onscreenindicator_all.reg -------------------------------------------------------------------------------- /external/ngx_driver_onscreenindicator_off.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/external/ngx_driver_onscreenindicator_off.reg -------------------------------------------------------------------------------- /src/DLSSTweaks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/DLSSTweaks.hpp -------------------------------------------------------------------------------- /src/DllMain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/DllMain.cpp -------------------------------------------------------------------------------- /src/Proxy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Proxy.cpp -------------------------------------------------------------------------------- /src/Proxy.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Proxy.def -------------------------------------------------------------------------------- /src/Proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Proxy.hpp -------------------------------------------------------------------------------- /src/ProxyNvngx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/ProxyNvngx.cpp -------------------------------------------------------------------------------- /src/Resource.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Resource.aps -------------------------------------------------------------------------------- /src/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Resource.rc -------------------------------------------------------------------------------- /src/UserSettings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/UserSettings.cpp -------------------------------------------------------------------------------- /src/Utility.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Utility.cpp -------------------------------------------------------------------------------- /src/Utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/Utility.hpp -------------------------------------------------------------------------------- /src/module_hooks/nvngx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/module_hooks/nvngx.cpp -------------------------------------------------------------------------------- /src/module_hooks/nvngx_dlss.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/module_hooks/nvngx_dlss.cpp -------------------------------------------------------------------------------- /src/module_hooks/nvngx_dlssg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/module_hooks/nvngx_dlssg.cpp -------------------------------------------------------------------------------- /src/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xHybred/DLSSEnhancer/HEAD/src/resource.h --------------------------------------------------------------------------------