summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2020-11-10 04:12:41 +0100
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2020-11-10 04:12:41 +0100
commit945cfe234b649aec08efcebadae905de5dfcda90 (patch)
tree4dd95e3e6ee809cc5e059a0bbf2f48b4964d15f5
parentMerge pull request #4909 from lioncash/interrupt (diff)
downloadyuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar.gz
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar.bz2
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar.lz
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar.xz
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.tar.zst
yuzu-945cfe234b649aec08efcebadae905de5dfcda90.zip
-rw-r--r--src/yuzu/bootmanager.cpp22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp
index 408eac2b7..4481c749b 100644
--- a/src/yuzu/bootmanager.cpp
+++ b/src/yuzu/bootmanager.cpp
@@ -10,6 +10,7 @@
#include <QMessageBox>
#include <QPainter>
#include <QScreen>
+#include <QString>
#include <QStringList>
#include <QWindow>
@@ -603,19 +604,34 @@ bool GRenderWindow::LoadOpenGL() {
auto context = CreateSharedContext();
auto scope = context->Acquire();
if (!gladLoadGL()) {
+ QMessageBox::critical(
+ this, tr("Error while initializing OpenGL!"),
+ tr("Your GPU may not support OpenGL, or you do not have the latest graphics driver."));
+ return false;
+ }
+
+ QString renderer = QString::fromUtf8(reinterpret_cast<const char*>(glGetString(GL_RENDERER)));
+
+ if (!GLAD_GL_VERSION_4_3) {
+ LOG_CRITICAL(Frontend, "GPU does not support OpenGL 4.3: {:s}", renderer.toStdString());
QMessageBox::critical(this, tr("Error while initializing OpenGL 4.3!"),
tr("Your GPU may not support OpenGL 4.3, or you do not have the "
- "latest graphics driver."));
+ "latest graphics driver.<br><br>GL Renderer:<br>%1")
+ .arg(renderer));
return false;
}
QStringList unsupported_gl_extensions = GetUnsupportedGLExtensions();
if (!unsupported_gl_extensions.empty()) {
+ LOG_CRITICAL(Frontend, "GPU does not support all needed extensions: {:s}",
+ renderer.toStdString());
QMessageBox::critical(
this, tr("Error while initializing OpenGL!"),
tr("Your GPU may not support one or more required OpenGL extensions. Please ensure you "
- "have the latest graphics driver.<br><br>Unsupported extensions:<br>") +
- unsupported_gl_extensions.join(QStringLiteral("<br>")));
+ "have the latest graphics driver.<br><br>GL Renderer:<br>%1<br><br>Unsupported "
+ "extensions:<br>%2")
+ .arg(renderer)
+ .arg(unsupported_gl_extensions.join(QStringLiteral("<br>"))));
return false;
}
return true;