diff options
| author | 2018-05-30 15:38:22 -0500 | |
|---|---|---|
| committer | 2018-06-04 12:26:30 -0500 | |
| commit | 0641950f9a4e7f4f6a4a828ec3a7840a57c29b77 (patch) | |
| tree | 3d4c1ad56231bbca12c5597c9b40b3ccf08845c2 /src | |
| parent | Merge pull request #483 from bunnei/sonic (diff) | |
| download | yuzu-0641950f9a4e7f4f6a4a828ec3a7840a57c29b77.tar.gz yuzu-0641950f9a4e7f4f6a4a828ec3a7840a57c29b77.tar.xz yuzu-0641950f9a4e7f4f6a4a828ec3a7840a57c29b77.zip | |
qt: add check for GL extension support
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/main.cpp | 26 | ||||
| -rw-r--r-- | src/yuzu/main.h | 1 |
2 files changed, 27 insertions, 0 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index a5d7807e2..3038bd6da 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp | |||
| @@ -335,6 +335,24 @@ void GMainWindow::OnDisplayTitleBars(bool show) { | |||
| 335 | } | 335 | } |
| 336 | } | 336 | } |
| 337 | 337 | ||
| 338 | bool GMainWindow::SupportsRequiredGLExtensions() { | ||
| 339 | QStringList unsupported_ext; | ||
| 340 | |||
| 341 | if (!GLAD_GL_ARB_program_interface_query) | ||
| 342 | unsupported_ext.append("ARB_program_interface_query"); | ||
| 343 | if (!GLAD_GL_ARB_separate_shader_objects) | ||
| 344 | unsupported_ext.append("ARB_separate_shader_objects"); | ||
| 345 | if (!GLAD_GL_ARB_shader_storage_buffer_object) | ||
| 346 | unsupported_ext.append("ARB_shader_storage_buffer_object"); | ||
| 347 | if (!GLAD_GL_ARB_vertex_attrib_binding) | ||
| 348 | unsupported_ext.append("ARB_vertex_attrib_binding"); | ||
| 349 | |||
| 350 | for (const QString& ext : unsupported_ext) | ||
| 351 | NGLOG_CRITICAL(Frontend, "Unsupported GL extension: {}", ext.toStdString()); | ||
| 352 | |||
| 353 | return unsupported_ext.empty(); | ||
| 354 | } | ||
| 355 | |||
| 338 | bool GMainWindow::LoadROM(const QString& filename) { | 356 | bool GMainWindow::LoadROM(const QString& filename) { |
| 339 | // Shutdown previous session if the emu thread is still active... | 357 | // Shutdown previous session if the emu thread is still active... |
| 340 | if (emu_thread != nullptr) | 358 | if (emu_thread != nullptr) |
| @@ -350,6 +368,14 @@ bool GMainWindow::LoadROM(const QString& filename) { | |||
| 350 | return false; | 368 | return false; |
| 351 | } | 369 | } |
| 352 | 370 | ||
| 371 | if (!SupportsRequiredGLExtensions()) { | ||
| 372 | QMessageBox::critical( | ||
| 373 | this, tr("Error while initializing OpenGL Core!"), | ||
| 374 | tr("Your GPU may not support one or more required OpenGL extensions. Please " | ||
| 375 | "ensure you have the latest graphics driver. See the log for more details.")); | ||
| 376 | return false; | ||
| 377 | } | ||
| 378 | |||
| 353 | Core::System& system{Core::System::GetInstance()}; | 379 | Core::System& system{Core::System::GetInstance()}; |
| 354 | 380 | ||
| 355 | system.SetGPUDebugContext(debug_context); | 381 | system.SetGPUDebugContext(debug_context); |
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 20ff65314..ac3024d8a 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h | |||
| @@ -79,6 +79,7 @@ private: | |||
| 79 | void ConnectWidgetEvents(); | 79 | void ConnectWidgetEvents(); |
| 80 | void ConnectMenuEvents(); | 80 | void ConnectMenuEvents(); |
| 81 | 81 | ||
| 82 | bool SupportsRequiredGLExtensions(); | ||
| 82 | bool LoadROM(const QString& filename); | 83 | bool LoadROM(const QString& filename); |
| 83 | void BootGame(const QString& filename); | 84 | void BootGame(const QString& filename); |
| 84 | void ShutdownGame(); | 85 | void ShutdownGame(); |