summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PostProcessing.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2026-04-25 11:55:03 -0500
committerGitHub <noreply@github.com>2026-04-25 11:55:03 -0500
commit0363de56fc13edb43cd50467a52b1c10207db702 (patch)
tree913542c43748e06bf4ee74315a4e2fbb7f4ed7dc /Source/Core/VideoCommon/PostProcessing.cpp
parenta94854309b36980f302a502303a50aa356688bd4 (diff)
parentf67d80c7c1e442c058b502477b98bbecd14b4a47 (diff)
Merge pull request #14618 from Dentomologist/stereomode_unabbreviate_variable_names
StereoMode: Unabbreviate enum names
Diffstat (limited to 'Source/Core/VideoCommon/PostProcessing.cpp')
-rw-r--r--Source/Core/VideoCommon/PostProcessing.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/PostProcessing.cpp b/Source/Core/VideoCommon/PostProcessing.cpp
index 804c24eef6..92f7c1f99c 100644
--- a/Source/Core/VideoCommon/PostProcessing.cpp
+++ b/Source/Core/VideoCommon/PostProcessing.cpp
@@ -1017,8 +1017,8 @@ static bool UseGeometryShaderForPostProcess(bool is_intermediary_buffer)
case StereoMode::Anaglyph:
case StereoMode::Passive:
return is_intermediary_buffer;
- case StereoMode::SBS:
- case StereoMode::TAB:
+ case StereoMode::SideBySide:
+ case StereoMode::TopAndBottom:
case StereoMode::Off:
default:
return false;