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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
use {
crate::graphics::{vulkan_api::RenderDevice, GraphicsError},
anyhow::Context,
ash::{extensions, vk},
ccthw_ash_instance::VulkanHandle,
std::sync::Arc,
};
mod acquire_present;
mod selection;
pub use self::acquire_present::SwapchainStatus;
pub struct Swapchain {
images: Vec<vk::Image>,
extent: vk::Extent2D,
format: vk::SurfaceFormatKHR,
present_mode: vk::PresentModeKHR,
swapchain: vk::SwapchainKHR,
swapchain_loader: extensions::khr::Swapchain,
render_device: Arc<RenderDevice>,
}
impl Swapchain {
pub unsafe fn new(
render_device: Arc<RenderDevice>,
framebuffer_size: (u32, u32),
previous_swapchain: Option<Self>,
) -> Result<Self, GraphicsError> {
let format =
Self::choose_surface_format(&render_device.get_surface_formats()?)?;
let present_mode =
Self::choose_presentation_mode(&render_device.get_present_modes()?);
let capabilities = render_device.get_surface_capabilities()?;
let extent =
Self::choose_swapchain_extent(capabilities, framebuffer_size);
let min_image_count = Self::choose_image_count(capabilities);
let mut create_info = vk::SwapchainCreateInfoKHR {
surface: *render_device.surface(),
min_image_count,
image_format: format.format,
image_color_space: format.color_space,
image_extent: extent,
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 previous_swapchain.is_some() {
*previous_swapchain.as_ref().unwrap().raw()
} else {
vk::SwapchainKHR::null()
},
clipped: vk::TRUE,
..Default::default()
};
let indices = vec![
render_device.graphics_queue().family_index(),
render_device.presentation_queue().family_index(),
];
if indices[0] == indices[1] {
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;
}
log::trace!(
"Using image sharing mode {:?}",
create_info.image_sharing_mode
);
let swapchain_loader = extensions::khr::Swapchain::new(
render_device.ash(),
render_device.device(),
);
let swapchain = unsafe {
swapchain_loader
.create_swapchain(&create_info, None)
.context("Error creating the swapchain!")?
};
let images = unsafe {
swapchain_loader
.get_swapchain_images(swapchain)
.context("Error getting swapchain images!")?
};
Ok(Self {
images,
extent,
format,
present_mode,
swapchain,
swapchain_loader,
render_device,
})
}
pub unsafe fn images(&self) -> &[vk::Image] {
&self.images
}
pub fn image_format(&self) -> vk::Format {
self.format.format
}
pub fn extent(&self) -> vk::Extent2D {
self.extent
}
pub fn present_mode(&self) -> vk::PresentModeKHR {
self.present_mode
}
}
impl Drop for Swapchain {
fn drop(&mut self) {
unsafe {
self.swapchain_loader
.destroy_swapchain(self.swapchain, None);
}
}
}
impl std::fmt::Debug for Swapchain {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Swapchain")
.field("images", &self.images)
.field("extent", &self.extent)
.field("format", &self.format)
.field("present_mode", &self.present_mode)
.finish()
}
}
impl std::fmt::Display for Swapchain {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.write_fmt(format_args!("{self:#?}"))
}
}
impl VulkanHandle for Swapchain {
type Handle = vk::SwapchainKHR;
unsafe fn raw(&self) -> &Self::Handle {
&self.swapchain
}
}