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
use std::sync::Arc;

use erupt::vk;

use crate::{context::Context, memory_allocator::MemoryAllocator, Lifetime};

/// Wraps an image.
#[derive(Debug)]
pub struct Image<LT: Lifetime> {
    raw: vk::Image,
    allocation: vk_alloc::Allocation<LT>,
    memory_allocator: Arc<MemoryAllocator<LT>>,
    context: Arc<Context>,
}

impl<LT: Lifetime> Drop for Image<LT> {
    fn drop(&mut self) {
        unsafe {
            self.context.device.destroy_image(Some(self.raw), None);
            self.memory_allocator
                .allocator
                .deallocate(&self.context.device, &self.allocation)
                .expect("can't free image allocation");
        };
    }
}

impl<LT: Lifetime> Image<LT> {
    pub(crate) fn new(
        raw: vk::Image,
        allocation: vk_alloc::Allocation<LT>,
        memory_allocator: Arc<MemoryAllocator<LT>>,
        context: Arc<Context>,
    ) -> Self {
        Self {
            raw,
            allocation,
            memory_allocator,
            context,
        }
    }

    /// The raw Vulkan image handle.
    #[inline]
    pub fn raw(&self) -> vk::Image {
        self.raw
    }
}

/// Wraps an image view.
#[derive(Debug)]
pub struct ImageView {
    raw: vk::ImageView,
    context: Arc<Context>,
}

impl Drop for ImageView {
    fn drop(&mut self) {
        unsafe {
            self.context.device.destroy_image_view(Some(self.raw), None);
        };
    }
}

impl ImageView {
    pub(crate) fn new(raw: vk::ImageView, context: Arc<Context>) -> Self {
        Self { raw, context }
    }

    /// The raw Vulkan image view handle.
    #[inline]
    pub fn raw(&self) -> vk::ImageView {
        self.raw
    }
}

/// Wraps a sampler.
#[derive(Debug)]
pub struct Sampler {
    raw: vk::Sampler,
    context: Arc<Context>,
}

impl Drop for Sampler {
    fn drop(&mut self) {
        unsafe {
            self.context.device.destroy_sampler(Some(self.raw), None);
        };
    }
}

impl Sampler {
    pub(crate) fn new(raw: vk::Sampler, context: Arc<Context>) -> Self {
        Self { raw, context }
    }

    /// The raw Vulkan sampler handle.
    #[inline]
    pub fn raw(&self) -> vk::Sampler {
        self.raw
    }
}