mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-05 03:34:53 +00:00
Merge pull request #13413 from jordan-woyak/vconfig-progressive
VideoConfig: Eliminate bForceProgressive.
This commit is contained in:
commit
b7bd0a0836
3 changed files with 2 additions and 3 deletions
|
@ -783,7 +783,8 @@ void VideoInterfaceManager::OutputField(FieldType field, u64 ticks)
|
||||||
// Multiply the stride by 2 to get the byte offset for each subsequent line.
|
// Multiply the stride by 2 to get the byte offset for each subsequent line.
|
||||||
fbStride *= 2;
|
fbStride *= 2;
|
||||||
|
|
||||||
if (potentially_interlaced_xfb && interlaced_video_mode && g_ActiveConfig.bForceProgressive)
|
if (potentially_interlaced_xfb && interlaced_video_mode &&
|
||||||
|
Config::Get(Config::GFX_HACK_FORCE_PROGRESSIVE))
|
||||||
{
|
{
|
||||||
// Strictly speaking, in interlaced mode, we're only supposed to read
|
// Strictly speaking, in interlaced mode, we're only supposed to read
|
||||||
// half of the lines of the XFB, and use that to display a field; the
|
// half of the lines of the XFB, and use that to display a field; the
|
||||||
|
|
|
@ -174,7 +174,6 @@ void VideoConfig::Refresh()
|
||||||
bEFBAccessEnable = Config::Get(Config::GFX_HACK_EFB_ACCESS_ENABLE);
|
bEFBAccessEnable = Config::Get(Config::GFX_HACK_EFB_ACCESS_ENABLE);
|
||||||
bEFBAccessDeferInvalidation = Config::Get(Config::GFX_HACK_EFB_DEFER_INVALIDATION);
|
bEFBAccessDeferInvalidation = Config::Get(Config::GFX_HACK_EFB_DEFER_INVALIDATION);
|
||||||
bBBoxEnable = Config::Get(Config::GFX_HACK_BBOX_ENABLE);
|
bBBoxEnable = Config::Get(Config::GFX_HACK_BBOX_ENABLE);
|
||||||
bForceProgressive = Config::Get(Config::GFX_HACK_FORCE_PROGRESSIVE);
|
|
||||||
bSkipEFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_EFB_COPY_TO_RAM);
|
bSkipEFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_EFB_COPY_TO_RAM);
|
||||||
bSkipXFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM);
|
bSkipXFBCopyToRam = Config::Get(Config::GFX_HACK_SKIP_XFB_COPY_TO_RAM);
|
||||||
bDisableCopyToVRAM = Config::Get(Config::GFX_HACK_DISABLE_COPY_TO_VRAM);
|
bDisableCopyToVRAM = Config::Get(Config::GFX_HACK_DISABLE_COPY_TO_VRAM);
|
||||||
|
|
|
@ -279,7 +279,6 @@ struct VideoConfig final
|
||||||
bool bEFBAccessDeferInvalidation = false;
|
bool bEFBAccessDeferInvalidation = false;
|
||||||
bool bPerfQueriesEnable = false;
|
bool bPerfQueriesEnable = false;
|
||||||
bool bBBoxEnable = false;
|
bool bBBoxEnable = false;
|
||||||
bool bForceProgressive = false;
|
|
||||||
bool bCPUCull = false;
|
bool bCPUCull = false;
|
||||||
|
|
||||||
bool bEFBEmulateFormatChanges = false;
|
bool bEFBEmulateFormatChanges = false;
|
||||||
|
|
Loading…
Add table
Reference in a new issue