Merge pull request #4147 from Armada651/accurate-depth

GameSettings: Remove forced slow depth from fixed titles.
This commit is contained in:
Jules Blok 2016-08-28 01:59:31 +02:00 committed by GitHub
commit 916bfdedbf
12 changed files with 6 additions and 29 deletions

View File

@ -17,7 +17,3 @@ EmulationIssues =
[ActionReplay] [ActionReplay]
# Add action replay cheats here. # Add action replay cheats here.
[Video_Settings]
FastDepthCalc = False

View File

@ -5,7 +5,7 @@
[EmuState] [EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set. # The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs real xfb for the videos to display. Shadow issues with fastdepth (D3D). EmulationIssues = Needs real xfb for the videos to display.
EmulationStateId = 4 EmulationStateId = 4
[OnLoad] [OnLoad]
@ -20,4 +20,3 @@ EmulationStateId = 4
[Video_Settings] [Video_Settings]
UseXFB = True UseXFB = True
UseRealXFB = True UseRealXFB = True
FastDepthCalc = False

View File

@ -5,7 +5,7 @@
[EmuState] [EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set. # The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs real xfb for the videos to display. Shadow issues with fastdepth (D3D). EmulationIssues = Needs real xfb for the videos to display.
EmulationStateId = 4 EmulationStateId = 4
[OnLoad] [OnLoad]
@ -20,4 +20,3 @@ EmulationStateId = 4
[Video_Settings] [Video_Settings]
UseXFB = True UseXFB = True
UseRealXFB = True UseRealXFB = True
FastDepthCalc = False

View File

@ -5,7 +5,7 @@
[EmuState] [EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set. # The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Needs real xfb for the videos to display. Shadow issues with fastdepth (D3D). EmulationIssues = Needs real xfb for the videos to display.
EmulationStateId = 4 EmulationStateId = 4
[OnLoad] [OnLoad]
@ -20,4 +20,3 @@ EmulationStateId = 4
[Video_Settings] [Video_Settings]
UseXFB = True UseXFB = True
UseRealXFB = True UseRealXFB = True
FastDepthCalc = False

View File

@ -21,8 +21,5 @@ EmulationIssues =
EFBAccessEnable = True EFBAccessEnable = True
EFBToTextureEnable = False EFBToTextureEnable = False
[Video_Settings]
FastDepthCalc = False
[Video_Stereoscopy] [Video_Stereoscopy]
StereoConvergence = 115 StereoConvergence = 115

View File

@ -21,4 +21,3 @@ EmulationIssues =
[Video_Settings] [Video_Settings]
SafeTextureCacheColorSamples = 512 SafeTextureCacheColorSamples = 512
FastDepthCalc = False

View File

@ -16,6 +16,3 @@ EmulationIssues =
[ActionReplay] [ActionReplay]
# Add action replay cheats here. # Add action replay cheats here.
[Video_Settings]
FastDepthCalc = False

View File

@ -19,5 +19,3 @@ EmulationStateId = 4
[Video_Settings] [Video_Settings]
SafeTextureCacheColorSamples = 512 SafeTextureCacheColorSamples = 512
FastDepthCalc = False

View File

@ -18,7 +18,6 @@ EmulationIssues = Sound crackling can be fixed by lle audio.
# Add action replay cheats here. # Add action replay cheats here.
[Video_Settings] [Video_Settings]
FastDepthCalc = False
SafeTextureCacheColorSamples = 512 SafeTextureCacheColorSamples = 512
[Video_Stereoscopy] [Video_Stereoscopy]

View File

@ -6,7 +6,7 @@
[EmuState] [EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set. # The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationStateId = 4 EmulationStateId = 4
EmulationIssues = Needs real wiimote and motion plus. Time stone transition needs Fast Depth off. EmulationIssues = Needs real wiimote and motion plus.
[OnLoad] [OnLoad]
# Add memory patches to be loaded once on boot here. # Add memory patches to be loaded once on boot here.
@ -18,6 +18,3 @@ EmulationIssues = Needs real wiimote and motion plus. Time stone transition need
[Video_Hacks] [Video_Hacks]
EFBAccessEnable = True EFBAccessEnable = True
EFBEmulateFormatChanges = True EFBEmulateFormatChanges = True
[Video_Settings]
FastDepthCalc = False

View File

@ -5,7 +5,7 @@
[EmuState] [EmuState]
# The Emulation State. 1 is worst, 5 is best, 0 is not set. # The Emulation State. 1 is worst, 5 is best, 0 is not set.
EmulationIssues = Glitches in the game menu with fast depth enabled. EmulationIssues =
EmulationStateId = 4 EmulationStateId = 4
[OnLoad] [OnLoad]
@ -16,6 +16,3 @@ EmulationStateId = 4
[ActionReplay] [ActionReplay]
# Add action replay cheats here. # Add action replay cheats here.
[Video_Settings]
FastDepthCalc = False

View File

@ -158,7 +158,7 @@ static void WriteSampleColor(char*& p, const char* colorComp, const char* dest,
// Handle D3D depth inversion. // Handle D3D depth inversion.
if (depth) if (depth)
WRITE(p, " %s = 1.0f - %s;\n", dest, dest); WRITE(p, " %s = 1.0 - %s;\n", dest, dest);
} }
} }