Added manager tests

This commit is contained in:
Alejandro Saucedo 2020-08-28 17:09:17 +01:00
parent 46a0393b44
commit 85f43c5c8e
4 changed files with 250 additions and 39 deletions

View file

@ -22,9 +22,12 @@ class Manager
*/
Manager();
Manager(uint32_t physicalDeviceIndex);
Manager(std::shared_ptr<vk::Instance> instance,
std::shared_ptr<vk::Device>,
uint32_t queueIndex);
std::shared_ptr<vk::PhysicalDevice> physicalDevice,
std::shared_ptr<vk::Device> device,
uint32_t physicalDeviceIndex);
~Manager();