├── .gitignore ├── Actions.def ├── AreaTex.h ├── DATA ├── DSfix.ini ├── DSfixKeys.ini ├── README.txt ├── VERSIONS.txt └── dsfix │ ├── FXAA.fx │ ├── FXAA.h │ ├── GAUSS.fx │ ├── HBAO.fx │ ├── HUD.fx │ ├── SCAO.fx │ ├── SMAA.fx │ ├── SMAA.h │ ├── VSSAO.fx │ ├── VSSAO2.fx │ └── tex_override │ └── 3f28b833.png ├── DEVREADME.txt ├── DSfix.sln ├── DSfix.v11.suo ├── DSfix.vcxproj ├── Detouring.cpp ├── Detouring.h ├── Effect.cpp ├── Effect.h ├── FPS.cpp ├── FPS.h ├── FXAA.cpp ├── FXAA.h ├── GAUSS.cpp ├── GAUSS.h ├── Hash.h ├── Hud.cpp ├── Hud.h ├── KeyActions.cpp ├── KeyActions.h ├── Keys.def ├── LICENSE.txt ├── RenderstateManager.cpp ├── RenderstateManager.h ├── SMAA.cpp ├── SMAA.h ├── SSAO.cpp ├── SSAO.h ├── SaveManager.cpp ├── SaveManager.h ├── SearchTex.h ├── Settings.cpp ├── Settings.def ├── Settings.h ├── TODO.txt ├── Textures.def ├── WindowManager.cpp ├── WindowManager.h ├── d3d9.cpp ├── d3d9.h ├── d3d9dev.cpp ├── d3d9dev.h ├── d3d9int.cpp ├── d3d9int.h ├── d3dutil.cpp ├── d3dutil.h ├── dinput.h ├── dinput8.def ├── dinputWrapper.cpp ├── dinputWrapper.h ├── lib └── GFWLCompatibility.lib ├── main.cpp ├── main.h ├── memory.cpp └── memory.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/.gitignore -------------------------------------------------------------------------------- /Actions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Actions.def -------------------------------------------------------------------------------- /AreaTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/AreaTex.h -------------------------------------------------------------------------------- /DATA/DSfix.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/DSfix.ini -------------------------------------------------------------------------------- /DATA/DSfixKeys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/DSfixKeys.ini -------------------------------------------------------------------------------- /DATA/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/README.txt -------------------------------------------------------------------------------- /DATA/VERSIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/VERSIONS.txt -------------------------------------------------------------------------------- /DATA/dsfix/FXAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/FXAA.fx -------------------------------------------------------------------------------- /DATA/dsfix/FXAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/FXAA.h -------------------------------------------------------------------------------- /DATA/dsfix/GAUSS.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/GAUSS.fx -------------------------------------------------------------------------------- /DATA/dsfix/HBAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/HBAO.fx -------------------------------------------------------------------------------- /DATA/dsfix/HUD.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/HUD.fx -------------------------------------------------------------------------------- /DATA/dsfix/SCAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/SCAO.fx -------------------------------------------------------------------------------- /DATA/dsfix/SMAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/SMAA.fx -------------------------------------------------------------------------------- /DATA/dsfix/SMAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/SMAA.h -------------------------------------------------------------------------------- /DATA/dsfix/VSSAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/VSSAO.fx -------------------------------------------------------------------------------- /DATA/dsfix/VSSAO2.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/VSSAO2.fx -------------------------------------------------------------------------------- /DATA/dsfix/tex_override/3f28b833.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DATA/dsfix/tex_override/3f28b833.png -------------------------------------------------------------------------------- /DEVREADME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DEVREADME.txt -------------------------------------------------------------------------------- /DSfix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DSfix.sln -------------------------------------------------------------------------------- /DSfix.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DSfix.v11.suo -------------------------------------------------------------------------------- /DSfix.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/DSfix.vcxproj -------------------------------------------------------------------------------- /Detouring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Detouring.cpp -------------------------------------------------------------------------------- /Detouring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Detouring.h -------------------------------------------------------------------------------- /Effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Effect.cpp -------------------------------------------------------------------------------- /Effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Effect.h -------------------------------------------------------------------------------- /FPS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/FPS.cpp -------------------------------------------------------------------------------- /FPS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/FPS.h -------------------------------------------------------------------------------- /FXAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/FXAA.cpp -------------------------------------------------------------------------------- /FXAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/FXAA.h -------------------------------------------------------------------------------- /GAUSS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/GAUSS.cpp -------------------------------------------------------------------------------- /GAUSS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/GAUSS.h -------------------------------------------------------------------------------- /Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Hash.h -------------------------------------------------------------------------------- /Hud.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Hud.cpp -------------------------------------------------------------------------------- /Hud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Hud.h -------------------------------------------------------------------------------- /KeyActions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/KeyActions.cpp -------------------------------------------------------------------------------- /KeyActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/KeyActions.h -------------------------------------------------------------------------------- /Keys.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Keys.def -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /RenderstateManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/RenderstateManager.cpp -------------------------------------------------------------------------------- /RenderstateManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/RenderstateManager.h -------------------------------------------------------------------------------- /SMAA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SMAA.cpp -------------------------------------------------------------------------------- /SMAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SMAA.h -------------------------------------------------------------------------------- /SSAO.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SSAO.cpp -------------------------------------------------------------------------------- /SSAO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SSAO.h -------------------------------------------------------------------------------- /SaveManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SaveManager.cpp -------------------------------------------------------------------------------- /SaveManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SaveManager.h -------------------------------------------------------------------------------- /SearchTex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/SearchTex.h -------------------------------------------------------------------------------- /Settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Settings.cpp -------------------------------------------------------------------------------- /Settings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Settings.def -------------------------------------------------------------------------------- /Settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Settings.h -------------------------------------------------------------------------------- /TODO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/TODO.txt -------------------------------------------------------------------------------- /Textures.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/Textures.def -------------------------------------------------------------------------------- /WindowManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/WindowManager.cpp -------------------------------------------------------------------------------- /WindowManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/WindowManager.h -------------------------------------------------------------------------------- /d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9.cpp -------------------------------------------------------------------------------- /d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9.h -------------------------------------------------------------------------------- /d3d9dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9dev.cpp -------------------------------------------------------------------------------- /d3d9dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9dev.h -------------------------------------------------------------------------------- /d3d9int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9int.cpp -------------------------------------------------------------------------------- /d3d9int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3d9int.h -------------------------------------------------------------------------------- /d3dutil.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3dutil.cpp -------------------------------------------------------------------------------- /d3dutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/d3dutil.h -------------------------------------------------------------------------------- /dinput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/dinput.h -------------------------------------------------------------------------------- /dinput8.def: -------------------------------------------------------------------------------- 1 | LIBRARY DINPUT8 2 | 3 | EXPORTS 4 | DirectInput8Create -------------------------------------------------------------------------------- /dinputWrapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/dinputWrapper.cpp -------------------------------------------------------------------------------- /dinputWrapper.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "dinput.h" 4 | -------------------------------------------------------------------------------- /lib/GFWLCompatibility.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/lib/GFWLCompatibility.lib -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/main.cpp -------------------------------------------------------------------------------- /main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/main.h -------------------------------------------------------------------------------- /memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/memory.cpp -------------------------------------------------------------------------------- /memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/dsfix/HEAD/memory.h --------------------------------------------------------------------------------