├── .gitattributes ├── .gitignore ├── GeDoSaTo.def ├── GeDoSaTo.sln ├── GeDoSaTo.vcxproj ├── LICENSE.txt ├── README.md ├── defs ├── actions.def ├── hooks.def ├── keys.def ├── plugins.def ├── settings.def ├── shaders.def ├── textures.def ├── uuids.def └── xinput.def ├── ext └── xbrz │ ├── config.h │ ├── xbrz.cpp │ └── xbrz.h ├── gedosato_shim ├── gedosato_shim.vcxproj ├── gedosato_shim.vcxproj.filters ├── pack └── shim.cpp ├── include ├── area_tex.h ├── blacklist.h ├── bloom.h ├── console.h ├── d3d11 │ ├── d3d11.h │ ├── d3d11dev.h │ └── d3d11devcontext.h ├── d3d9 │ ├── d3d9.h │ ├── d3d9dev.h │ ├── d3d9dev_ex.h │ ├── d3d9int.h │ ├── d3d9int_ex.h │ ├── d3d9ps.h │ ├── d3d9swap.h │ ├── d3d9swap_ex.h │ └── d3d9tex.h ├── d3dperf.h ├── depth_texture.h ├── detouring.h ├── dof.h ├── dxgi │ ├── dxgiadapter.h │ ├── dxgiadapter1.h │ ├── dxgiadapter2.h │ ├── dxgidevice.h │ ├── dxgidevice1.h │ ├── dxgidevice2.h │ ├── dxgidevice3.h │ ├── dxgifactory.h │ ├── dxgifactory1.h │ ├── dxgifactory2.h │ ├── dxgifactory3.h │ ├── dxgioutput.h │ └── dxgiswapchain.h ├── effect.h ├── external │ ├── stb_image_write.h │ └── stb_truetype.h ├── fxaa.h ├── game_plugin.h ├── hash.h ├── imaging.h ├── key_actions.h ├── lua_integration.h ├── main.h ├── perf_monitor.h ├── plugins │ ├── dark_souls_2.h │ ├── dw8.h │ ├── ff13.h │ ├── generic.h │ ├── generic_depth.h │ ├── lrff13.h │ ├── mitsurugi.h │ ├── stranger.h │ ├── symphonia.h │ └── zestiria.h ├── post.h ├── registry.h ├── renderstate_manager.h ├── renderstate_manager_dx11.h ├── renderstate_manager_dx9.h ├── rendertarget.h ├── rendertarget_manager.h ├── scaling.h ├── search_tex.h ├── settings.h ├── shader_manager.h ├── smaa.h ├── ssao.h ├── steam │ └── steamfriends.h ├── time_manager.h ├── timer.h ├── utils.h ├── utils │ ├── d3d11_utils.h │ ├── d3d9_utils.h │ ├── debug_utils.h │ ├── dxgi_utils.h │ ├── imgproc_utils.h │ ├── interface_registry.h │ ├── string_utils.h │ ├── thread_utils.h │ └── win_utils.h ├── version.h └── window_manager.h ├── pack ├── D3DCompiler_47.dll ├── GeDoSaTo.dll ├── GeDoSaTo64.dll ├── GeDoSaToTool.exe ├── GeDoSaToUpdater.exe ├── README.txt ├── VERSIONS.txt ├── assets │ ├── NoiseTex.png │ ├── RandomNoiseB.png │ ├── dx9 │ │ ├── DOFBokeh.fx │ │ ├── DOFPseudo.fx │ │ ├── FXAA.fx │ │ ├── FXAA.h │ │ ├── HBAO.fx │ │ ├── SAO.fx │ │ ├── SMAA.fx │ │ ├── SMAA.hlsl │ │ ├── VSSAO2.fx │ │ ├── bloom.fx │ │ ├── console.fx │ │ ├── deband.fx │ │ ├── martinsh_ssao.fx │ │ ├── post.fx │ │ ├── post_asmodean.fx │ │ └── scaling.fx │ ├── font.ttf │ └── lensdirt.dds ├── config │ ├── AO │ │ └── GeDoSaTo.ini │ ├── AlanWake │ │ └── GeDoSaTo.ini │ ├── AoW3 │ │ └── GeDoSaTo.ini │ ├── AssassinsCreedIIGame │ │ └── GeDoSaTo.ini │ ├── AssassinsCreed_Dx9 │ │ └── GeDoSaTo.ini │ ├── AvP │ │ └── GeDoSaTo.ini │ ├── BFBC2Game │ │ └── GeDoSaTo.ini │ ├── BH6 │ │ └── GeDoSaTo.ini │ ├── BatmanAC │ │ └── GeDoSaTo.ini │ ├── BatmanOrigins │ │ └── GeDoSaTo.ini │ ├── Bioshock │ │ └── GeDoSaTo.ini │ ├── Bioshock2 │ │ └── GeDoSaTo.ini │ ├── Blackguards │ │ ├── GeDoSaTo.ini │ │ └── post.fx │ ├── Borderlands │ │ └── GeDoSaTo.ini │ ├── Borderlands2 │ │ └── GeDoSaTo.ini │ ├── CLOS2 │ │ └── GeDoSaTo.ini │ ├── CastlevaniaLoSUE │ │ └── GeDoSaTo.ini │ ├── Cognition Episode 1 │ │ └── GeDoSaTo.ini │ ├── Cognition Episode 2 │ │ └── GeDoSaTo.ini │ ├── Cognition Episode 3 │ │ └── GeDoSaTo.ini │ ├── Cognition Episode 4 │ │ └── GeDoSaTo.ini │ ├── Condemned │ │ └── GeDoSaTo.ini │ ├── Crysis │ │ └── GeDoSaTo.ini │ ├── Crysis2 │ │ └── GeDoSaTo.ini │ ├── DBXV │ │ └── GeDoSaTo.ini │ ├── DDDA │ │ └── GeDoSaTo.ini │ ├── DMC-DevilMayCry │ │ └── GeDoSaTo.ini │ ├── DarkSoulsII │ │ ├── GeDoSaTo.ini │ │ └── post.fx │ ├── Darksiders2 │ │ └── GeDoSaTo.ini │ ├── DarksidersPC │ │ └── GeDoSaTo.ini │ ├── DayZ │ │ └── GeDoSaTo.ini │ ├── Dead Space │ │ └── GeDoSaTo.ini │ ├── DevilMayCry4_DX9 │ │ └── GeDoSaTo.ini │ ├── Diablo III │ │ └── GeDoSaTo.ini │ ├── Dishonored │ │ └── GeDoSaTo.ini │ ├── Dreamfall Chapters │ │ └── GeDoSaTo.ini │ ├── Earth2160_NO_SSE │ │ └── GeDoSaTo.ini │ ├── Earth2160_SSE │ │ └── GeDoSaTo.ini │ ├── Elminage │ │ └── GeDoSaTo.ini │ ├── EoCApp │ │ ├── GeDoSaTo.ini │ │ └── post.fx │ ├── FEAR2 │ │ └── GeDoSaTo.ini │ ├── FEARXP │ │ └── GeDoSaTo.ini │ ├── FEARXP2 │ │ └── GeDoSaTo.ini │ ├── Fallout3 │ │ └── GeDoSaTo.ini │ ├── FalloutNV │ │ └── GeDoSaTo.ini │ ├── FarCry2 │ │ └── GeDoSaTo.ini │ ├── FirefallClient │ │ └── GeDoSaTo.ini │ ├── FoxGame-Win32-Shipping │ │ └── GeDoSaTo.ini │ ├── GSGameExe_DX9 │ │ └── GeDoSaTo.ini │ ├── GTAIV │ │ └── GeDoSaTo.ini │ ├── GeDoSaTo.ini │ ├── GeDoSaToKeys.ini │ ├── HawkenGame-Win32-Shipping │ │ └── GeDoSaTo.ini │ ├── HitmanBloodMoney │ │ └── GeDoSaTo.ini │ ├── Injustice │ │ └── GeDoSaTo.ini │ ├── JacobJonesGame │ │ └── GeDoSaTo.ini │ ├── KidGame │ │ └── GeDoSaTo.ini │ ├── KungFuStrike │ │ └── GeDoSaTo.ini │ ├── LEGOMARVEL │ │ └── GeDoSaTo.ini │ ├── LRFF13 │ │ ├── GeDoSaTo.ini │ │ ├── SAO.fx │ │ └── post.fx │ ├── Leviathan │ │ └── GeDoSaTo.ini │ ├── LostPlanetDX9 │ │ └── GeDoSaTo.ini │ ├── MOHA │ │ └── GeDoSaTo.ini │ ├── MWOClient │ │ └── GeDoSaTo.ini │ ├── Mafia2 │ │ └── GeDoSaTo.ini │ ├── MassEffect │ │ └── GeDoSaTo.ini │ ├── MassEffect2 │ │ └── GeDoSaTo.ini │ ├── MassEffect3 │ │ └── GeDoSaTo.ini │ ├── MaxPayne │ │ └── GeDoSaTo.ini │ ├── MazeGame-Win32-Shipping │ │ └── GeDoSaTo.ini │ ├── Might and Magic X Legacy │ │ └── GeDoSaTo.ini │ ├── MirrorsEdge │ │ └── GeDoSaTo.ini │ ├── OLGame │ │ └── GeDoSaTo.ini │ ├── OfOrcsAndMen_Steam │ │ └── GeDoSaTo.ini │ ├── Overlord │ │ └── GeDoSaTo.ini │ ├── PKHDGame-Win32-Shipping │ │ └── GeDoSaTo.ini │ ├── Paranautical Activity │ │ └── GeDoSaTo.ini │ ├── PathOfExileSteam │ │ └── GeDoSaTo.ini │ ├── PillarsOfEternity │ │ └── GeDoSaTo.ini │ ├── Psychonauts │ │ └── GeDoSaTo.ini │ ├── RE5DX9 │ │ └── GeDoSaTo.ini │ ├── Reckoning │ │ └── GeDoSaTo.ini │ ├── RelicCOH │ │ └── GeDoSaTo.ini │ ├── RememberMe │ │ └── GeDoSaTo.ini │ ├── Risen │ │ └── GeDoSaTo.ini │ ├── Risen2 │ │ └── GeDoSaTo.ini │ ├── Risen3 │ │ └── GeDoSaTo.ini │ ├── RoA │ │ └── GeDoSaTo.ini │ ├── SWTFU │ │ └── GeDoSaTo.ini │ ├── Shadowrun │ │ └── GeDoSaTo.ini │ ├── Sherlock │ │ └── GeDoSaTo.ini │ ├── ShippingPC-BmGame │ │ └── GeDoSaTo.ini │ ├── ShippingPC-SkyGame │ │ └── GeDoSaTo.ini │ ├── ShippingPC-StormGame │ │ └── GeDoSaTo.ini │ ├── ShooterGame-Win32-Shipping │ │ └── GeDoSaTo.ini │ ├── SonicGenerations │ │ └── GeDoSaTo.ini │ ├── SpaceMarine │ │ └── GeDoSaTo.ini │ ├── SpecOpsTheLine │ │ └── GeDoSaTo.ini │ ├── StateOfDecay │ │ └── GeDosato.ini │ ├── StrangerOfSwordCity │ │ └── GeDoSaTo.ini │ ├── Symphonia │ │ └── GeDoSaTo.ini │ ├── TESV │ │ └── GeDoSaTo.ini │ ├── TFOC │ │ └── GeDoSaTo.ini │ ├── TWFC │ │ └── GeDoSaTo.ini │ ├── Tales of Zestiria │ │ └── GeDoSaTo.ini │ ├── TheWalkingDead2 │ │ └── GeDoSaTo.ini │ ├── TombRaider │ │ └── GeDoSaTo.ini │ ├── Torchlight2 │ │ └── GeDoSaTo.ini │ ├── TribesAscend │ │ └── GeDoSaTo.ini │ ├── UmiByeWin │ │ └── GeDoSaTo.ini │ ├── Valkyria │ │ └── GeDoSaTo.ini │ ├── WL2 │ │ └── GeDoSaTo.ini │ ├── Wolverine │ │ └── GeDoSaTo.ini │ ├── alan_wakes_american_nightmare │ │ └── GeDoSaTo.ini │ ├── bio4 │ │ └── GeDoSaTo.ini │ ├── bionic_commando │ │ └── GeDoSaTo.ini │ ├── bladesoftime │ │ └── GeDoSaTo.ini │ ├── bsnes │ │ ├── GeDoSaTo.ini │ │ └── post.fx │ ├── cnc3game.dat │ │ └── GeDoSaTo.ini │ ├── csgo │ │ └── GeDoSaTo.ini │ ├── daorigins │ │ └── GeDoSaTo.ini │ ├── deadrising2otr │ │ └── GeDoSaTo.ini │ ├── deadspace2 │ │ └── GeDoSaTo.ini │ ├── default │ │ └── GeDoSaTo.ini │ ├── demoniconR │ │ └── GeDoSaTo.ini │ ├── deusex │ │ └── GeDoSaTo.ini │ ├── dmc3se │ │ └── GeDoSaTo.ini │ ├── dota │ │ └── GeDoSaTo.ini │ ├── dxhr │ │ └── GeDoSaTo.ini │ ├── fear │ │ └── GeDoSaTo.ini │ ├── ffxiii2img │ │ └── GeDoSaTo.ini │ ├── ffxiiiimg │ │ └── GeDoSaTo.ini │ ├── fr-041_debris │ │ └── GeDoSaTo.ini │ ├── game │ │ └── GeDoSaTo.ini │ ├── grimrock │ │ └── GeDoSaTo.ini │ ├── grimrock2 │ │ └── GeDoSaTo.ini │ ├── halo2 │ │ └── GeDoSaTo.ini │ ├── hardreset │ │ └── GeDoSaTo.ini │ ├── hl2 │ │ └── GeDoSaTo.ini │ ├── kl2 │ │ └── GeDoSaTo.ini │ ├── lcgol │ │ └── GeDoSaTo.ini │ ├── left4dead2 │ │ └── GeDoSaTo.ini │ ├── mitsurugi │ │ └── GeDoSaTo.ini │ ├── mm │ │ └── GeDoSaTo.ini │ ├── ninja │ │ └── GeDoSaTo.ini │ ├── outland │ │ └── GeDoSaTo.ini │ ├── rfg │ │ └── GeDoSaTo.ini │ ├── the last tinker │ │ └── GeDoSaTo.ini │ ├── trine1_32bit │ │ └── GeDoSaTo.ini │ ├── trine2_32bit │ │ └── GeDoSaTo.ini │ ├── whitelist.txt │ ├── witcher2 │ │ └── GeDoSaTo.ini │ ├── witn │ │ └── GeDoSaTo.ini │ └── yso_win │ │ └── GeDoSaTo.ini ├── gedoshim.dll ├── logs │ ├── .gitignore │ └── logs_stored_here ├── screens │ ├── .gitignore │ └── screenshots_stored_here ├── shim64.dll ├── textures │ ├── .gitignore │ └── textures_stored_here └── tmp │ ├── .gitignore │ └── temporary_storage_here ├── reference ├── .gitignore ├── d3d10.dll.exports ├── d3d11.dll.exports ├── d3d9.dll.exports ├── dinput.dll.exports ├── dinput8.dll.exports └── dxgi.dll.exports ├── source ├── blacklist.cpp ├── bloom.cpp ├── console.cpp ├── d3d11 │ ├── d3d11dev.cpp │ └── d3d11devcontext.cpp ├── d3d9 │ ├── d3d9dev.cpp │ ├── d3d9dev_ex.cpp │ ├── d3d9dev_init.cpp │ ├── d3d9int.cpp │ ├── d3d9int_ex.cpp │ ├── d3d9ps.cpp │ ├── d3d9swap.cpp │ ├── d3d9swap_ex.cpp │ └── d3d9tex.cpp ├── d3dperf.cpp ├── depth_texture.cpp ├── detouring.cpp ├── dof.cpp ├── dxgi │ ├── dxgiadapter.cpp │ ├── dxgiadapter1.cpp │ ├── dxgiadapter2.cpp │ ├── dxgidevice.cpp │ ├── dxgidevice1.cpp │ ├── dxgidevice2.cpp │ ├── dxgidevice3.cpp │ ├── dxgifactory.cpp │ ├── dxgifactory1.cpp │ ├── dxgifactory2.cpp │ ├── dxgifactory3.cpp │ ├── dxgioutput.cpp │ └── dxgiswapchain.cpp ├── effect.cpp ├── fxaa.cpp ├── game_plugin.cpp ├── hash.cpp ├── imaging.cpp ├── key_actions.cpp ├── lua_integration.cpp ├── main.cpp ├── perf_monitor.cpp ├── plugins │ ├── dark_souls_2.cpp │ ├── dw8.cpp │ ├── ff13.cpp │ ├── generic.cpp │ ├── generic_depth.cpp │ ├── lrff13.cpp │ ├── mitsurugi.cpp │ ├── stranger.cpp │ ├── symphonia.cpp │ └── zestiria.cpp ├── post.cpp ├── registry.cpp ├── renderstate_manager.cpp ├── renderstate_manager_dx11.cpp ├── renderstate_manager_dx9.cpp ├── rendertarget_manager.cpp ├── scaling.cpp ├── settings.cpp ├── shader_manager.cpp ├── smaa.cpp ├── ssao.cpp ├── steam │ └── steamfriends.cpp ├── time_manager.cpp ├── timer.cpp ├── utils │ ├── d3d11_utils.cpp │ ├── d3d_utils.cpp │ ├── debug_utils.cpp │ ├── dxgi_utils.cpp │ ├── imgproc_utils.cpp │ ├── interface_registry.cpp │ ├── string_utils.cpp │ ├── thread_utils.cpp │ └── win_utils.cpp ├── version.cpp └── window_manager.cpp └── version.rb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/.gitignore -------------------------------------------------------------------------------- /GeDoSaTo.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/GeDoSaTo.def -------------------------------------------------------------------------------- /GeDoSaTo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/GeDoSaTo.sln -------------------------------------------------------------------------------- /GeDoSaTo.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/GeDoSaTo.vcxproj -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/README.md -------------------------------------------------------------------------------- /defs/actions.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/actions.def -------------------------------------------------------------------------------- /defs/hooks.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/hooks.def -------------------------------------------------------------------------------- /defs/keys.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/keys.def -------------------------------------------------------------------------------- /defs/plugins.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/plugins.def -------------------------------------------------------------------------------- /defs/settings.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/settings.def -------------------------------------------------------------------------------- /defs/shaders.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/shaders.def -------------------------------------------------------------------------------- /defs/textures.def: -------------------------------------------------------------------------------- 1 | 2 | //TEXTURE(DualScreenEffect, 0xd5139caf) 3 | -------------------------------------------------------------------------------- /defs/uuids.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/uuids.def -------------------------------------------------------------------------------- /defs/xinput.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/defs/xinput.def -------------------------------------------------------------------------------- /ext/xbrz/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/ext/xbrz/config.h -------------------------------------------------------------------------------- /ext/xbrz/xbrz.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/ext/xbrz/xbrz.cpp -------------------------------------------------------------------------------- /ext/xbrz/xbrz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/ext/xbrz/xbrz.h -------------------------------------------------------------------------------- /gedosato_shim/gedosato_shim.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/gedosato_shim/gedosato_shim.vcxproj -------------------------------------------------------------------------------- /gedosato_shim/gedosato_shim.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/gedosato_shim/gedosato_shim.vcxproj.filters -------------------------------------------------------------------------------- /gedosato_shim/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/gedosato_shim/pack -------------------------------------------------------------------------------- /gedosato_shim/shim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/gedosato_shim/shim.cpp -------------------------------------------------------------------------------- /include/area_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/area_tex.h -------------------------------------------------------------------------------- /include/blacklist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/blacklist.h -------------------------------------------------------------------------------- /include/bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/bloom.h -------------------------------------------------------------------------------- /include/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/console.h -------------------------------------------------------------------------------- /include/d3d11/d3d11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d11/d3d11.h -------------------------------------------------------------------------------- /include/d3d11/d3d11dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d11/d3d11dev.h -------------------------------------------------------------------------------- /include/d3d11/d3d11devcontext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d11/d3d11devcontext.h -------------------------------------------------------------------------------- /include/d3d9/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9.h -------------------------------------------------------------------------------- /include/d3d9/d3d9dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9dev.h -------------------------------------------------------------------------------- /include/d3d9/d3d9dev_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9dev_ex.h -------------------------------------------------------------------------------- /include/d3d9/d3d9int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9int.h -------------------------------------------------------------------------------- /include/d3d9/d3d9int_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9int_ex.h -------------------------------------------------------------------------------- /include/d3d9/d3d9ps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9ps.h -------------------------------------------------------------------------------- /include/d3d9/d3d9swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9swap.h -------------------------------------------------------------------------------- /include/d3d9/d3d9swap_ex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9swap_ex.h -------------------------------------------------------------------------------- /include/d3d9/d3d9tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3d9/d3d9tex.h -------------------------------------------------------------------------------- /include/d3dperf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/d3dperf.h -------------------------------------------------------------------------------- /include/depth_texture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/depth_texture.h -------------------------------------------------------------------------------- /include/detouring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/detouring.h -------------------------------------------------------------------------------- /include/dof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dof.h -------------------------------------------------------------------------------- /include/dxgi/dxgiadapter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgiadapter.h -------------------------------------------------------------------------------- /include/dxgi/dxgiadapter1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgiadapter1.h -------------------------------------------------------------------------------- /include/dxgi/dxgiadapter2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgiadapter2.h -------------------------------------------------------------------------------- /include/dxgi/dxgidevice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgidevice.h -------------------------------------------------------------------------------- /include/dxgi/dxgidevice1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgidevice1.h -------------------------------------------------------------------------------- /include/dxgi/dxgidevice2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgidevice2.h -------------------------------------------------------------------------------- /include/dxgi/dxgidevice3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgidevice3.h -------------------------------------------------------------------------------- /include/dxgi/dxgifactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgifactory.h -------------------------------------------------------------------------------- /include/dxgi/dxgifactory1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgifactory1.h -------------------------------------------------------------------------------- /include/dxgi/dxgifactory2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgifactory2.h -------------------------------------------------------------------------------- /include/dxgi/dxgifactory3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgifactory3.h -------------------------------------------------------------------------------- /include/dxgi/dxgioutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgioutput.h -------------------------------------------------------------------------------- /include/dxgi/dxgiswapchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/dxgi/dxgiswapchain.h -------------------------------------------------------------------------------- /include/effect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/effect.h -------------------------------------------------------------------------------- /include/external/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/external/stb_image_write.h -------------------------------------------------------------------------------- /include/external/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/external/stb_truetype.h -------------------------------------------------------------------------------- /include/fxaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/fxaa.h -------------------------------------------------------------------------------- /include/game_plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/game_plugin.h -------------------------------------------------------------------------------- /include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/hash.h -------------------------------------------------------------------------------- /include/imaging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/imaging.h -------------------------------------------------------------------------------- /include/key_actions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/key_actions.h -------------------------------------------------------------------------------- /include/lua_integration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/lua_integration.h -------------------------------------------------------------------------------- /include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/main.h -------------------------------------------------------------------------------- /include/perf_monitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/perf_monitor.h -------------------------------------------------------------------------------- /include/plugins/dark_souls_2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/dark_souls_2.h -------------------------------------------------------------------------------- /include/plugins/dw8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/dw8.h -------------------------------------------------------------------------------- /include/plugins/ff13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/ff13.h -------------------------------------------------------------------------------- /include/plugins/generic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/generic.h -------------------------------------------------------------------------------- /include/plugins/generic_depth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/generic_depth.h -------------------------------------------------------------------------------- /include/plugins/lrff13.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/lrff13.h -------------------------------------------------------------------------------- /include/plugins/mitsurugi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/mitsurugi.h -------------------------------------------------------------------------------- /include/plugins/stranger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/stranger.h -------------------------------------------------------------------------------- /include/plugins/symphonia.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/symphonia.h -------------------------------------------------------------------------------- /include/plugins/zestiria.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/plugins/zestiria.h -------------------------------------------------------------------------------- /include/post.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/post.h -------------------------------------------------------------------------------- /include/registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/registry.h -------------------------------------------------------------------------------- /include/renderstate_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/renderstate_manager.h -------------------------------------------------------------------------------- /include/renderstate_manager_dx11.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/renderstate_manager_dx11.h -------------------------------------------------------------------------------- /include/renderstate_manager_dx9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/renderstate_manager_dx9.h -------------------------------------------------------------------------------- /include/rendertarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/rendertarget.h -------------------------------------------------------------------------------- /include/rendertarget_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/rendertarget_manager.h -------------------------------------------------------------------------------- /include/scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/scaling.h -------------------------------------------------------------------------------- /include/search_tex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/search_tex.h -------------------------------------------------------------------------------- /include/settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/settings.h -------------------------------------------------------------------------------- /include/shader_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/shader_manager.h -------------------------------------------------------------------------------- /include/smaa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/smaa.h -------------------------------------------------------------------------------- /include/ssao.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/ssao.h -------------------------------------------------------------------------------- /include/steam/steamfriends.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/steam/steamfriends.h -------------------------------------------------------------------------------- /include/time_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/time_manager.h -------------------------------------------------------------------------------- /include/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/timer.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils.h -------------------------------------------------------------------------------- /include/utils/d3d11_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/d3d11_utils.h -------------------------------------------------------------------------------- /include/utils/d3d9_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/d3d9_utils.h -------------------------------------------------------------------------------- /include/utils/debug_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/debug_utils.h -------------------------------------------------------------------------------- /include/utils/dxgi_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/dxgi_utils.h -------------------------------------------------------------------------------- /include/utils/imgproc_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/imgproc_utils.h -------------------------------------------------------------------------------- /include/utils/interface_registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/interface_registry.h -------------------------------------------------------------------------------- /include/utils/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/string_utils.h -------------------------------------------------------------------------------- /include/utils/thread_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/thread_utils.h -------------------------------------------------------------------------------- /include/utils/win_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/utils/win_utils.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/version.h -------------------------------------------------------------------------------- /include/window_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/include/window_manager.h -------------------------------------------------------------------------------- /pack/D3DCompiler_47.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/D3DCompiler_47.dll -------------------------------------------------------------------------------- /pack/GeDoSaTo.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/GeDoSaTo.dll -------------------------------------------------------------------------------- /pack/GeDoSaTo64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/GeDoSaTo64.dll -------------------------------------------------------------------------------- /pack/GeDoSaToTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/GeDoSaToTool.exe -------------------------------------------------------------------------------- /pack/GeDoSaToUpdater.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/GeDoSaToUpdater.exe -------------------------------------------------------------------------------- /pack/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/README.txt -------------------------------------------------------------------------------- /pack/VERSIONS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/VERSIONS.txt -------------------------------------------------------------------------------- /pack/assets/NoiseTex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/NoiseTex.png -------------------------------------------------------------------------------- /pack/assets/RandomNoiseB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/RandomNoiseB.png -------------------------------------------------------------------------------- /pack/assets/dx9/DOFBokeh.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/DOFBokeh.fx -------------------------------------------------------------------------------- /pack/assets/dx9/DOFPseudo.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/DOFPseudo.fx -------------------------------------------------------------------------------- /pack/assets/dx9/FXAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/FXAA.fx -------------------------------------------------------------------------------- /pack/assets/dx9/FXAA.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/FXAA.h -------------------------------------------------------------------------------- /pack/assets/dx9/HBAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/HBAO.fx -------------------------------------------------------------------------------- /pack/assets/dx9/SAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/SAO.fx -------------------------------------------------------------------------------- /pack/assets/dx9/SMAA.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/SMAA.fx -------------------------------------------------------------------------------- /pack/assets/dx9/SMAA.hlsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/SMAA.hlsl -------------------------------------------------------------------------------- /pack/assets/dx9/VSSAO2.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/VSSAO2.fx -------------------------------------------------------------------------------- /pack/assets/dx9/bloom.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/bloom.fx -------------------------------------------------------------------------------- /pack/assets/dx9/console.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/console.fx -------------------------------------------------------------------------------- /pack/assets/dx9/deband.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/deband.fx -------------------------------------------------------------------------------- /pack/assets/dx9/martinsh_ssao.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/martinsh_ssao.fx -------------------------------------------------------------------------------- /pack/assets/dx9/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/post.fx -------------------------------------------------------------------------------- /pack/assets/dx9/post_asmodean.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/post_asmodean.fx -------------------------------------------------------------------------------- /pack/assets/dx9/scaling.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/dx9/scaling.fx -------------------------------------------------------------------------------- /pack/assets/font.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/font.ttf -------------------------------------------------------------------------------- /pack/assets/lensdirt.dds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/assets/lensdirt.dds -------------------------------------------------------------------------------- /pack/config/AO/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AO/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/AlanWake/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AlanWake/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/AoW3/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AoW3/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/AssassinsCreedIIGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AssassinsCreedIIGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/AssassinsCreed_Dx9/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AssassinsCreed_Dx9/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/AvP/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/AvP/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/BFBC2Game/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/BFBC2Game/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/BH6/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/BH6/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/BatmanAC/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/BatmanAC/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/BatmanOrigins/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/BatmanOrigins/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Bioshock/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Bioshock/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Bioshock2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Bioshock2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Blackguards/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Blackguards/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Blackguards/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Blackguards/post.fx -------------------------------------------------------------------------------- /pack/config/Borderlands/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Borderlands/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Borderlands2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Borderlands2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/CLOS2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/CLOS2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/CastlevaniaLoSUE/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/CastlevaniaLoSUE/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Cognition Episode 1/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Cognition Episode 1/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Cognition Episode 2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Cognition Episode 2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Cognition Episode 3/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Cognition Episode 3/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Cognition Episode 4/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Cognition Episode 4/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Condemned/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Condemned/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Crysis/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Crysis/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Crysis2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Crysis2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DBXV/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DBXV/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DDDA/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DDDA/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DMC-DevilMayCry/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DMC-DevilMayCry/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DarkSoulsII/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DarkSoulsII/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DarkSoulsII/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DarkSoulsII/post.fx -------------------------------------------------------------------------------- /pack/config/Darksiders2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Darksiders2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DarksidersPC/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DarksidersPC/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DayZ/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DayZ/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Dead Space/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Dead Space/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/DevilMayCry4_DX9/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/DevilMayCry4_DX9/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Diablo III/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Diablo III/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Dishonored/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Dishonored/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Dreamfall Chapters/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Dreamfall Chapters/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Earth2160_NO_SSE/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Earth2160_NO_SSE/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Earth2160_SSE/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Earth2160_SSE/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Elminage/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Elminage/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/EoCApp/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/EoCApp/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/EoCApp/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/EoCApp/post.fx -------------------------------------------------------------------------------- /pack/config/FEAR2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FEAR2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FEARXP/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FEARXP/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FEARXP2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FEARXP2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Fallout3/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Fallout3/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FalloutNV/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FalloutNV/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FarCry2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FarCry2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FirefallClient/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FirefallClient/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/FoxGame-Win32-Shipping/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/FoxGame-Win32-Shipping/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/GSGameExe_DX9/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/GSGameExe_DX9/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/GTAIV/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/GTAIV/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/GeDoSaToKeys.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/GeDoSaToKeys.ini -------------------------------------------------------------------------------- /pack/config/HawkenGame-Win32-Shipping/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/HawkenGame-Win32-Shipping/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/HitmanBloodMoney/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/HitmanBloodMoney/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Injustice/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Injustice/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/JacobJonesGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/JacobJonesGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/KidGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/KidGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/KungFuStrike/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/KungFuStrike/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/LEGOMARVEL/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/LEGOMARVEL/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/LRFF13/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/LRFF13/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/LRFF13/SAO.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/LRFF13/SAO.fx -------------------------------------------------------------------------------- /pack/config/LRFF13/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/LRFF13/post.fx -------------------------------------------------------------------------------- /pack/config/Leviathan/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Leviathan/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/LostPlanetDX9/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/LostPlanetDX9/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MOHA/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MOHA/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MWOClient/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MWOClient/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Mafia2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Mafia2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MassEffect/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MassEffect/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MassEffect2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MassEffect2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MassEffect3/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MassEffect3/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MaxPayne/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MaxPayne/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MazeGame-Win32-Shipping/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MazeGame-Win32-Shipping/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Might and Magic X Legacy/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Might and Magic X Legacy/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/MirrorsEdge/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/MirrorsEdge/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/OLGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/OLGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/OfOrcsAndMen_Steam/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/OfOrcsAndMen_Steam/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Overlord/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Overlord/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/PKHDGame-Win32-Shipping/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/PKHDGame-Win32-Shipping/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Paranautical Activity/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Paranautical Activity/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/PathOfExileSteam/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/PathOfExileSteam/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/PillarsOfEternity/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/PillarsOfEternity/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Psychonauts/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Psychonauts/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/RE5DX9/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/RE5DX9/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Reckoning/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Reckoning/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/RelicCOH/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/RelicCOH/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/RememberMe/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/RememberMe/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Risen/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Risen/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Risen2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Risen2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Risen3/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Risen3/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/RoA/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/RoA/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/SWTFU/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/SWTFU/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Shadowrun/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Shadowrun/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Sherlock/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Sherlock/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ShippingPC-BmGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ShippingPC-BmGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ShippingPC-SkyGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ShippingPC-SkyGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ShippingPC-StormGame/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ShippingPC-StormGame/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ShooterGame-Win32-Shipping/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ShooterGame-Win32-Shipping/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/SonicGenerations/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/SonicGenerations/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/SpaceMarine/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/SpaceMarine/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/SpecOpsTheLine/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/SpecOpsTheLine/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/StateOfDecay/GeDosato.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/StateOfDecay/GeDosato.ini -------------------------------------------------------------------------------- /pack/config/StrangerOfSwordCity/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/StrangerOfSwordCity/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Symphonia/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Symphonia/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TESV/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TESV/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TFOC/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TFOC/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TWFC/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TWFC/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Tales of Zestiria/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Tales of Zestiria/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TheWalkingDead2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TheWalkingDead2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TombRaider/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TombRaider/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Torchlight2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Torchlight2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/TribesAscend/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/TribesAscend/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/UmiByeWin/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/UmiByeWin/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Valkyria/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Valkyria/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/WL2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/WL2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/Wolverine/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/Wolverine/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/alan_wakes_american_nightmare/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/alan_wakes_american_nightmare/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/bio4/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/bio4/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/bionic_commando/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/bionic_commando/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/bladesoftime/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/bladesoftime/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/bsnes/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/bsnes/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/bsnes/post.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/bsnes/post.fx -------------------------------------------------------------------------------- /pack/config/cnc3game.dat/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/cnc3game.dat/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/csgo/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/csgo/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/daorigins/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/daorigins/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/deadrising2otr/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/deadrising2otr/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/deadspace2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/deadspace2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/default/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/default/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/demoniconR/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/demoniconR/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/deusex/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/deusex/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/dmc3se/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/dmc3se/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/dota/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/dota/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/dxhr/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/dxhr/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/fear/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/fear/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ffxiii2img/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ffxiii2img/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ffxiiiimg/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ffxiiiimg/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/fr-041_debris/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/fr-041_debris/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/game/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/game/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/grimrock/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/grimrock/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/grimrock2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/grimrock2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/halo2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/halo2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/hardreset/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/hardreset/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/hl2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/hl2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/kl2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/kl2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/lcgol/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/lcgol/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/left4dead2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/left4dead2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/mitsurugi/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/mitsurugi/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/mm/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/mm/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/ninja/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/ninja/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/outland/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/outland/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/rfg/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/rfg/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/the last tinker/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/the last tinker/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/trine1_32bit/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/trine1_32bit/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/trine2_32bit/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/trine2_32bit/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/whitelist.txt -------------------------------------------------------------------------------- /pack/config/witcher2/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/witcher2/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/witn/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/witn/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/config/yso_win/GeDoSaTo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/config/yso_win/GeDoSaTo.ini -------------------------------------------------------------------------------- /pack/gedoshim.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/gedoshim.dll -------------------------------------------------------------------------------- /pack/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !logs_stored_here -------------------------------------------------------------------------------- /pack/logs/logs_stored_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pack/screens/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !screenshots_stored_here -------------------------------------------------------------------------------- /pack/screens/screenshots_stored_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pack/shim64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/pack/shim64.dll -------------------------------------------------------------------------------- /pack/textures/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !textures_stored_here -------------------------------------------------------------------------------- /pack/textures/textures_stored_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pack/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !temporary_storage_here -------------------------------------------------------------------------------- /pack/tmp/temporary_storage_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reference/.gitignore: -------------------------------------------------------------------------------- 1 | fd -------------------------------------------------------------------------------- /reference/d3d10.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/d3d10.dll.exports -------------------------------------------------------------------------------- /reference/d3d11.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/d3d11.dll.exports -------------------------------------------------------------------------------- /reference/d3d9.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/d3d9.dll.exports -------------------------------------------------------------------------------- /reference/dinput.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/dinput.dll.exports -------------------------------------------------------------------------------- /reference/dinput8.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/dinput8.dll.exports -------------------------------------------------------------------------------- /reference/dxgi.dll.exports: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/reference/dxgi.dll.exports -------------------------------------------------------------------------------- /source/blacklist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/blacklist.cpp -------------------------------------------------------------------------------- /source/bloom.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/bloom.cpp -------------------------------------------------------------------------------- /source/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/console.cpp -------------------------------------------------------------------------------- /source/d3d11/d3d11dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d11/d3d11dev.cpp -------------------------------------------------------------------------------- /source/d3d11/d3d11devcontext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d11/d3d11devcontext.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9dev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9dev.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9dev_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9dev_ex.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9dev_init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9dev_init.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9int.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9int.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9int_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9int_ex.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9ps.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9ps.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9swap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9swap.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9swap_ex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9swap_ex.cpp -------------------------------------------------------------------------------- /source/d3d9/d3d9tex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3d9/d3d9tex.cpp -------------------------------------------------------------------------------- /source/d3dperf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/d3dperf.cpp -------------------------------------------------------------------------------- /source/depth_texture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/depth_texture.cpp -------------------------------------------------------------------------------- /source/detouring.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/detouring.cpp -------------------------------------------------------------------------------- /source/dof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dof.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgiadapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgiadapter.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgiadapter1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgiadapter1.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgiadapter2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgiadapter2.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgidevice.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgidevice.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgidevice1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgidevice1.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgidevice2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgidevice2.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgidevice3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgidevice3.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgifactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgifactory.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgifactory1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgifactory1.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgifactory2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgifactory2.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgifactory3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgifactory3.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgioutput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgioutput.cpp -------------------------------------------------------------------------------- /source/dxgi/dxgiswapchain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/dxgi/dxgiswapchain.cpp -------------------------------------------------------------------------------- /source/effect.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/effect.cpp -------------------------------------------------------------------------------- /source/fxaa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/fxaa.cpp -------------------------------------------------------------------------------- /source/game_plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/game_plugin.cpp -------------------------------------------------------------------------------- /source/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/hash.cpp -------------------------------------------------------------------------------- /source/imaging.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/imaging.cpp -------------------------------------------------------------------------------- /source/key_actions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/key_actions.cpp -------------------------------------------------------------------------------- /source/lua_integration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/lua_integration.cpp -------------------------------------------------------------------------------- /source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/main.cpp -------------------------------------------------------------------------------- /source/perf_monitor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/perf_monitor.cpp -------------------------------------------------------------------------------- /source/plugins/dark_souls_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/dark_souls_2.cpp -------------------------------------------------------------------------------- /source/plugins/dw8.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/dw8.cpp -------------------------------------------------------------------------------- /source/plugins/ff13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/ff13.cpp -------------------------------------------------------------------------------- /source/plugins/generic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/generic.cpp -------------------------------------------------------------------------------- /source/plugins/generic_depth.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/generic_depth.cpp -------------------------------------------------------------------------------- /source/plugins/lrff13.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/lrff13.cpp -------------------------------------------------------------------------------- /source/plugins/mitsurugi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/mitsurugi.cpp -------------------------------------------------------------------------------- /source/plugins/stranger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/stranger.cpp -------------------------------------------------------------------------------- /source/plugins/symphonia.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/symphonia.cpp -------------------------------------------------------------------------------- /source/plugins/zestiria.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/plugins/zestiria.cpp -------------------------------------------------------------------------------- /source/post.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/post.cpp -------------------------------------------------------------------------------- /source/registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/registry.cpp -------------------------------------------------------------------------------- /source/renderstate_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/renderstate_manager.cpp -------------------------------------------------------------------------------- /source/renderstate_manager_dx11.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/renderstate_manager_dx11.cpp -------------------------------------------------------------------------------- /source/renderstate_manager_dx9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/renderstate_manager_dx9.cpp -------------------------------------------------------------------------------- /source/rendertarget_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/rendertarget_manager.cpp -------------------------------------------------------------------------------- /source/scaling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/scaling.cpp -------------------------------------------------------------------------------- /source/settings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/settings.cpp -------------------------------------------------------------------------------- /source/shader_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/shader_manager.cpp -------------------------------------------------------------------------------- /source/smaa.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/smaa.cpp -------------------------------------------------------------------------------- /source/ssao.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/ssao.cpp -------------------------------------------------------------------------------- /source/steam/steamfriends.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/steam/steamfriends.cpp -------------------------------------------------------------------------------- /source/time_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/time_manager.cpp -------------------------------------------------------------------------------- /source/timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/timer.cpp -------------------------------------------------------------------------------- /source/utils/d3d11_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/d3d11_utils.cpp -------------------------------------------------------------------------------- /source/utils/d3d_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/d3d_utils.cpp -------------------------------------------------------------------------------- /source/utils/debug_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/debug_utils.cpp -------------------------------------------------------------------------------- /source/utils/dxgi_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/dxgi_utils.cpp -------------------------------------------------------------------------------- /source/utils/imgproc_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/imgproc_utils.cpp -------------------------------------------------------------------------------- /source/utils/interface_registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/interface_registry.cpp -------------------------------------------------------------------------------- /source/utils/string_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/string_utils.cpp -------------------------------------------------------------------------------- /source/utils/thread_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/thread_utils.cpp -------------------------------------------------------------------------------- /source/utils/win_utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/utils/win_utils.cpp -------------------------------------------------------------------------------- /source/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/version.cpp -------------------------------------------------------------------------------- /source/window_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/source/window_manager.cpp -------------------------------------------------------------------------------- /version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PeterTh/gedosato/HEAD/version.rb --------------------------------------------------------------------------------