Prevent turning on compute renderer on macOS
This commit is contained in:
parent
442661747e
commit
5ab8161a21
|
@ -75,6 +75,10 @@ VideoSettingsDialog::VideoSettingsDialog(QWidget* parent) : QDialog(parent), ui(
|
||||||
ui->rb3DOpenGL->setEnabled(false);
|
ui->rb3DOpenGL->setEnabled(false);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifdef __APPLE__
|
||||||
|
ui->rb3DCompute->setEnabled(false);
|
||||||
|
#endif
|
||||||
|
|
||||||
ui->cbGLDisplay->setChecked(Config::ScreenUseGL != 0);
|
ui->cbGLDisplay->setChecked(Config::ScreenUseGL != 0);
|
||||||
|
|
||||||
ui->cbVSync->setChecked(Config::ScreenVSync != 0);
|
ui->cbVSync->setChecked(Config::ScreenVSync != 0);
|
||||||
|
|
Loading…
Reference in New Issue