summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorDentomologist <dentomologist@gmail.com>2026-04-23 12:09:54 -0700
committerDentomologist <dentomologist@gmail.com>2026-04-23 12:32:26 -0700
commit655ee270e7358d3f179cb0cfabdb95fabdbaa4fc (patch)
tree3681cd32dc6bef2ef9bbc8ccfa0587c7906768dd /Source/Core/VideoCommon
parent59eef9d4d8e653549e87907f60cc3c559dab9f4f (diff)
VideoConfig: Rename StereoMode::SBS to StereoMode::SideBySide
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/PostProcessing.cpp2
-rw-r--r--Source/Core/VideoCommon/Present.cpp4
-rw-r--r--Source/Core/VideoCommon/VideoConfig.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/PostProcessing.cpp b/Source/Core/VideoCommon/PostProcessing.cpp
index 804c24eef6..1f7e2aa987 100644
--- a/Source/Core/VideoCommon/PostProcessing.cpp
+++ b/Source/Core/VideoCommon/PostProcessing.cpp
@@ -1017,7 +1017,7 @@ static bool UseGeometryShaderForPostProcess(bool is_intermediary_buffer)
case StereoMode::Anaglyph:
case StereoMode::Passive:
return is_intermediary_buffer;
- case StereoMode::SBS:
+ case StereoMode::SideBySide:
case StereoMode::TAB:
case StereoMode::Off:
default:
diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp
index 4374782464..d74752a2fd 100644
--- a/Source/Core/VideoCommon/Present.cpp
+++ b/Source/Core/VideoCommon/Present.cpp
@@ -477,7 +477,7 @@ float Presenter::CalculateDrawAspectRatio(bool allow_stretch) const
if (g_ActiveConfig.stereo_per_eye_resolution_full)
{
- if (g_ActiveConfig.stereo_mode == StereoMode::SBS)
+ if (g_ActiveConfig.stereo_mode == StereoMode::SideBySide)
{
// Render twice as wide if using side-by-side 3D, since the 3D will halve the horizontal
// resolution
@@ -830,7 +830,7 @@ void Presenter::RenderXFBToScreen(const MathUtil::Rectangle<int>& target_rc,
g_gfx->SelectMainBuffer();
}
- else if (g_ActiveConfig.stereo_mode == StereoMode::SBS ||
+ else if (g_ActiveConfig.stereo_mode == StereoMode::SideBySide ||
g_ActiveConfig.stereo_mode == StereoMode::TAB)
{
const auto [left_rc, right_rc] = ConvertStereoRectangle(target_rc);
diff --git a/Source/Core/VideoCommon/VideoConfig.h b/Source/Core/VideoCommon/VideoConfig.h
index 2d0ab116a1..21d20428d8 100644
--- a/Source/Core/VideoCommon/VideoConfig.h
+++ b/Source/Core/VideoCommon/VideoConfig.h
@@ -33,7 +33,7 @@ enum class AspectMode : int
enum class StereoMode : int
{
Off,
- SBS,
+ SideBySide,
TAB,
Anaglyph,
QuadBuffer,