From 60d1f9d5027ceba8aa1ba38731f5f7e06f27ca5e Mon Sep 17 00:00:00 2001 From: Noisyfox Date: Tue, 21 Jul 2026 05:17:06 +0800 Subject: [PATCH] Show OpenGL profile in troubleshoot dialog (#14464) --- src/slic3r/GUI/TroubleshootDialog.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/slic3r/GUI/TroubleshootDialog.cpp b/src/slic3r/GUI/TroubleshootDialog.cpp index 87884916e0..44f35e2335 100644 --- a/src/slic3r/GUI/TroubleshootDialog.cpp +++ b/src/slic3r/GUI/TroubleshootDialog.cpp @@ -807,7 +807,11 @@ wxString TroubleshootDialog::GetRAMinfo() wxString TroubleshootDialog::GetGPUinfo() { auto gl_info = OpenGLManager::get_gl_info(); - return gl_info.get_renderer()+ " GLSL:" + gl_info.get_glsl_version(); +#if !SLIC3R_OPENGL_ES + return gl_info.get_renderer() + " GLSL:" + gl_info.get_glsl_version() + (gl_info.is_core_profile() ? " Core" : " Compatibility"); +#else + return gl_info.get_renderer() + " GLSL:" + gl_info.get_glsl_version() + " ES"; +#endif } wxString TroubleshootDialog::GetMONinfo()