Skip to content
Snippets Groups Projects
Commit 0e819a64 authored by Andreas Traczyk's avatar Andreas Traczyk
Browse files

vulkan(Windows): verify layer VK_LAYER_KHRONOS_validation exists

Add a supplementary check after calling QVulkanInstance::create to
make sure the requested validation layer was created.

Gitlab: #746
Change-Id: Ibe3004fa1a1a38401be8625aaea34e0bef185d0a
parent c7fdf3ff
No related branches found
No related tags found
No related merge requests found
......@@ -119,12 +119,21 @@ main(int argc, char* argv[])
#if defined(HAS_VULKAN) && !defined(Q_OS_LINUX)
QVulkanInstance inst;
inst.setLayers({"VK_LAYER_KHRONOS_validation"});
return inst.create();
bool ok = inst.create();
if (!ok) {
qWarning() << "QVulkanInstance cannot be created.";
return false;
}
if (!inst.layers().contains("VK_LAYER_KHRONOS_validation")) {
qWarning() << "VK_LAYER_KHRONOS_validation layer is not available.";
return false;
}
return true;
#else
return false;
#endif
})
&& qgetenv("WAYLAND_DISPLAY").isEmpty()) {
&& qEnvironmentVariableIsEmpty("WAYLAND_DISPLAY")) {
// https://bugreports.qt.io/browse/QTBUG-99684 - Vulkan on
// Wayland is not really supported as window decorations are
// removed. So we need to re-implement this (custom controls)
......
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