1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
mod images;
mod render_pass;
mod selection;
use crate::graphics::vulkan::{Device, WindowSurface};
use anyhow::{Context, Result};
use ash::{extensions::khr, version::DeviceV1_0, vk};
use std::sync::Arc;
pub struct Swapchain {
pub swapchain_loader: khr::Swapchain,
pub swapchain: vk::SwapchainKHR,
pub framebuffers: Vec<vk::Framebuffer>,
swapchain_image_views: Vec<vk::ImageView>,
pub render_pass: vk::RenderPass,
pub extent: vk::Extent2D,
pub format: vk::Format,
pub color_space: vk::ColorSpaceKHR,
device: Arc<Device>,
}
impl Swapchain {
pub fn new(
device: Arc<Device>,
window_surface: &dyn WindowSurface,
previous: Option<&Swapchain>,
) -> Result<Arc<Self>> {
let image_format = selection::choose_surface_format(
window_surface,
&device.physical_device,
);
let present_mode = selection::choose_present_mode(
window_surface,
&device.physical_device,
);
let extent = selection::choose_swap_extent(
window_surface,
&device.physical_device,
)?;
let image_count = selection::choose_image_count(
window_surface,
&device.physical_device,
)?;
let mut create_info = vk::SwapchainCreateInfoKHR {
surface: unsafe { window_surface.get_surface_handle() },
image_format: image_format.format,
image_color_space: image_format.color_space,
image_extent: extent,
min_image_count: image_count,
image_array_layers: 1,
image_usage: vk::ImageUsageFlags::COLOR_ATTACHMENT,
present_mode,
composite_alpha: vk::CompositeAlphaFlagsKHR::OPAQUE,
pre_transform: vk::SurfaceTransformFlagsKHR::IDENTITY,
old_swapchain: if let Some(old_swapchain) = previous {
old_swapchain.swapchain
} else {
vk::SwapchainKHR::null()
},
clipped: 1,
..Default::default()
};
let indices = &[
device.graphics_queue.family_id,
device.present_queue.family_id,
];
if device.present_queue.is_same(&device.graphics_queue) {
create_info.image_sharing_mode = vk::SharingMode::EXCLUSIVE;
} else {
create_info.image_sharing_mode = vk::SharingMode::CONCURRENT;
create_info.p_queue_family_indices = indices.as_ptr();
create_info.queue_family_index_count = indices.len() as u32;
};
let swapchain_loader = device.create_swapchain_loader();
let swapchain =
unsafe { swapchain_loader.create_swapchain(&create_info, None)? };
let swapchain_images = unsafe {
swapchain_loader
.get_swapchain_images(swapchain)
.context("unable to get swapchain images")?
};
let render_pass = render_pass::create_render_pass(
device.as_ref(),
image_format.format,
)?;
let swapchain_image_views = images::create_image_views(
device.as_ref(),
image_format.format,
&swapchain_images,
)?;
let framebuffers = images::create_framebuffers(
device.as_ref(),
&swapchain_image_views,
render_pass,
extent,
)?;
Ok(Arc::new(Self {
swapchain_loader,
swapchain,
render_pass,
swapchain_image_views,
framebuffers,
extent,
format: image_format.format,
color_space: image_format.color_space,
device,
}))
}
pub fn rebuild(
&self,
window_surface: &dyn WindowSurface,
) -> Result<Arc<Self>> {
Self::new(self.device.clone(), window_surface, Some(&self))
}
}
impl Drop for Swapchain {
fn drop(&mut self) {
unsafe {
self.device
.logical_device
.queue_wait_idle(self.device.graphics_queue.raw())
.expect("wait for graphics queue to drain");
self.device
.logical_device
.queue_wait_idle(self.device.present_queue.raw())
.expect("wait for presentation queue to drain");
self.device
.logical_device
.device_wait_idle()
.expect("wait for device to idle");
let logical_device = &self.device.logical_device;
self.framebuffers.drain(..).for_each(|framebuffer| {
logical_device.destroy_framebuffer(framebuffer, None);
});
self.swapchain_image_views.drain(..).for_each(|view| {
logical_device.destroy_image_view(view, None);
});
self.device
.logical_device
.destroy_render_pass(self.render_pass, None);
self.swapchain_loader
.destroy_swapchain(self.swapchain, None);
}
}
}