Skip to content
Snippets Groups Projects
Unverified Commit 2437ca04 authored by Hexagon12's avatar Hexagon12 Committed by GitHub
Browse files

Merge pull request #2476 from ReinUsesLisp/fix-compat

yuzu/bootmanager: Explicitly enable deprecated OpenGL features on compat
parents aa61478d e6c60b41
No related branches found
No related tags found
No related merge requests found
...@@ -379,6 +379,7 @@ void GRenderWindow::InitRenderTarget() { ...@@ -379,6 +379,7 @@ void GRenderWindow::InitRenderTarget() {
fmt.setVersion(4, 3); fmt.setVersion(4, 3);
if (Settings::values.use_compatibility_profile) { if (Settings::values.use_compatibility_profile) {
fmt.setProfile(QSurfaceFormat::CompatibilityProfile); fmt.setProfile(QSurfaceFormat::CompatibilityProfile);
fmt.setOption(QSurfaceFormat::FormatOption::DeprecatedFunctions);
} else { } else {
fmt.setProfile(QSurfaceFormat::CoreProfile); fmt.setProfile(QSurfaceFormat::CoreProfile);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment