Add swapchain (work in progress)
Some checks failed
Build legacy Nix package on Ubuntu / build (push) Failing after 0s

This commit is contained in:
Florian RICHER 2024-11-12 22:01:08 +01:00
parent caa79270db
commit ee8b886aec
Signed by: florian.richer
GPG key ID: C73D37CBED7BFC77
7 changed files with 139 additions and 13 deletions

View file

@ -2,7 +2,7 @@ use ash::vk;
use crate::vulkan::{VkInstance, VkPhysicalDevice};
pub struct VkDevice {
handle: ash::Device,
pub(crate) handle: ash::Device,
queue_family_index: u32
}