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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
//! Command buffer types
use {
super::{DriverError, device::Device, fence::Fence},
ash::vk::{self, Handle as _},
derive_builder::Builder,
log::warn,
std::{
fmt::{Debug, Formatter},
slice,
thread::panicking,
},
};
// TODO: Expose command functions so the fence, device, waiting flags do not
// need to be public
/// Represents a Vulkan command buffer allocation.
///
/// See [`VkCommandBuffer`](https://registry.khronos.org/vulkan/specs/latest/man/html/VkCommandBuffer.html).
#[read_only::cast]
pub struct CommandBuffer {
/// The device which owns this command buffer resource.
///
/// _Note:_ This field is read-only.
#[readonly]
pub device: Device,
/// The native Vulkan resource handle of this command buffer.
///
/// _Note:_ This field is read-only.
#[readonly]
pub handle: vk::CommandBuffer,
/// Information used to create this object.
#[readonly]
pub info: CommandBufferInfo,
pub(crate) pool: vk::CommandPool,
release_semaphore: Option<vk::Semaphore>,
}
impl CommandBuffer {
/// Begins recording this command buffer.
///
/// This is a thin wrapper around [`ash::Device::begin_command_buffer`] that maps Vulkan errors
/// to [`DriverError`] variants.
///
/// See [`vkBeginCommandBuffer`](https://registry.khronos.org/vulkan/specs/latest/man/html/vkBeginCommandBuffer.html).
pub fn begin(&self, info: &vk::CommandBufferBeginInfo) -> Result<(), DriverError> {
Device::begin_command_buffer(&self.device, self.handle, info)
}
/// Creates a command buffer allocation backed by a transient resettable command pool.
///
/// See [`vkAllocateCommandBuffers`](https://registry.khronos.org/vulkan/specs/latest/man/html/vkAllocateCommandBuffers.html).
#[profiling::function]
pub fn create(
device: &Device,
info: impl Into<CommandBufferInfo>,
) -> Result<Self, DriverError> {
let info = info.into();
let device = device.clone();
let pool = unsafe {
device.create_command_pool(
&vk::CommandPoolCreateInfo::default()
.flags(
vk::CommandPoolCreateFlags::TRANSIENT
| vk::CommandPoolCreateFlags::RESET_COMMAND_BUFFER,
)
.queue_family_index(info.queue_family_index),
None,
)
}
.map_err(|err| {
warn!("unable to create command pool: {err}");
match err {
vk::Result::ERROR_OUT_OF_DEVICE_MEMORY | vk::Result::ERROR_OUT_OF_HOST_MEMORY => {
DriverError::OutOfMemory
}
_ => DriverError::Unsupported,
}
})?;
let handle = unsafe {
device.allocate_command_buffers(
&vk::CommandBufferAllocateInfo::default()
.command_buffer_count(1)
.command_pool(pool)
.level(vk::CommandBufferLevel::PRIMARY),
)
}
.map_err(|err| {
warn!("unable to allocate command buffer: {err}");
match err {
vk::Result::ERROR_OUT_OF_DEVICE_MEMORY | vk::Result::ERROR_OUT_OF_HOST_MEMORY => {
DriverError::OutOfMemory
}
_ => DriverError::Unsupported,
}
})?
.into_iter()
.find(|handle| !handle.is_null())
.ok_or_else(|| {
warn!("missing command buffer handle");
DriverError::Unsupported
})?;
Ok(Self {
device,
handle,
info,
pool,
release_semaphore: None,
})
}
/// Ends recording this command buffer.
///
/// This is a thin wrapper around [`ash::Device::end_command_buffer`] that maps Vulkan errors
/// to [`DriverError`] variants.
///
/// See [`vkEndCommandBuffer`](https://registry.khronos.org/vulkan/specs/latest/man/html/vkEndCommandBuffer.html).
pub fn end(&self) -> Result<(), DriverError> {
Device::end_command_buffer(&self.device, self.handle)
}
/// Ends recording a render pass.
pub fn end_render_pass(&self) {
unsafe {
self.device.cmd_end_render_pass(self.handle);
}
}
/// Submits command buffers to a queue using `fence`.
///
/// This method does not begin, end, or reset `self` or `fence`. Callers are expected to
/// submit only executable command buffers and to manage fence waits and resets as needed.
///
/// Typical handling is:
///
/// 1. Begin recording with [`Self::begin`].
/// 2. Record commands.
/// 3. End recording with [`Self::end`].
/// 4. Submit this command buffer with `queue_submit`.
/// 5. Later, check or wait for completion with [`Fence::status`] or [`Fence::wait`].
/// 6. Before re-submitting this same command buffer, reset the fence with [`Fence::reset`],
/// then begin recording again.
///
/// See [`vkQueueSubmit`](https://registry.khronos.org/vulkan/specs/latest/man/html/vkQueueSubmit.html).
pub fn queue_submit(
&self,
queue: vk::Queue,
fence: &mut Fence,
submits: &[vk::SubmitInfo],
) -> Result<(), DriverError> {
Device::queue_submit(&self.device, queue, submits, fence.handle)?;
fence.mark_queued();
Ok(())
}
/// Submits command buffers to a queue using `vkQueueSubmit2` (Vulkan 1.3 core or
/// `VK_KHR_synchronization2`).
///
/// See [`vkQueueSubmit2`](https://registry.khronos.org/vulkan/specs/latest/man/html/vkQueueSubmit2.html)
/// and [`VK_KHR_synchronization2`](https://registry.khronos.org/vulkan/specs/latest/man/html/VK_KHR_synchronization2.html).
pub fn queue_submit2(
&self,
queue: vk::Queue,
fence: &mut Fence,
submits: &[vk::SubmitInfo2],
) -> Result<(), DriverError> {
Device::queue_submit2(&self.device, queue, submits, fence.handle)?;
fence.mark_queued();
Ok(())
}
/// Returns a cached semaphore used to signal temporary queue-ownership release submissions.
///
/// The semaphore is created lazily on first use and then reused with this command buffer for
/// subsequent release submissions.
pub(crate) fn release_semaphore(&mut self) -> Result<vk::Semaphore, DriverError> {
if let Some(semaphore) = self.release_semaphore {
return Ok(semaphore);
}
let semaphore = Device::create_semaphore(&self.device)?;
Device::try_set_debug_utils_object_name(&self.device, semaphore, "queue ownership release");
self.release_semaphore = Some(semaphore);
Ok(semaphore)
}
/// Sets the debugging name assigned to this command buffer.
pub fn set_debug_name(&self, name: impl AsRef<str>) {
Device::try_set_debug_utils_object_name(&self.device, self.handle, &name);
Device::try_set_private_data_object_name(
&self.device,
vk::ObjectType::COMMAND_BUFFER,
self.handle,
&name,
);
}
/// Sets the debugging name assigned to this command buffer.
pub fn with_debug_name(self, name: impl AsRef<str>) -> Self {
self.set_debug_name(name);
self
}
}
impl AsRef<CommandBuffer> for CommandBuffer {
fn as_ref(&self) -> &CommandBuffer {
self
}
}
impl Debug for CommandBuffer {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
let mut res = f.debug_struct(stringify!(CommandBuffer));
if let Some(debug_name) = &Device::private_data_object_name(
&self.device,
vk::ObjectType::COMMAND_BUFFER,
self.handle,
) {
res.field("debug_name", debug_name);
}
res.field("handle", &self.handle).finish_non_exhaustive()
}
}
impl Drop for CommandBuffer {
#[profiling::function]
fn drop(&mut self) {
if panicking() {
return;
}
Device::try_clear_private_data_object_name(
&self.device,
vk::ObjectType::COMMAND_BUFFER,
self.handle,
);
unsafe {
if let Some(semaphore) = self.release_semaphore.take() {
self.device.destroy_semaphore(semaphore, None);
}
self.device
.free_command_buffers(self.pool, slice::from_ref(&self.handle));
self.device.destroy_command_pool(self.pool, None);
}
}
}
/// Information used to create a [`CommandBuffer`] instance.
#[derive(Builder, Clone, Copy, Debug, Default, Eq, Hash, PartialEq)]
#[builder(
build_fn(private, name = "fallible_build"),
derive(Clone, Copy, Debug),
pattern = "owned"
)]
pub struct CommandBufferInfo {
/// Designates the queue family used by the command pool that allocates this command buffer.
///
/// See [`VkCommandPoolCreateInfo`](https://registry.khronos.org/vulkan/specs/latest/man/html/VkCommandPoolCreateInfo.html).
#[builder(default)]
pub queue_family_index: u32,
}
impl CommandBufferInfo {
/// Creates command buffer allocation info for the given queue family.
pub fn new(queue_family_index: u32) -> Self {
Self { queue_family_index }
}
}
impl CommandBufferInfo {
/// Creates a default `CommandBufferInfoBuilder`.
pub fn builder() -> CommandBufferInfoBuilder {
Default::default()
}
/// Converts a `CommandBufferInfo` into a `CommandBufferInfoBuilder`.
pub fn into_builder(self) -> CommandBufferInfoBuilder {
CommandBufferInfoBuilder {
queue_family_index: Some(self.queue_family_index),
}
}
}
impl From<CommandBufferInfoBuilder> for CommandBufferInfo {
fn from(info: CommandBufferInfoBuilder) -> Self {
info.build()
}
}
impl CommandBufferInfoBuilder {
/// Builds a new `CommandBufferInfo`.
#[inline(always)]
pub fn build(self) -> CommandBufferInfo {
self.fallible_build().expect("invalid command buffer info")
}
}
#[cfg(test)]
mod test {
use super::*;
type Info = CommandBufferInfo;
type Builder = CommandBufferInfoBuilder;
#[test]
pub fn command_buffer_info() {
let info = Info::new(3);
let builder = info.into_builder().build();
assert_eq!(info, builder);
}
#[test]
pub fn command_buffer_info_builder_default_queue_family_index() {
assert_eq!(Builder::default().build(), Info::new(0));
}
}