mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Prevent selecting Vulkan renderer in Qt frontend and present a message
This commit is contained in:
parent
7257f34ff5
commit
1b0c08cad2
1 changed files with 12 additions and 2 deletions
|
@ -190,8 +190,18 @@ ConfigWindow::ConfigWindow(ConfigCallback configCallback, MainWindowCallback win
|
||||||
rendererType->addItem(tr("Vulkan"));
|
rendererType->addItem(tr("Vulkan"));
|
||||||
rendererType->setCurrentIndex(static_cast<int>(config.rendererType));
|
rendererType->setCurrentIndex(static_cast<int>(config.rendererType));
|
||||||
connect(rendererType, &QComboBox::currentIndexChanged, this, [&](int index) {
|
connect(rendererType, &QComboBox::currentIndexChanged, this, [&](int index) {
|
||||||
config.rendererType = static_cast<RendererType>(index);
|
auto type = static_cast<RendererType>(index);
|
||||||
updateConfig();
|
|
||||||
|
if (type == RendererType::Vulkan) {
|
||||||
|
QMessageBox messageBox(
|
||||||
|
QMessageBox::Icon::Critical, tr("Vulkan renderer unavailable"),
|
||||||
|
tr("Qt UI doesn't currently support Vulkan, try again at a later time")
|
||||||
|
);
|
||||||
|
messageBox.exec();
|
||||||
|
} else {
|
||||||
|
config.rendererType = type;
|
||||||
|
updateConfig();
|
||||||
|
}
|
||||||
});
|
});
|
||||||
gpuLayout->addRow(tr("GPU renderer"), rendererType);
|
gpuLayout->addRow(tr("GPU renderer"), rendererType);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue