use super::{
sys::{Image, ImageMemory, RawImage},
traits::ImageContent,
ImageAccess, ImageCreateFlags, ImageDescriptorLayouts, ImageDimensions, ImageError, ImageInner,
ImageLayout, ImageUsage,
};
use crate::{
device::{Device, DeviceOwned, Queue},
format::Format,
image::{sys::ImageCreateInfo, view::ImageView, ImageFormatInfo},
memory::{
allocator::{
AllocationCreateInfo, AllocationType, MemoryAllocatePreference, MemoryAllocator,
MemoryUsage,
},
DedicatedAllocation, DeviceMemoryError, ExternalMemoryHandleType,
ExternalMemoryHandleTypes,
},
sync::Sharing,
DeviceSize,
};
use smallvec::SmallVec;
use std::{
fs::File,
hash::{Hash, Hasher},
sync::Arc,
};
#[derive(Debug)]
pub struct StorageImage {
inner: Arc<Image>,
}
impl StorageImage {
pub fn new(
allocator: &(impl MemoryAllocator + ?Sized),
dimensions: ImageDimensions,
format: Format,
queue_family_indices: impl IntoIterator<Item = u32>,
) -> Result<Arc<StorageImage>, ImageError> {
let aspects = format.aspects();
let is_depth = aspects.depth || aspects.stencil;
if format.compression().is_some() {
panic!() }
let usage = ImageUsage {
transfer_src: true,
transfer_dst: true,
sampled: true,
storage: true,
color_attachment: !is_depth,
depth_stencil_attachment: is_depth,
input_attachment: true,
..ImageUsage::empty()
};
let flags = ImageCreateFlags::empty();
StorageImage::with_usage(
allocator,
dimensions,
format,
usage,
flags,
queue_family_indices,
)
}
pub fn with_usage(
allocator: &(impl MemoryAllocator + ?Sized),
dimensions: ImageDimensions,
format: Format,
usage: ImageUsage,
flags: ImageCreateFlags,
queue_family_indices: impl IntoIterator<Item = u32>,
) -> Result<Arc<StorageImage>, ImageError> {
let queue_family_indices: SmallVec<[_; 4]> = queue_family_indices.into_iter().collect();
assert!(!flags.disjoint);
let raw_image = RawImage::new(
allocator.device().clone(),
ImageCreateInfo {
flags,
dimensions,
format: Some(format),
usage,
sharing: if queue_family_indices.len() >= 2 {
Sharing::Concurrent(queue_family_indices)
} else {
Sharing::Exclusive
},
..Default::default()
},
)?;
let requirements = raw_image.memory_requirements()[0];
let create_info = AllocationCreateInfo {
requirements,
allocation_type: AllocationType::NonLinear,
usage: MemoryUsage::GpuOnly,
allocate_preference: MemoryAllocatePreference::Unknown,
dedicated_allocation: Some(DedicatedAllocation::Image(&raw_image)),
..Default::default()
};
match unsafe { allocator.allocate_unchecked(create_info) } {
Ok(alloc) => {
debug_assert!(alloc.offset() % requirements.alignment == 0);
debug_assert!(alloc.size() == requirements.size);
let inner = Arc::new(unsafe {
raw_image
.bind_memory_unchecked([alloc])
.map_err(|(err, _, _)| err)?
});
Ok(Arc::new(StorageImage { inner }))
}
Err(err) => Err(err.into()),
}
}
pub fn new_with_exportable_fd(
allocator: &(impl MemoryAllocator + ?Sized),
dimensions: ImageDimensions,
format: Format,
usage: ImageUsage,
flags: ImageCreateFlags,
queue_family_indices: impl IntoIterator<Item = u32>,
) -> Result<Arc<StorageImage>, ImageError> {
let queue_family_indices: SmallVec<[_; 4]> = queue_family_indices.into_iter().collect();
assert!(!flags.disjoint);
let external_memory_properties = allocator
.device()
.physical_device()
.image_format_properties(ImageFormatInfo {
flags,
format: Some(format),
image_type: dimensions.image_type(),
usage,
external_memory_handle_type: Some(ExternalMemoryHandleType::OpaqueFd),
..Default::default()
})
.unwrap()
.unwrap()
.external_memory_properties;
assert!(external_memory_properties.exportable);
let external_memory_handle_types = ExternalMemoryHandleTypes {
opaque_fd: true,
..ExternalMemoryHandleTypes::empty()
};
let raw_image = RawImage::new(
allocator.device().clone(),
ImageCreateInfo {
flags,
dimensions,
format: Some(format),
usage,
sharing: if queue_family_indices.len() >= 2 {
Sharing::Concurrent(queue_family_indices)
} else {
Sharing::Exclusive
},
external_memory_handle_types,
..Default::default()
},
)?;
let requirements = raw_image.memory_requirements()[0];
let memory_type_index = allocator
.find_memory_type_index(requirements.memory_type_bits, MemoryUsage::GpuOnly.into())
.expect("failed to find a suitable memory type");
match unsafe {
allocator.allocate_dedicated_unchecked(
memory_type_index,
requirements.size,
Some(DedicatedAllocation::Image(&raw_image)),
external_memory_handle_types,
)
} {
Ok(alloc) => {
debug_assert!(alloc.offset() % requirements.alignment == 0);
debug_assert!(alloc.size() == requirements.size);
let inner = Arc::new(unsafe {
raw_image
.bind_memory_unchecked([alloc])
.map_err(|(err, _, _)| err)?
});
Ok(Arc::new(StorageImage { inner }))
}
Err(err) => Err(err.into()),
}
}
#[inline]
pub fn general_purpose_image_view(
allocator: &(impl MemoryAllocator + ?Sized),
queue: Arc<Queue>,
size: [u32; 2],
format: Format,
usage: ImageUsage,
) -> Result<Arc<ImageView<StorageImage>>, ImageError> {
let dims = ImageDimensions::Dim2d {
width: size[0],
height: size[1],
array_layers: 1,
};
let flags = ImageCreateFlags::empty();
let image_result = StorageImage::with_usage(
allocator,
dims,
format,
usage,
flags,
Some(queue.queue_family_index()),
);
match image_result {
Ok(image) => {
let image_view = ImageView::new_default(image);
match image_view {
Ok(view) => Ok(view),
Err(e) => Err(ImageError::DirectImageViewCreationFailed(e)),
}
}
Err(e) => Err(e),
}
}
#[inline]
pub fn export_posix_fd(&self) -> Result<File, DeviceMemoryError> {
let allocation = match self.inner.memory() {
ImageMemory::Normal(a) => &a[0],
_ => unreachable!(),
};
allocation
.device_memory()
.export_fd(ExternalMemoryHandleType::OpaqueFd)
}
#[inline]
pub fn mem_size(&self) -> DeviceSize {
let allocation = match self.inner.memory() {
ImageMemory::Normal(a) => &a[0],
_ => unreachable!(),
};
allocation.device_memory().allocation_size()
}
}
unsafe impl DeviceOwned for StorageImage {
#[inline]
fn device(&self) -> &Arc<Device> {
self.inner.device()
}
}
unsafe impl ImageAccess for StorageImage {
#[inline]
fn inner(&self) -> ImageInner<'_> {
ImageInner {
image: &self.inner,
first_layer: 0,
num_layers: self.inner.dimensions().array_layers(),
first_mipmap_level: 0,
num_mipmap_levels: 1,
}
}
#[inline]
fn initial_layout_requirement(&self) -> ImageLayout {
ImageLayout::General
}
#[inline]
fn final_layout_requirement(&self) -> ImageLayout {
ImageLayout::General
}
#[inline]
fn descriptor_layouts(&self) -> Option<ImageDescriptorLayouts> {
Some(ImageDescriptorLayouts {
storage_image: ImageLayout::General,
combined_image_sampler: ImageLayout::General,
sampled_image: ImageLayout::General,
input_attachment: ImageLayout::General,
})
}
}
unsafe impl<P> ImageContent<P> for StorageImage {
fn matches_format(&self) -> bool {
true }
}
impl PartialEq for StorageImage {
#[inline]
fn eq(&self, other: &Self) -> bool {
self.inner() == other.inner()
}
}
impl Eq for StorageImage {}
impl Hash for StorageImage {
fn hash<H: Hasher>(&self, state: &mut H) {
self.inner().hash(state);
}
}
#[cfg(test)]
mod tests {
use super::*;
use crate::{image::view::ImageViewCreationError, memory::allocator::StandardMemoryAllocator};
#[test]
fn create() {
let (device, queue) = gfx_dev_and_queue!();
let memory_allocator = StandardMemoryAllocator::new_default(device);
let _img = StorageImage::new(
&memory_allocator,
ImageDimensions::Dim2d {
width: 32,
height: 32,
array_layers: 1,
},
Format::R8G8B8A8_UNORM,
Some(queue.queue_family_index()),
)
.unwrap();
}
#[test]
fn create_general_purpose_image_view() {
let (device, queue) = gfx_dev_and_queue!();
let memory_allocator = StandardMemoryAllocator::new_default(device);
let usage = ImageUsage {
transfer_src: true,
transfer_dst: true,
color_attachment: true,
..ImageUsage::empty()
};
let img_view = StorageImage::general_purpose_image_view(
&memory_allocator,
queue,
[32, 32],
Format::R8G8B8A8_UNORM,
usage,
)
.unwrap();
assert_eq!(img_view.image().usage(), &usage);
}
#[test]
fn create_general_purpose_image_view_failed() {
let (device, queue) = gfx_dev_and_queue!();
let memory_allocator = StandardMemoryAllocator::new_default(device);
let usage = ImageUsage {
transfer_src: true,
..ImageUsage::empty()
};
let img_result = StorageImage::general_purpose_image_view(
&memory_allocator,
queue,
[32, 32],
Format::R8G8B8A8_UNORM,
usage,
);
assert_eq!(
img_result,
Err(ImageError::DirectImageViewCreationFailed(
ImageViewCreationError::ImageMissingUsage
))
);
}
}