2017-06-15 23:43:38 +00:00
|
|
|
// Copyright 2017 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2+
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Graphics/EnhancementsWidget.h"
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
#include <cmath>
|
|
|
|
|
|
|
|
#include <QGridLayout>
|
|
|
|
#include <QGroupBox>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
|
|
#include "Core/Config/GraphicsSettings.h"
|
|
|
|
#include "Core/ConfigManager.h"
|
2018-05-28 01:48:04 +00:00
|
|
|
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsBool.h"
|
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsChoice.h"
|
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsSlider.h"
|
|
|
|
#include "DolphinQt/Config/Graphics/GraphicsWindow.h"
|
|
|
|
#include "DolphinQt/Config/Graphics/PostProcessingConfigWindow.h"
|
2019-09-30 20:43:55 +00:00
|
|
|
#include "DolphinQt/QtUtils/ModalMessageBox.h"
|
2018-07-06 22:40:15 +00:00
|
|
|
#include "DolphinQt/Settings.h"
|
2018-05-28 01:48:04 +00:00
|
|
|
|
2017-06-15 23:43:38 +00:00
|
|
|
#include "UICommon/VideoUtils.h"
|
2018-05-26 15:23:32 +00:00
|
|
|
|
2017-06-15 23:43:38 +00:00
|
|
|
#include "VideoCommon/PostProcessing.h"
|
2018-05-26 15:23:32 +00:00
|
|
|
#include "VideoCommon/VideoBackendBase.h"
|
2017-06-15 23:43:38 +00:00
|
|
|
#include "VideoCommon/VideoConfig.h"
|
|
|
|
|
|
|
|
EnhancementsWidget::EnhancementsWidget(GraphicsWindow* parent)
|
|
|
|
: GraphicsWidget(parent), m_block_save(false)
|
|
|
|
{
|
|
|
|
CreateWidgets();
|
|
|
|
LoadSettings();
|
|
|
|
ConnectWidgets();
|
|
|
|
AddDescriptions();
|
|
|
|
connect(parent, &GraphicsWindow::BackendChanged,
|
|
|
|
[this](const QString& backend) { LoadSettings(); });
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnhancementsWidget::CreateWidgets()
|
|
|
|
{
|
|
|
|
auto* main_layout = new QVBoxLayout;
|
|
|
|
|
|
|
|
// Enhancements
|
|
|
|
auto* enhancements_box = new QGroupBox(tr("Enhancements"));
|
|
|
|
auto* enhancements_layout = new QGridLayout();
|
|
|
|
enhancements_box->setLayout(enhancements_layout);
|
|
|
|
|
2017-07-03 14:32:02 +00:00
|
|
|
m_ir_combo = new GraphicsChoice({tr("Auto (Multiple of 640x528)"), tr("Native (640x528)"),
|
|
|
|
tr("2x Native (1280x1056) for 720p"),
|
|
|
|
tr("3x Native (1920x1584) for 1080p"),
|
|
|
|
tr("4x Native (2560x2112) for 1440p"),
|
|
|
|
tr("5x Native (3200x2640)"), tr("6x Native (3840x3168) for 4K"),
|
|
|
|
tr("7x Native (4480x3696)"), tr("8x Native (5120x4224) for 5K")},
|
|
|
|
Config::GFX_EFB_SCALE);
|
|
|
|
|
|
|
|
if (g_Config.iEFBScale > 8)
|
2017-06-15 23:43:38 +00:00
|
|
|
{
|
|
|
|
m_ir_combo->addItem(tr("Custom"));
|
|
|
|
m_ir_combo->setCurrentIndex(m_ir_combo->count() - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
m_ir_combo->setMaxVisibleItems(m_ir_combo->count());
|
|
|
|
|
|
|
|
m_aa_combo = new QComboBox();
|
|
|
|
m_af_combo = new GraphicsChoice({tr("1x"), tr("2x"), tr("4x"), tr("8x"), tr("16x")},
|
|
|
|
Config::GFX_ENHANCE_MAX_ANISOTROPY);
|
2018-02-10 12:11:18 +00:00
|
|
|
|
2017-06-15 23:43:38 +00:00
|
|
|
m_pp_effect = new QComboBox();
|
|
|
|
m_configure_pp_effect = new QPushButton(tr("Configure"));
|
2017-12-16 21:18:13 +00:00
|
|
|
m_scaled_efb_copy = new GraphicsBool(tr("Scaled EFB Copy"), Config::GFX_HACK_COPY_EFB_SCALED);
|
2017-06-15 23:43:38 +00:00
|
|
|
m_per_pixel_lighting =
|
|
|
|
new GraphicsBool(tr("Per-Pixel Lighting"), Config::GFX_ENABLE_PIXEL_LIGHTING);
|
|
|
|
m_force_texture_filtering =
|
|
|
|
new GraphicsBool(tr("Force Texture Filtering"), Config::GFX_ENHANCE_FORCE_FILTERING);
|
|
|
|
m_widescreen_hack = new GraphicsBool(tr("Widescreen Hack"), Config::GFX_WIDESCREEN_HACK);
|
|
|
|
m_disable_fog = new GraphicsBool(tr("Disable Fog"), Config::GFX_DISABLE_FOG);
|
|
|
|
m_force_24bit_color =
|
2018-04-16 17:08:58 +00:00
|
|
|
new GraphicsBool(tr("Force 24-Bit Color"), Config::GFX_ENHANCE_FORCE_TRUE_COLOR);
|
2018-04-29 08:53:16 +00:00
|
|
|
m_disable_copy_filter =
|
|
|
|
new GraphicsBool(tr("Disable Copy Filter"), Config::GFX_ENHANCE_DISABLE_COPY_FILTER);
|
2018-06-28 06:12:13 +00:00
|
|
|
m_arbitrary_mipmap_detection = new GraphicsBool(tr("Arbitrary Mipmap Detection"),
|
|
|
|
Config::GFX_ENHANCE_ARBITRARY_MIPMAP_DETECTION);
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
enhancements_layout->addWidget(new QLabel(tr("Internal Resolution:")), 0, 0);
|
|
|
|
enhancements_layout->addWidget(m_ir_combo, 0, 1, 1, -1);
|
2017-07-23 10:58:32 +00:00
|
|
|
enhancements_layout->addWidget(new QLabel(tr("Anti-Aliasing:")), 1, 0);
|
2017-06-15 23:43:38 +00:00
|
|
|
enhancements_layout->addWidget(m_aa_combo, 1, 1, 1, -1);
|
2017-07-23 10:58:32 +00:00
|
|
|
enhancements_layout->addWidget(new QLabel(tr("Anisotropic Filtering:")), 2, 0);
|
2017-06-15 23:43:38 +00:00
|
|
|
enhancements_layout->addWidget(m_af_combo, 2, 1, 1, -1);
|
|
|
|
|
2018-02-10 12:11:18 +00:00
|
|
|
enhancements_layout->addWidget(new QLabel(tr("Post-Processing Effect:")), 4, 0);
|
|
|
|
enhancements_layout->addWidget(m_pp_effect, 4, 1);
|
|
|
|
enhancements_layout->addWidget(m_configure_pp_effect, 4, 2);
|
|
|
|
|
|
|
|
enhancements_layout->addWidget(m_scaled_efb_copy, 5, 0);
|
|
|
|
enhancements_layout->addWidget(m_per_pixel_lighting, 5, 1);
|
|
|
|
enhancements_layout->addWidget(m_force_texture_filtering, 6, 0);
|
|
|
|
enhancements_layout->addWidget(m_widescreen_hack, 6, 1);
|
|
|
|
enhancements_layout->addWidget(m_disable_fog, 7, 0);
|
|
|
|
enhancements_layout->addWidget(m_force_24bit_color, 7, 1);
|
2018-04-29 08:53:16 +00:00
|
|
|
enhancements_layout->addWidget(m_disable_copy_filter, 8, 0);
|
2018-06-28 06:12:13 +00:00
|
|
|
enhancements_layout->addWidget(m_arbitrary_mipmap_detection, 8, 1);
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
// Stereoscopy
|
|
|
|
auto* stereoscopy_box = new QGroupBox(tr("Stereoscopy"));
|
|
|
|
auto* stereoscopy_layout = new QGridLayout();
|
|
|
|
stereoscopy_box->setLayout(stereoscopy_layout);
|
|
|
|
|
2019-09-30 20:43:55 +00:00
|
|
|
m_3d_mode =
|
|
|
|
new GraphicsChoice({tr("Off"), tr("Side-by-Side"), tr("Top-and-Bottom"), tr("Anaglyph"),
|
|
|
|
tr("HDMI 3D"), tr("Passive"), tr("NVIDIA 3D Vision")},
|
|
|
|
Config::GFX_STEREO_MODE);
|
2017-06-15 23:43:38 +00:00
|
|
|
m_3d_depth = new GraphicsSlider(0, 100, Config::GFX_STEREO_DEPTH);
|
|
|
|
m_3d_convergence = new GraphicsSlider(0, 200, Config::GFX_STEREO_CONVERGENCE, 100);
|
|
|
|
m_3d_swap_eyes = new GraphicsBool(tr("Swap Eyes"), Config::GFX_STEREO_SWAP_EYES);
|
|
|
|
|
|
|
|
stereoscopy_layout->addWidget(new QLabel(tr("Stereoscopic 3D Mode:")), 0, 0);
|
|
|
|
stereoscopy_layout->addWidget(m_3d_mode, 0, 1);
|
|
|
|
stereoscopy_layout->addWidget(new QLabel(tr("Depth:")), 1, 0);
|
|
|
|
stereoscopy_layout->addWidget(m_3d_depth, 1, 1);
|
|
|
|
stereoscopy_layout->addWidget(new QLabel(tr("Convergence:")), 2, 0);
|
|
|
|
stereoscopy_layout->addWidget(m_3d_convergence, 2, 1);
|
|
|
|
stereoscopy_layout->addWidget(m_3d_swap_eyes, 3, 0);
|
|
|
|
|
|
|
|
main_layout->addWidget(enhancements_box);
|
|
|
|
main_layout->addWidget(stereoscopy_box);
|
2017-09-14 16:48:20 +00:00
|
|
|
main_layout->addStretch();
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
setLayout(main_layout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnhancementsWidget::ConnectWidgets()
|
|
|
|
{
|
|
|
|
connect(m_aa_combo, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
[this](int) { SaveSettings(); });
|
|
|
|
connect(m_pp_effect, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
|
|
|
[this](int) { SaveSettings(); });
|
|
|
|
connect(m_3d_mode, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
2018-05-25 18:26:17 +00:00
|
|
|
[this] {
|
|
|
|
m_block_save = true;
|
|
|
|
LoadPPShaders();
|
|
|
|
m_block_save = false;
|
|
|
|
|
|
|
|
SaveSettings();
|
|
|
|
});
|
2019-07-23 22:18:58 +00:00
|
|
|
connect(m_configure_pp_effect, &QPushButton::clicked, this,
|
2018-05-20 22:03:40 +00:00
|
|
|
&EnhancementsWidget::ConfigurePostProcessingShader);
|
2017-06-15 23:43:38 +00:00
|
|
|
}
|
|
|
|
|
2018-05-25 18:26:17 +00:00
|
|
|
void EnhancementsWidget::LoadPPShaders()
|
2017-06-15 23:43:38 +00:00
|
|
|
{
|
2019-05-02 02:47:50 +00:00
|
|
|
std::vector<std::string> shaders = VideoCommon::PostProcessing::GetShaderList();
|
|
|
|
if (g_Config.stereo_mode == StereoMode::Anaglyph)
|
|
|
|
{
|
|
|
|
shaders = VideoCommon::PostProcessing::GetAnaglyphShaderList();
|
|
|
|
}
|
|
|
|
else if (g_Config.stereo_mode == StereoMode::Passive)
|
|
|
|
{
|
|
|
|
shaders = VideoCommon::PostProcessing::GetPassiveShaderList();
|
|
|
|
}
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
m_pp_effect->clear();
|
|
|
|
|
2019-05-02 02:47:50 +00:00
|
|
|
if (g_Config.stereo_mode != StereoMode::Anaglyph && g_Config.stereo_mode != StereoMode::Passive)
|
2018-05-26 15:34:12 +00:00
|
|
|
m_pp_effect->addItem(tr("(off)"));
|
|
|
|
|
|
|
|
auto selected_shader = Config::Get(Config::GFX_ENHANCE_POST_SHADER);
|
|
|
|
|
|
|
|
bool found = false;
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
for (const auto& shader : shaders)
|
|
|
|
{
|
|
|
|
m_pp_effect->addItem(QString::fromStdString(shader));
|
|
|
|
if (selected_shader == shader)
|
2018-05-26 15:34:12 +00:00
|
|
|
{
|
2017-06-15 23:43:38 +00:00
|
|
|
m_pp_effect->setCurrentIndex(m_pp_effect->count() - 1);
|
2018-05-26 15:34:12 +00:00
|
|
|
found = true;
|
|
|
|
}
|
2017-06-15 23:43:38 +00:00
|
|
|
}
|
2018-05-26 15:34:12 +00:00
|
|
|
|
2019-05-02 02:47:50 +00:00
|
|
|
if (g_Config.stereo_mode == StereoMode::Anaglyph && !found)
|
2018-05-26 15:34:12 +00:00
|
|
|
m_pp_effect->setCurrentIndex(m_pp_effect->findText(QStringLiteral("dubois")));
|
2019-05-02 02:47:50 +00:00
|
|
|
else if (g_Config.stereo_mode == StereoMode::Passive && !found)
|
|
|
|
m_pp_effect->setCurrentIndex(m_pp_effect->findText(QStringLiteral("horizontal")));
|
2017-06-15 23:43:38 +00:00
|
|
|
|
2018-04-22 14:18:24 +00:00
|
|
|
const bool supports_postprocessing = g_Config.backend_info.bSupportsPostProcessing;
|
|
|
|
m_pp_effect->setEnabled(supports_postprocessing);
|
|
|
|
|
2018-05-26 15:23:32 +00:00
|
|
|
m_pp_effect->setToolTip(supports_postprocessing ?
|
2019-07-30 11:57:06 +00:00
|
|
|
QString{} :
|
2018-05-26 15:23:32 +00:00
|
|
|
tr("%1 doesn't support this feature.")
|
2018-06-30 18:59:19 +00:00
|
|
|
.arg(tr(g_video_backend->GetDisplayName().c_str())));
|
2018-04-22 14:18:24 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
VideoCommon::PostProcessingConfiguration pp_shader;
|
2018-06-30 18:59:19 +00:00
|
|
|
if (selected_shader != "(off)" && supports_postprocessing)
|
2017-06-15 23:43:38 +00:00
|
|
|
{
|
|
|
|
pp_shader.LoadShader(selected_shader);
|
|
|
|
m_configure_pp_effect->setEnabled(pp_shader.HasOptions());
|
|
|
|
}
|
2018-06-30 18:59:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
m_configure_pp_effect->setEnabled(false);
|
|
|
|
}
|
2018-05-25 18:26:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EnhancementsWidget::LoadSettings()
|
|
|
|
{
|
|
|
|
m_block_save = true;
|
|
|
|
// Anti-Aliasing
|
|
|
|
|
|
|
|
int aa_selection = Config::Get(Config::GFX_MSAA);
|
|
|
|
bool ssaa = Config::Get(Config::GFX_SSAA);
|
|
|
|
|
|
|
|
m_aa_combo->clear();
|
|
|
|
for (const auto& option : VideoUtils::GetAvailableAntialiasingModes(m_msaa_modes))
|
|
|
|
m_aa_combo->addItem(option == "None" ? tr("None") : QString::fromStdString(option));
|
|
|
|
|
|
|
|
m_aa_combo->setCurrentText(
|
|
|
|
QString::fromStdString(std::to_string(aa_selection) + "x " + (ssaa ? "SSAA" : "MSAA")));
|
|
|
|
m_aa_combo->setEnabled(m_aa_combo->count() > 1);
|
|
|
|
|
|
|
|
// Post Processing Shader
|
|
|
|
LoadPPShaders();
|
2018-05-25 19:25:01 +00:00
|
|
|
|
|
|
|
// Stereoscopy
|
2017-06-15 23:43:38 +00:00
|
|
|
bool supports_stereoscopy = g_Config.backend_info.bSupportsGeometryShaders;
|
2018-05-25 19:25:01 +00:00
|
|
|
bool supports_3dvision = g_Config.backend_info.bSupports3DVision;
|
|
|
|
|
2019-09-30 20:43:55 +00:00
|
|
|
if (m_3d_mode->currentIndex() == int(StereoMode::Nvidia3DVision) && !supports_3dvision)
|
|
|
|
{
|
|
|
|
m_3d_mode->setCurrentIndex(int(StereoMode::Off));
|
2018-05-25 19:25:01 +00:00
|
|
|
|
2019-09-30 20:43:55 +00:00
|
|
|
ModalMessageBox::information(this, tr("NVIDIA 3D Vision"),
|
|
|
|
tr("NVIDIA 3D Vision is unsupported by the selected backend. "
|
|
|
|
"Stereoscopy has been disabled."));
|
|
|
|
}
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
m_3d_mode->setEnabled(supports_stereoscopy);
|
|
|
|
m_3d_convergence->setEnabled(supports_stereoscopy);
|
|
|
|
m_3d_depth->setEnabled(supports_stereoscopy);
|
|
|
|
m_3d_swap_eyes->setEnabled(supports_stereoscopy);
|
|
|
|
m_block_save = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void EnhancementsWidget::SaveSettings()
|
|
|
|
{
|
|
|
|
if (m_block_save)
|
|
|
|
return;
|
|
|
|
|
|
|
|
bool is_ssaa = m_aa_combo->currentText().endsWith(QStringLiteral("SSAA"));
|
|
|
|
|
|
|
|
int aa_value = m_aa_combo->currentIndex();
|
|
|
|
|
|
|
|
if (aa_value == 0)
|
|
|
|
{
|
|
|
|
aa_value = 1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (aa_value > m_msaa_modes)
|
|
|
|
aa_value -= m_msaa_modes;
|
|
|
|
aa_value = std::pow(2, aa_value);
|
|
|
|
}
|
|
|
|
Config::SetBaseOrCurrent(Config::GFX_MSAA, static_cast<unsigned int>(aa_value));
|
|
|
|
|
|
|
|
Config::SetBaseOrCurrent(Config::GFX_SSAA, is_ssaa);
|
|
|
|
|
2019-01-27 19:23:42 +00:00
|
|
|
const bool anaglyph = g_Config.stereo_mode == StereoMode::Anaglyph;
|
2019-05-02 02:47:50 +00:00
|
|
|
const bool passive = g_Config.stereo_mode == StereoMode::Passive;
|
2019-01-27 19:23:42 +00:00
|
|
|
Config::SetBaseOrCurrent(Config::GFX_ENHANCE_POST_SHADER,
|
2019-05-02 02:47:50 +00:00
|
|
|
(!anaglyph && !passive && m_pp_effect->currentIndex() == 0) ?
|
2019-01-27 19:23:42 +00:00
|
|
|
"(off)" :
|
|
|
|
m_pp_effect->currentText().toStdString());
|
2017-06-15 23:43:38 +00:00
|
|
|
|
2019-02-15 01:59:50 +00:00
|
|
|
VideoCommon::PostProcessingConfiguration pp_shader;
|
2017-06-15 23:43:38 +00:00
|
|
|
if (Config::Get(Config::GFX_ENHANCE_POST_SHADER) != "(off)")
|
|
|
|
{
|
|
|
|
pp_shader.LoadShader(Config::Get(Config::GFX_ENHANCE_POST_SHADER));
|
|
|
|
m_configure_pp_effect->setEnabled(pp_shader.HasOptions());
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_configure_pp_effect->setEnabled(false);
|
|
|
|
}
|
2018-05-25 18:26:17 +00:00
|
|
|
|
|
|
|
LoadSettings();
|
2017-06-15 23:43:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void EnhancementsWidget::AddDescriptions()
|
|
|
|
{
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_INTERNAL_RESOLUTION_DESCRIPTION[] =
|
2019-06-08 18:34:58 +00:00
|
|
|
QT_TR_NOOP("Controls the rendering resolution.\n\nA high resolution greatly improves "
|
|
|
|
"visual quality, but also greatly increases GPU load and can cause issues in "
|
2019-01-27 21:59:39 +00:00
|
|
|
"certain games. Generally speaking, the lower the internal resolution, the "
|
|
|
|
"better performance will be.\n\nIf unsure, select Native.");
|
|
|
|
|
|
|
|
static const char TR_ANTIALIAS_DESCRIPTION[] = QT_TR_NOOP(
|
|
|
|
"Reduces the amount of aliasing caused by rasterizing 3D graphics, resulting "
|
|
|
|
"in smoother edges on objects. Increases GPU load and sometimes causes graphical "
|
|
|
|
"issues.\n\nSSAA is significantly more demanding than MSAA, but provides top quality "
|
|
|
|
"geometry anti-aliasing and also applies anti-aliasing to lighting, shader "
|
|
|
|
"effects, and textures.\n\nIf unsure, select None.");
|
2017-06-15 23:43:38 +00:00
|
|
|
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_ANISOTROPIC_FILTERING_DESCRIPTION[] = QT_TR_NOOP(
|
2019-02-13 17:54:45 +00:00
|
|
|
"Enables anisotropic filtering, which enhances the visual quality of textures that "
|
2019-01-27 21:59:39 +00:00
|
|
|
"are at oblique viewing angles.\n\nMight cause issues in a small "
|
|
|
|
"number of games.\n\nIf unsure, select 1x.");
|
2017-06-15 23:43:38 +00:00
|
|
|
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_POSTPROCESSING_DESCRIPTION[] = QT_TR_NOOP(
|
2019-01-27 21:59:39 +00:00
|
|
|
"Applies a post-processing effect after rendering a frame.\n\nIf unsure, select (off).");
|
|
|
|
|
|
|
|
static const char TR_SCALED_EFB_COPY_DESCRIPTION[] =
|
|
|
|
QT_TR_NOOP("Greatly increases the quality of textures generated using render-to-texture "
|
2019-06-08 18:34:58 +00:00
|
|
|
"effects.\n\nSlightly increases GPU load and causes relatively few graphical "
|
|
|
|
"issues. Raising the internal resolution will improve the effect of this setting. "
|
|
|
|
"\n\nIf unsure, leave this checked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_PER_PIXEL_LIGHTING_DESCRIPTION[] = QT_TR_NOOP(
|
2017-06-15 23:43:38 +00:00
|
|
|
"Calculates lighting of 3D objects per-pixel rather than per-vertex, smoothing out the "
|
2019-06-08 18:34:58 +00:00
|
|
|
"appearance of lit polygons and making individual triangles less noticeable.\n\nRarely "
|
|
|
|
"causes slowdowns or graphical issues.\n\nIf unsure, leave this unchecked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_WIDESCREEN_HACK_DESCRIPTION[] = QT_TR_NOOP(
|
2019-01-27 21:59:39 +00:00
|
|
|
"Forces the game to output graphics for any aspect ratio. Use with \"Aspect Ratio\" set to "
|
|
|
|
"\"Force 16:9\" to force 4:3-only games to run at 16:9.\n\nRarely produces good results and "
|
|
|
|
"often partially breaks graphics and game UIs. Unnecessary (and detrimental) if using any "
|
2017-06-15 23:43:38 +00:00
|
|
|
"AR/Gecko-code widescreen patches.\n\nIf unsure, leave this unchecked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_REMOVE_FOG_DESCRIPTION[] =
|
2017-06-15 23:43:38 +00:00
|
|
|
QT_TR_NOOP("Makes distant objects more visible by removing fog, thus increasing the overall "
|
2019-01-27 21:59:39 +00:00
|
|
|
"detail.\n\nDisabling fog will break some games which rely on proper fog "
|
2017-06-15 23:43:38 +00:00
|
|
|
"emulation.\n\nIf unsure, leave this unchecked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_3D_MODE_DESCRIPTION[] = QT_TR_NOOP(
|
2019-01-27 21:59:39 +00:00
|
|
|
"Selects the stereoscopic 3D mode. Stereoscopy allows a better feeling "
|
2019-06-08 18:34:58 +00:00
|
|
|
"of depth if the necessary hardware is present. Heavily decreases "
|
|
|
|
"emulation speed and sometimes causes issues.\n\nSide-by-Side and Top-and-Bottom are "
|
2017-07-23 10:58:32 +00:00
|
|
|
"used by most 3D TVs.\nAnaglyph is used for Red-Cyan colored glasses.\nHDMI 3D is "
|
2019-05-02 02:47:50 +00:00
|
|
|
"used when the monitor supports 3D display resolutions.\nPassive is another type of 3D "
|
2019-06-08 18:34:58 +00:00
|
|
|
"used by some TVs.\n\nIf unsure, select Off.");
|
2019-01-27 21:59:39 +00:00
|
|
|
static const char TR_3D_DEPTH_DESCRIPTION[] = QT_TR_NOOP(
|
|
|
|
"Controls the separation distance between the virtual cameras. \n\nA higher "
|
|
|
|
"value creates a stronger feeling of depth while a lower value is more comfortable.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_3D_CONVERGENCE_DESCRIPTION[] = QT_TR_NOOP(
|
2017-06-15 23:43:38 +00:00
|
|
|
"Controls the distance of the convergence plane. This is the distance at which "
|
2019-01-27 21:59:39 +00:00
|
|
|
"virtual objects will appear to be in front of the screen.\n\nA higher value creates "
|
2017-06-15 23:43:38 +00:00
|
|
|
"stronger out-of-screen effects while a lower value is more comfortable.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_3D_SWAP_EYES_DESCRIPTION[] =
|
2019-01-27 21:59:39 +00:00
|
|
|
QT_TR_NOOP("Swaps the left and right eye. Most useful in side-by-side stereoscopy "
|
|
|
|
"mode.\n\nIf unsure, leave this unchecked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_FORCE_24BIT_DESCRIPTION[] =
|
2017-06-15 23:43:38 +00:00
|
|
|
QT_TR_NOOP("Forces the game to render the RGB color channels in 24-bit, thereby increasing "
|
2019-06-08 18:34:58 +00:00
|
|
|
"quality by reducing color banding.\n\nHas no impact on performance and causes "
|
2018-06-28 06:12:13 +00:00
|
|
|
"few graphical issues.\n\nIf unsure, leave this checked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_FORCE_TEXTURE_FILTERING_DESCRIPTION[] =
|
2019-01-27 21:59:39 +00:00
|
|
|
QT_TR_NOOP("Filters all textures, including any that the game explicitly set as "
|
2019-06-08 18:34:58 +00:00
|
|
|
"unfiltered.\n\nMay improve quality of certain textures in some games, but "
|
|
|
|
"will cause issues in others.\n\nIf unsure, leave this unchecked.");
|
2018-06-06 13:05:18 +00:00
|
|
|
static const char TR_DISABLE_COPY_FILTER_DESCRIPTION[] =
|
2018-04-29 08:53:16 +00:00
|
|
|
QT_TR_NOOP("Disables the blending of adjacent rows when copying the EFB. This is known in "
|
2019-01-27 21:59:39 +00:00
|
|
|
"some games as \"deflickering\" or \"smoothing\". \n\nDisabling the filter has no "
|
|
|
|
"effect on performance, but may result in a sharper image. Causes few "
|
2018-06-28 06:12:13 +00:00
|
|
|
"graphical issues.\n\nIf unsure, leave this checked.");
|
2018-07-03 10:19:07 +00:00
|
|
|
static const char TR_ARBITRARY_MIPMAP_DETECTION_DESCRIPTION[] = QT_TR_NOOP(
|
|
|
|
"Enables detection of arbitrary mipmaps, which some games use for special distance-based "
|
2019-01-27 21:59:39 +00:00
|
|
|
"effects.\n\nMay have false positives that result in blurry textures at increased internal "
|
|
|
|
"resolution, such as in games that use very low resolution mipmaps. Disabling this can also "
|
|
|
|
"reduce stutter in games that frequently load new textures. This feature is not compatible "
|
2018-07-03 10:19:07 +00:00
|
|
|
"with GPU Texture Decoding.\n\nIf unsure, leave this checked.");
|
2017-06-15 23:43:38 +00:00
|
|
|
|
|
|
|
AddDescription(m_ir_combo, TR_INTERNAL_RESOLUTION_DESCRIPTION);
|
|
|
|
AddDescription(m_aa_combo, TR_ANTIALIAS_DESCRIPTION);
|
2017-07-23 10:58:32 +00:00
|
|
|
AddDescription(m_af_combo, TR_ANISOTROPIC_FILTERING_DESCRIPTION);
|
2017-06-15 23:43:38 +00:00
|
|
|
AddDescription(m_pp_effect, TR_POSTPROCESSING_DESCRIPTION);
|
|
|
|
AddDescription(m_scaled_efb_copy, TR_SCALED_EFB_COPY_DESCRIPTION);
|
|
|
|
AddDescription(m_per_pixel_lighting, TR_PER_PIXEL_LIGHTING_DESCRIPTION);
|
|
|
|
AddDescription(m_widescreen_hack, TR_WIDESCREEN_HACK_DESCRIPTION);
|
|
|
|
AddDescription(m_disable_fog, TR_REMOVE_FOG_DESCRIPTION);
|
|
|
|
AddDescription(m_force_24bit_color, TR_FORCE_24BIT_DESCRIPTION);
|
|
|
|
AddDescription(m_force_texture_filtering, TR_FORCE_TEXTURE_FILTERING_DESCRIPTION);
|
2018-04-29 08:53:16 +00:00
|
|
|
AddDescription(m_disable_copy_filter, TR_DISABLE_COPY_FILTER_DESCRIPTION);
|
2018-06-28 06:12:13 +00:00
|
|
|
AddDescription(m_arbitrary_mipmap_detection, TR_ARBITRARY_MIPMAP_DETECTION_DESCRIPTION);
|
2017-06-15 23:43:38 +00:00
|
|
|
AddDescription(m_3d_mode, TR_3D_MODE_DESCRIPTION);
|
|
|
|
AddDescription(m_3d_depth, TR_3D_DEPTH_DESCRIPTION);
|
|
|
|
AddDescription(m_3d_convergence, TR_3D_CONVERGENCE_DESCRIPTION);
|
|
|
|
AddDescription(m_3d_swap_eyes, TR_3D_SWAP_EYES_DESCRIPTION);
|
|
|
|
}
|
2018-05-20 22:03:40 +00:00
|
|
|
|
|
|
|
void EnhancementsWidget::ConfigurePostProcessingShader()
|
|
|
|
{
|
|
|
|
const std::string shader = Config::Get(Config::GFX_ENHANCE_POST_SHADER);
|
|
|
|
PostProcessingConfigWindow(this, shader).exec();
|
|
|
|
}
|