diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-09 09:46:11 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-09 09:46:11 -0400 |
commit | 4d395b3b72b56510f49e28d2bbe1a7ca94377a0b (patch) | |
tree | 99482b8014750174ead01df91526545c8dcd435e /src/yuzu/configuration/config.cpp | |
parent | b3e2c9f9f147f7dbb4b2ae0fdc91ddee70b4fdb4 (diff) | |
parent | a64ad8315f7cc5cf8b855bd892317142c1c7d9a2 (diff) |
Merge pull request #10614 from xcfrg/shader-backend-status-bar
yuzu: add opengl shader backend info in status bar
Diffstat (limited to 'src/yuzu/configuration/config.cpp')
-rw-r--r-- | src/yuzu/configuration/config.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/yuzu/configuration/config.cpp b/src/yuzu/configuration/config.cpp index 6288fef62..fe12fa8f3 100644 --- a/src/yuzu/configuration/config.cpp +++ b/src/yuzu/configuration/config.cpp @@ -101,6 +101,12 @@ const std::map<Settings::RendererBackend, QString> Config::renderer_backend_text {Settings::RendererBackend::Null, QStringLiteral(QT_TRANSLATE_NOOP("GMainWindow", "Null"))}, }; +const std::map<Settings::ShaderBackend, QString> Config::shader_backend_texts_map = { + {Settings::ShaderBackend::GLSL, QStringLiteral(QT_TRANSLATE_NOOP("GMainWindow", "GLSL"))}, + {Settings::ShaderBackend::GLASM, QStringLiteral(QT_TRANSLATE_NOOP("GMainWindow", "GLASM"))}, + {Settings::ShaderBackend::SPIRV, QStringLiteral(QT_TRANSLATE_NOOP("GMainWindow", "SPIRV"))}, +}; + // This shouldn't have anything except static initializers (no functions). So // QKeySequence(...).toString() is NOT ALLOWED HERE. // This must be in alphabetical order according to action name as it must have the same order as |