Skip to content
Snippets Groups Projects
Commit a3b03470 authored by Sebastian Gaida's avatar Sebastian Gaida
Browse files

[#61] added error message to QueueManager

parent 55fa52aa
Branches
Tags
1 merge request!46Resolve "Queues-Abfragen anpassen für Intel HD Graphics"
Pipeline #25478 passed
#include <limits>
#include <unordered_set>
#include <iostream>
#include "vkcv/QueueManager.hpp"
......@@ -94,6 +95,7 @@ namespace vkcv {
found = true;
}
}
std::cerr << "Warning: not enought \"" << vk::to_string(qFlag) << "\"-Queues." << std::endl;
}
break;
case vk::QueueFlagBits::eCompute:
......@@ -114,6 +116,7 @@ namespace vkcv {
found = true;
}
}
std::cerr << "Warning: not enought \"" << vk::to_string(qFlag) << "\"-Queues." << std::endl;
}
break;
case vk::QueueFlagBits::eTransfer:
......@@ -134,6 +137,7 @@ namespace vkcv {
found = true;
}
}
std::cerr << "Warning: not enought \"" << vk::to_string(qFlag) << "\"-Queues." << std::endl;
}
break;
default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment