revert: video_core changes reverted due to instability

Reverted video_core changes as they were causing instability and OpenGL
had no video output. The following commits were reverted:

1fd5fefcb1
edfb500ee7
b25c7653e6
5d952717ff
964bbf489a
a4088f3a1e
18def48dfe
3205c9b691
2f57a35d2d
f706427815
fc88c06769

Signed-off-by: Zephyron <zephyron@citron-emu.org>
This commit is contained in:
Zephyron 2025-05-03 17:37:26 +10:00
parent ba98d0f15c
commit 03aab9becc
29 changed files with 180 additions and 3016 deletions

View file

@ -760,17 +760,6 @@ Widget::Widget(Settings::BasicSetting* setting_, const TranslationMap& translati
enable &= setting.UsingGlobal();
}
// Disable memory snapshot and hybrid memory checkboxes
if (static_cast<u32>(id) == Settings::values.use_gpu_memory_manager.Id() ||
static_cast<u32>(id) == Settings::values.enable_memory_snapshots.Id() ||
static_cast<u32>(id) == Settings::values.use_nce.Id()) {
enable = false;
// Also disable the checkbox to prevent it from being changed
if (checkbox) {
checkbox->setEnabled(false);
}
}
this->setEnabled(enable);
this->setToolTip(tooltip);