You want to fix some games, and help out. But where do you start? It seems impossibly complex and there are so many discussions.
This is a list of bookmarks that I compiled while I went down this path. This list is to help anybody just starting to try to understand how to fix games. This cuts through the miles and miles of text and discussion to hit most of the important pieces for learning. These are sorted in a rough order of importance, but there is some overlap.
I think I've read nearly everything posted publicly about fixes, but if I've missed something, please let me know in the comments and I'll update the list. If you just can't work something out, you should ask for help in the main Helix thread.
NVidia whitepapers on how 3D works and underlying principles
NVidia whitepaper on how 3D works, and how they create 3D. Really need to understand this to make any fixes. Slide 49 gives the fundamental formula for how things become 3D.
http://www.nvidia.com/content/GTC-2010/pdfs/2010_GTC2010.pdf
NVidia whitepaper on 3D Vision Automatic, with background on how the driver automatically creates 3D, and some things that can go wrong.
http://www.nvidia.com/content/GTC-2010/pdfs/2010_GTC2010.pdf
NVidia whitepaper talking about the stereo unprojection problem, and how to fix it. This is typically what goes wrong with shadows.
http://developer.download.nvidia.com/whitepapers/2011/StereoUnproject.pdf
Starting point for learning to use Helix debugger and create basic fixes
Where it all began, first link with details on how to use HelixMod. Includes details on how to use the debugger to find shaders, and how to change the keys used.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/
eqzitara's guide for how to remove broken effects. Removing effects is easier than fixing them, and is often all that is necessary.
http://helixmod.blogspot.com/2012/04/how-to-guide-remove-effects-from-game.html
Helix tutorial on how to apply a fix using the stereo texture to get separation and convergence.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3653617/#3653617
Helix's extensive update to the dlls, to add the ability to separate textures out, and thus be able to fix shaders without impacting other pieces like the HUD. Also details how to save Presets that can then be used in shaders with if statements.
http://helixmod.blogspot.it/2012/03/dlls-update.html
Mana84 tying together the details into how we are applying the NVidia formula using the code that Helix provided. Explains how the separation and convergence come from the stereo sampler as a 'trick' by the driver.
http://helixmod.blogspot.com/2012/12/darksiders-2010.html?showComment=1356789781459#c4261038469296882737
Examples of how to do some basic fixes
eqzitara tutorial on how to convert from shader model 1.1 -> 3.0, and apply the texture fix.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3653984/#3653984
Chiz1 question about getting an error in the log, and Helix's answer for how to fix it.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3654049/#3654049
eqzitara comment for how to properly kill a shader. Can't be empty or it will crash.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3774331/#3774331
3d4dd working through a fix for Miasmata with eqzitara and DHR to fix sky and push HUD into screen. Also set up for Helix presets to allow for aiming to change depth.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3716670/#3716670
eqzitara comment on how to use Helix Lua script to autofix a lot of UDK games:
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3797899/#3797899
Helix comment on using the profile setting feature. Doesn't work well, but might be useful.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3802642/#3802642
Examples and discussions of advanced fixes
Mana84 comment for setting up the InverseMatrix feature in the ini file.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3774904/#3774904
mike_ar69 question and Helix response about how to use surface creation mode feature, to fix some shadow maps.
http://helixmod.blogspot.com/2013/04/mars-war-logs-3d-vision-fix.html
Helix adding some details on using the new feature to add presets to autofixed shaders. This can allow automatic preset changes when menus come up or for cutscenes.
http://helixmod.blogspot.com/2013/08/castlevania-lords-of-shadow-ultimate.html?showComment=1377998341883#c5984318752489853536
mike_ar69 giving some tips on how to fix shadows by using inverse matrix, and a little later an example fix using that technique.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/4069271/#4069271
This is a list of bookmarks that I compiled while I went down this path. This list is to help anybody just starting to try to understand how to fix games. This cuts through the miles and miles of text and discussion to hit most of the important pieces for learning. These are sorted in a rough order of importance, but there is some overlap.
I think I've read nearly everything posted publicly about fixes, but if I've missed something, please let me know in the comments and I'll update the list. If you just can't work something out, you should ask for help in the main Helix thread.
NVidia whitepapers on how 3D works and underlying principles
NVidia whitepaper on how 3D works, and how they create 3D. Really need to understand this to make any fixes. Slide 49 gives the fundamental formula for how things become 3D.
http://www.nvidia.com/content/GTC-2010/pdfs/2010_GTC2010.pdf
NVidia whitepaper on 3D Vision Automatic, with background on how the driver automatically creates 3D, and some things that can go wrong.
http://www.nvidia.com/content/GTC-2010/pdfs/2010_GTC2010.pdf
NVidia whitepaper talking about the stereo unprojection problem, and how to fix it. This is typically what goes wrong with shadows.
http://developer.download.nvidia.com/whitepapers/2011/StereoUnproject.pdf
Starting point for learning to use Helix debugger and create basic fixes
Where it all began, first link with details on how to use HelixMod. Includes details on how to use the debugger to find shaders, and how to change the keys used.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/
eqzitara's guide for how to remove broken effects. Removing effects is easier than fixing them, and is often all that is necessary.
http://helixmod.blogspot.com/2012/04/how-to-guide-remove-effects-from-game.html
Helix tutorial on how to apply a fix using the stereo texture to get separation and convergence.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3653617/#3653617
Helix's extensive update to the dlls, to add the ability to separate textures out, and thus be able to fix shaders without impacting other pieces like the HUD. Also details how to save Presets that can then be used in shaders with if statements.
http://helixmod.blogspot.it/2012/03/dlls-update.html
Mana84 tying together the details into how we are applying the NVidia formula using the code that Helix provided. Explains how the separation and convergence come from the stereo sampler as a 'trick' by the driver.
http://helixmod.blogspot.com/2012/12/darksiders-2010.html?showComment=1356789781459#c4261038469296882737
Examples of how to do some basic fixes
eqzitara tutorial on how to convert from shader model 1.1 -> 3.0, and apply the texture fix.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3653984/#3653984
Chiz1 question about getting an error in the log, and Helix's answer for how to fix it.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3654049/#3654049
eqzitara comment for how to properly kill a shader. Can't be empty or it will crash.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3774331/#3774331
3d4dd working through a fix for Miasmata with eqzitara and DHR to fix sky and push HUD into screen. Also set up for Helix presets to allow for aiming to change depth.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3716670/#3716670
eqzitara comment on how to use Helix Lua script to autofix a lot of UDK games:
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3797899/#3797899
Helix comment on using the profile setting feature. Doesn't work well, but might be useful.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3802642/#3802642
Examples and discussions of advanced fixes
Mana84 comment for setting up the InverseMatrix feature in the ini file.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/3774904/#3774904
mike_ar69 question and Helix response about how to use surface creation mode feature, to fix some shadow maps.
http://helixmod.blogspot.com/2013/04/mars-war-logs-3d-vision-fix.html
Helix adding some details on using the new feature to add presets to autofixed shaders. This can allow automatic preset changes when menus come up or for cutscenes.
http://helixmod.blogspot.com/2013/08/castlevania-lords-of-shadow-ultimate.html?showComment=1377998341883#c5984318752489853536
mike_ar69 giving some tips on how to fix shadows by using inverse matrix, and a little later an example fix using that technique.
https://forums.geforce.com/default/topic/513190/3d-vision/how-to-fix-disable-shaders-in-games-dll-guide-and-fixes-/post/4069271/#4069271