mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-27 21:25:21 -05:00
Merge pull request #14618 from Dentomologist/stereomode_unabbreviate_variable_names
StereoMode: Unabbreviate enum names
This commit is contained in:
@@ -314,7 +314,7 @@ constexpr std::array<HotkeyGroupInfo, NUM_HOTKEY_GROUPS> s_groups_info = {
|
||||
{_trans("Internal Resolution"), HK_INCREASE_IR, HK_DECREASE_IR},
|
||||
{_trans("Freelook"), HK_FREELOOK_TOGGLE, HK_FREELOOK_TOGGLE},
|
||||
// i18n: Stereoscopic 3D
|
||||
{_trans("3D"), HK_TOGGLE_STEREO_SBS, HK_TOGGLE_STEREO_ANAGLYPH},
|
||||
{_trans("3D"), HK_TOGGLE_STEREO_SIDE_BY_SIDE, HK_TOGGLE_STEREO_ANAGLYPH},
|
||||
// i18n: Stereoscopic 3D
|
||||
{_trans("3D Depth"), HK_DECREASE_DEPTH, HK_INCREASE_CONVERGENCE},
|
||||
{_trans("Load State"), HK_LOAD_STATE_SLOT_1, HK_LOAD_STATE_SLOT_SELECTED},
|
||||
|
||||
@@ -107,8 +107,8 @@ enum Hotkey
|
||||
|
||||
HK_FREELOOK_TOGGLE,
|
||||
|
||||
HK_TOGGLE_STEREO_SBS,
|
||||
HK_TOGGLE_STEREO_TAB,
|
||||
HK_TOGGLE_STEREO_SIDE_BY_SIDE,
|
||||
HK_TOGGLE_STEREO_TOP_AND_BOTTOM,
|
||||
HK_TOGGLE_STEREO_ANAGLYPH,
|
||||
|
||||
HK_DECREASE_DEPTH,
|
||||
|
||||
@@ -241,8 +241,11 @@ void EnhancementsWidget::CreateWidgets()
|
||||
m_3d_convergence_value->setText(QString::asprintf("%.2f", m_3d_convergence->GetValue()));
|
||||
|
||||
auto current_stereo_mode = Get(m_game_layer, Config::GFX_STEREO_MODE);
|
||||
if (current_stereo_mode != StereoMode::SBS && current_stereo_mode != StereoMode::TAB)
|
||||
if (current_stereo_mode != StereoMode::SideBySide &&
|
||||
current_stereo_mode != StereoMode::TopAndBottom)
|
||||
{
|
||||
m_3d_per_eye_resolution->hide();
|
||||
}
|
||||
|
||||
main_layout->addWidget(enhancements_box);
|
||||
main_layout->addWidget(stereoscopy_box);
|
||||
@@ -257,10 +260,15 @@ void EnhancementsWidget::ConnectWidgets()
|
||||
auto current_stereo_mode = Get(m_game_layer, Config::GFX_STEREO_MODE);
|
||||
LoadPostProcessingShaders();
|
||||
|
||||
if (current_stereo_mode == StereoMode::SBS || current_stereo_mode == StereoMode::TAB)
|
||||
if (current_stereo_mode == StereoMode::SideBySide ||
|
||||
current_stereo_mode == StereoMode::TopAndBottom)
|
||||
{
|
||||
m_3d_per_eye_resolution->show();
|
||||
}
|
||||
else
|
||||
{
|
||||
m_3d_per_eye_resolution->hide();
|
||||
}
|
||||
});
|
||||
|
||||
connect(m_post_processing_effect, &QComboBox::currentIndexChanged, this,
|
||||
|
||||
@@ -551,15 +551,15 @@ void HotkeyScheduler::Run()
|
||||
emit DecrementSelectedStateSlotHotkey();
|
||||
|
||||
// Stereoscopy
|
||||
if (IsHotkey(HK_TOGGLE_STEREO_SBS))
|
||||
if (IsHotkey(HK_TOGGLE_STEREO_SIDE_BY_SIDE))
|
||||
{
|
||||
if (Config::Get(Config::GFX_STEREO_MODE) != StereoMode::SBS)
|
||||
if (Config::Get(Config::GFX_STEREO_MODE) != StereoMode::SideBySide)
|
||||
{
|
||||
// Disable post-processing shader, as stereoscopy itself is currently a shader
|
||||
if (Config::Get(Config::GFX_ENHANCE_POST_SHADER) == DUBOIS_ALGORITHM_SHADER)
|
||||
Config::SetCurrent(Config::GFX_ENHANCE_POST_SHADER, "");
|
||||
|
||||
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::SBS);
|
||||
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::SideBySide);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -567,15 +567,15 @@ void HotkeyScheduler::Run()
|
||||
}
|
||||
}
|
||||
|
||||
if (IsHotkey(HK_TOGGLE_STEREO_TAB))
|
||||
if (IsHotkey(HK_TOGGLE_STEREO_TOP_AND_BOTTOM))
|
||||
{
|
||||
if (Config::Get(Config::GFX_STEREO_MODE) != StereoMode::TAB)
|
||||
if (Config::Get(Config::GFX_STEREO_MODE) != StereoMode::TopAndBottom)
|
||||
{
|
||||
// Disable post-processing shader, as stereoscopy itself is currently a shader
|
||||
if (Config::Get(Config::GFX_ENHANCE_POST_SHADER) == DUBOIS_ALGORITHM_SHADER)
|
||||
Config::SetCurrent(Config::GFX_ENHANCE_POST_SHADER, "");
|
||||
|
||||
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::TAB);
|
||||
Config::SetCurrent(Config::GFX_STEREO_MODE, StereoMode::TopAndBottom);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
@@ -477,13 +477,13 @@ 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
|
||||
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
|
||||
@@ -830,8 +830,8 @@ void Presenter::RenderXFBToScreen(const MathUtil::Rectangle<int>& target_rc,
|
||||
|
||||
g_gfx->SelectMainBuffer();
|
||||
}
|
||||
else if (g_ActiveConfig.stereo_mode == StereoMode::SBS ||
|
||||
g_ActiveConfig.stereo_mode == StereoMode::TAB)
|
||||
else if (g_ActiveConfig.stereo_mode == StereoMode::SideBySide ||
|
||||
g_ActiveConfig.stereo_mode == StereoMode::TopAndBottom)
|
||||
{
|
||||
const auto [left_rc, right_rc] = ConvertStereoRectangle(target_rc);
|
||||
|
||||
|
||||
@@ -33,8 +33,8 @@ enum class AspectMode : int
|
||||
enum class StereoMode : int
|
||||
{
|
||||
Off,
|
||||
SBS,
|
||||
TAB,
|
||||
SideBySide,
|
||||
TopAndBottom,
|
||||
Anaglyph,
|
||||
QuadBuffer,
|
||||
Passive
|
||||
|
||||
Reference in New Issue
Block a user