diff options
| author | Dentomologist <dentomologist@gmail.com> | 2026-04-23 12:22:43 -0700 |
|---|---|---|
| committer | Dentomologist <dentomologist@gmail.com> | 2026-04-24 11:19:11 -0700 |
| commit | f67d80c7c1e442c058b502477b98bbecd14b4a47 (patch) | |
| tree | abdd690ae55811f85d4fbd546b5e0629b51c6051 /Source/Core/VideoCommon | |
| parent | 655ee270e7358d3f179cb0cfabdb95fabdbaa4fc (diff) | |
VideoConfig: Rename StereoMode::TAB to StereoMode::TopAndBottom
Diffstat (limited to 'Source/Core/VideoCommon')
| -rw-r--r-- | Source/Core/VideoCommon/PostProcessing.cpp | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Present.cpp | 8 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.h | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/VideoCommon/PostProcessing.cpp b/Source/Core/VideoCommon/PostProcessing.cpp index 1f7e2aa987..92f7c1f99c 100644 --- a/Source/Core/VideoCommon/PostProcessing.cpp +++ b/Source/Core/VideoCommon/PostProcessing.cpp @@ -1018,7 +1018,7 @@ static bool UseGeometryShaderForPostProcess(bool is_intermediary_buffer) case StereoMode::Passive: return is_intermediary_buffer; case StereoMode::SideBySide: - case StereoMode::TAB: + case StereoMode::TopAndBottom: case StereoMode::Off: default: return false; diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp index d74752a2fd..0691323c54 100644 --- a/Source/Core/VideoCommon/Present.cpp +++ b/Source/Core/VideoCommon/Present.cpp @@ -392,7 +392,7 @@ Presenter::ConvertStereoRectangle(const MathUtil::Rectangle<int>& rc) const { // Resize target to half its original size auto draw_rc = rc; - if (g_ActiveConfig.stereo_mode == StereoMode::TAB) + if (g_ActiveConfig.stereo_mode == StereoMode::TopAndBottom) { // The height may be negative due to flipped rectangles int height = rc.bottom - rc.top; @@ -409,7 +409,7 @@ Presenter::ConvertStereoRectangle(const MathUtil::Rectangle<int>& rc) const // Create two target rectangle offset to the sides of the backbuffer auto left_rc = draw_rc; auto right_rc = draw_rc; - if (g_ActiveConfig.stereo_mode == StereoMode::TAB) + if (g_ActiveConfig.stereo_mode == StereoMode::TopAndBottom) { left_rc.top -= m_backbuffer_height / 4; left_rc.bottom -= m_backbuffer_height / 4; @@ -483,7 +483,7 @@ float Presenter::CalculateDrawAspectRatio(bool allow_stretch) const // resolution resulting_aspect_ratio *= 2.0; } - else if (g_ActiveConfig.stereo_mode == StereoMode::TAB) + else if (g_ActiveConfig.stereo_mode == StereoMode::TopAndBottom) { // Render twice as tall if using top-and-bottom 3D, since the 3D will halve the vertical // resolution @@ -831,7 +831,7 @@ void Presenter::RenderXFBToScreen(const MathUtil::Rectangle<int>& target_rc, g_gfx->SelectMainBuffer(); } else if (g_ActiveConfig.stereo_mode == StereoMode::SideBySide || - g_ActiveConfig.stereo_mode == StereoMode::TAB) + g_ActiveConfig.stereo_mode == StereoMode::TopAndBottom) { const auto [left_rc, right_rc] = ConvertStereoRectangle(target_rc); diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h index 21d20428d8..eed6a3420e 100644 --- a/Source/Core/VideoCommon/VideoConfig.h +++ b/Source/Core/VideoCommon/VideoConfig.h @@ -34,7 +34,7 @@ enum class StereoMode : int { Off, SideBySide, - TAB, + TopAndBottom, Anaglyph, QuadBuffer, Passive |
