Skip to content

Commit

Permalink
Prevent turning on compute renderer on macOS
Browse files Browse the repository at this point in the history
  • Loading branch information
nadiaholmquist committed May 14, 2024
1 parent 4426617 commit 5ab8161
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/frontend/qt_sdl/VideoSettingsDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@ VideoSettingsDialog::VideoSettingsDialog(QWidget* parent) : QDialog(parent), ui(
ui->rb3DOpenGL->setEnabled(false);
#endif

#ifdef __APPLE__
ui->rb3DCompute->setEnabled(false);
#endif

ui->cbGLDisplay->setChecked(Config::ScreenUseGL != 0);

ui->cbVSync->setChecked(Config::ScreenVSync != 0);
Expand Down

0 comments on commit 5ab8161

Please sign in to comment.