From 0862e5e98ab32a1f8d92346b047db151d3892819 Mon Sep 17 00:00:00 2001 From: RedBlackAka <140876408+RedBlackAka@users.noreply.github.com> Date: Sat, 28 Mar 2026 12:17:15 +0100 Subject: [PATCH] Qt: Remove Vulkan warning and OpenGL Mesa override (#1938) --- src/citra_qt/citra_qt.cpp | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/src/citra_qt/citra_qt.cpp b/src/citra_qt/citra_qt.cpp index f6faec9c5..9bb0b2e34 100644 --- a/src/citra_qt/citra_qt.cpp +++ b/src/citra_qt/citra_qt.cpp @@ -465,24 +465,10 @@ GMainWindow::GMainWindow(Core::System& system_) #ifdef ENABLE_OPENGL gl_renderer = GetOpenGLRenderer(); -#if defined(_WIN32) - if (gl_renderer.startsWith(QStringLiteral("D3D12"))) { - // OpenGLOn12 supports but does not yet advertise OpenGL 4.0+ - // We can override the version here to allow Citra to work. - // TODO: Remove this when OpenGL 4.0+ is advertised. - qputenv("MESA_GL_VERSION_OVERRIDE", "4.6"); - } -#endif #endif #ifdef ENABLE_VULKAN physical_devices = GetVulkanPhysicalDevices(); - if (physical_devices.empty()) { - QMessageBox::warning(this, tr("No Suitable Vulkan Devices Detected"), - tr("Vulkan initialization failed during boot.
" - "Your GPU may not support Vulkan 1.1, or you do not " - "have the latest graphics driver.")); - } #endif if (!game_path.isEmpty()) {