This commit is contained in:
zomseffen 2024-04-27 16:40:24 +02:00
parent b5d3864d01
commit fdac5a97a1
4 changed files with 95 additions and 9 deletions

View file

@ -57,4 +57,9 @@ pub struct AppData {
pub depth_image: vk::Image,
pub depth_image_memory: vk::DeviceMemory,
pub depth_image_view: vk::ImageView,
pub msaa_samples: vk::SampleCountFlags,
pub color_image: vk::Image,
pub color_image_memory: vk::DeviceMemory,
pub color_image_view: vk::ImageView,
}