|
|
@ -164,6 +164,11 @@ std::unique_ptr<TranslationMap> InitializeTranslations(QWidget* parent) {
|
|
|
|
"the emulator to decompress to an intermediate format any card supports, RGBA8.\n"
|
|
|
|
"the emulator to decompress to an intermediate format any card supports, RGBA8.\n"
|
|
|
|
"This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but "
|
|
|
|
"This option recompresses RGBA8 to either the BC1 or BC3 format, saving VRAM but "
|
|
|
|
"negatively affecting image quality."));
|
|
|
|
"negatively affecting image quality."));
|
|
|
|
|
|
|
|
INSERT(Settings, vram_usage_mode, tr("VRAM Usage Mode:"),
|
|
|
|
|
|
|
|
tr("Selects whether the emulator should prefer to conserve memory or make maximum usage "
|
|
|
|
|
|
|
|
"of available video memory for performance. Has no effect on integrated graphics. "
|
|
|
|
|
|
|
|
"Aggressive mode may severely impact the performance of other applications such as "
|
|
|
|
|
|
|
|
"recording software."));
|
|
|
|
INSERT(
|
|
|
|
INSERT(
|
|
|
|
Settings, vsync_mode, tr("VSync Mode:"),
|
|
|
|
Settings, vsync_mode, tr("VSync Mode:"),
|
|
|
|
tr("FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen "
|
|
|
|
tr("FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen "
|
|
|
@ -315,6 +320,11 @@ std::unique_ptr<ComboboxTranslationMap> ComboboxEnumeration(QWidget* parent) {
|
|
|
|
PAIR(AstcRecompression, Bc1, tr("BC1 (Low quality)")),
|
|
|
|
PAIR(AstcRecompression, Bc1, tr("BC1 (Low quality)")),
|
|
|
|
PAIR(AstcRecompression, Bc3, tr("BC3 (Medium quality)")),
|
|
|
|
PAIR(AstcRecompression, Bc3, tr("BC3 (Medium quality)")),
|
|
|
|
}});
|
|
|
|
}});
|
|
|
|
|
|
|
|
translations->insert({Settings::EnumMetadata<Settings::VramUsageMode>::Index(),
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
PAIR(VramUsageMode, Conservative, tr("Conservative")),
|
|
|
|
|
|
|
|
PAIR(VramUsageMode, Aggressive, tr("Aggressive")),
|
|
|
|
|
|
|
|
}});
|
|
|
|
translations->insert({Settings::EnumMetadata<Settings::RendererBackend>::Index(),
|
|
|
|
translations->insert({Settings::EnumMetadata<Settings::RendererBackend>::Index(),
|
|
|
|
{
|
|
|
|
{
|
|
|
|
#ifdef HAS_OPENGL
|
|
|
|
#ifdef HAS_OPENGL
|
|
|
|