Add logs of physical devices
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s

This commit is contained in:
Florian RICHER 2024-11-07 17:18:10 +01:00
parent 06cc558baf
commit 56ad167b0f
5 changed files with 12 additions and 4 deletions

View file

@ -4,6 +4,7 @@ use winit::raw_window_handle::{HasDisplayHandle};
use crate::vulkan::VkPhysicalDevice;
pub struct VkInstance {
entry: Entry,
handle: Instance,
}
@ -57,6 +58,7 @@ impl VkInstance {
};
Self {
entry,
handle: instance
}
}