├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.yml ├── .gitignore ├── .gitmodules ├── CyberFSR.sln ├── CyberFSR ├── Config.cpp ├── Config.h ├── CyberFSR.vcxproj ├── CyberFSR.vcxproj.filters ├── CyberFsr.cpp ├── CyberFsr.h ├── CyberFsrDx11.cpp ├── CyberFsrDx12.cpp ├── CyberFsrVk.cpp ├── DebugOverlay.cpp ├── DebugOverlay.h ├── DirectXHooks.cpp ├── DirectXHooks.h ├── NvParameter.cpp ├── NvParameter.h ├── Util.cpp ├── Util.h ├── ViewMatrixHook.cpp ├── ViewMatrixHook.h ├── dllmain.cpp ├── framework.h ├── pch.cpp ├── pch.h ├── scanner.cpp └── scanner.h ├── DisableSignatureOverride.reg ├── EnableSignatureOverride.reg ├── LICENSE ├── README.md ├── linuxinstall.sh └── nvngx.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: PotatoOfDoom 2 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/.gitmodules -------------------------------------------------------------------------------- /CyberFSR.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR.sln -------------------------------------------------------------------------------- /CyberFSR/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/Config.cpp -------------------------------------------------------------------------------- /CyberFSR/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/Config.h -------------------------------------------------------------------------------- /CyberFSR/CyberFSR.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFSR.vcxproj -------------------------------------------------------------------------------- /CyberFSR/CyberFSR.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFSR.vcxproj.filters -------------------------------------------------------------------------------- /CyberFSR/CyberFsr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFsr.cpp -------------------------------------------------------------------------------- /CyberFSR/CyberFsr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFsr.h -------------------------------------------------------------------------------- /CyberFSR/CyberFsrDx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFsrDx11.cpp -------------------------------------------------------------------------------- /CyberFSR/CyberFsrDx12.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFsrDx12.cpp -------------------------------------------------------------------------------- /CyberFSR/CyberFsrVk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/CyberFsrVk.cpp -------------------------------------------------------------------------------- /CyberFSR/DebugOverlay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/DebugOverlay.cpp -------------------------------------------------------------------------------- /CyberFSR/DebugOverlay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/DebugOverlay.h -------------------------------------------------------------------------------- /CyberFSR/DirectXHooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/DirectXHooks.cpp -------------------------------------------------------------------------------- /CyberFSR/DirectXHooks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/DirectXHooks.h -------------------------------------------------------------------------------- /CyberFSR/NvParameter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/NvParameter.cpp -------------------------------------------------------------------------------- /CyberFSR/NvParameter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/NvParameter.h -------------------------------------------------------------------------------- /CyberFSR/Util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/Util.cpp -------------------------------------------------------------------------------- /CyberFSR/Util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/Util.h -------------------------------------------------------------------------------- /CyberFSR/ViewMatrixHook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/ViewMatrixHook.cpp -------------------------------------------------------------------------------- /CyberFSR/ViewMatrixHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/ViewMatrixHook.h -------------------------------------------------------------------------------- /CyberFSR/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/dllmain.cpp -------------------------------------------------------------------------------- /CyberFSR/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/framework.h -------------------------------------------------------------------------------- /CyberFSR/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /CyberFSR/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "framework.h" -------------------------------------------------------------------------------- /CyberFSR/scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/scanner.cpp -------------------------------------------------------------------------------- /CyberFSR/scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/CyberFSR/scanner.h -------------------------------------------------------------------------------- /DisableSignatureOverride.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/DisableSignatureOverride.reg -------------------------------------------------------------------------------- /EnableSignatureOverride.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/EnableSignatureOverride.reg -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/README.md -------------------------------------------------------------------------------- /linuxinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/linuxinstall.sh -------------------------------------------------------------------------------- /nvngx.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PotatoOfDoom/CyberFSR2/HEAD/nvngx.ini --------------------------------------------------------------------------------