Merge pull request #2476 from ReinUsesLisp/fix-compat

yuzu/bootmanager: Explicitly enable deprecated OpenGL features on compat
This commit is contained in:
Hexagon12 2019-05-19 14:31:52 +01:00 committed by GitHub
commit 2437ca04d7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -379,6 +379,7 @@ void GRenderWindow::InitRenderTarget() {
fmt.setVersion(4, 3);
if (Settings::values.use_compatibility_profile) {
fmt.setProfile(QSurfaceFormat::CompatibilityProfile);
fmt.setOption(QSurfaceFormat::FormatOption::DeprecatedFunctions);
} else {
fmt.setProfile(QSurfaceFormat::CoreProfile);
}