vulkan_lib/vulkan-rs/src/commandpool.rs

89 lines
2.1 KiB
Rust
Raw Normal View History

2023-01-14 12:03:01 +00:00
use crate::prelude::*;
use anyhow::Result;
use std::sync::Arc;
pub(crate) struct CommandPoolBuilder {
flags: VkCommandPoolCreateFlagBits,
queue_family_index: u32,
}
impl CommandPoolBuilder {
pub(crate) fn set_flags(mut self, flags: impl Into<VkCommandPoolCreateFlagBits>) -> Self {
self.flags = flags.into();
self
}
pub(crate) fn set_queue_family_index(mut self, queue_family_index: u32) -> Self {
self.queue_family_index = queue_family_index;
self
}
pub(crate) fn build(self, device: Arc<Device>) -> Result<Arc<CommandPool>> {
let command_pool_ci = VkCommandPoolCreateInfo::new(self.flags, self.queue_family_index);
let command_pool = device.create_command_pool(&command_pool_ci)?;
Ok(Arc::new(CommandPool {
device,
command_pool,
}))
}
}
#[derive(Debug)]
pub(crate) struct CommandPool {
device: Arc<Device>,
command_pool: VkCommandPool,
}
impl CommandPool {
pub(crate) fn builder() -> CommandPoolBuilder {
CommandPoolBuilder {
flags: VK_COMMAND_POOL_CREATE_RESET_COMMAND_BUFFER_BIT
| VK_COMMAND_POOL_CREATE_TRANSIENT_BIT,
queue_family_index: 0,
}
}
}
impl VulkanDevice for CommandPool {
fn device(&self) -> &Arc<Device> {
&self.device
}
}
impl_vk_handle!(CommandPool, VkCommandPool, command_pool);
impl Drop for CommandPool {
fn drop(&mut self) {
self.device.destroy_command_pool(self.command_pool);
}
}
// use crate::{ffi::*, handle_ffi_result};
// #[no_mangle]
// pub extern "C" fn create_command_pool(
// flags: VkCommandPoolCreateFlagBits,
// queue_family_index: u32,
// device: *const Device,
// ) -> *const CommandPool {
// let device = unsafe { Arc::from_raw(device) };
// let pool_res = CommandPool::builder()
// .set_flags(flags)
// .set_queue_family_index(queue_family_index)
// .build(device);
// handle_ffi_result!(pool_res)
// }
// #[no_mangle]
// pub extern "C" fn destroy_command_pool(command_pool: *const CommandPool) {
// let _pool = unsafe { Arc::from_raw(command_pool) };
// }