elimina supersampling (Lanczos downscale, keybinding, menu, locale)

This commit is contained in:
2026-05-17 15:07:28 +02:00
parent 96763847fb
commit b0c95111a2
13 changed files with 12 additions and 4339 deletions
-6
View File
@@ -18,7 +18,6 @@ namespace GlobalInputs {
static bool fullscreen_prev = false;
static bool shader_prev = false;
static bool aspect_prev = false;
static bool ss_prev = false;
static bool next_shader_prev = false;
static bool next_preset_prev = false;
static bool texture_filter_prev = false;
@@ -61,11 +60,6 @@ namespace GlobalInputs {
Screen::get()->toggleAspectRatio();
Overlay::showNotification(Options::video.aspect_ratio_4_3 ? Locale::get("notifications.aspect_43") : Locale::get("notifications.aspect_square"));
});
consumed |= edgeTrigger("toggle_supersampling", ss_prev, [] {
if (Screen::get()->toggleSupersampling()) {
Overlay::showNotification(Options::video.supersampling ? Locale::get("notifications.ss_on") : Locale::get("notifications.ss_off"));
}
});
consumed |= edgeTrigger("next_shader", next_shader_prev, [] {
if (Screen::get()->nextShaderType()) {
char msg[64];