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
use std::ffi::c_void;

use crate::TextureFormat;
use crate::ColorFormat;
use crate::ComponentFormat;
use crate::Texture;
use crate::Resource;

pub struct Texture3D {
    id : u32,
    format: TextureFormat
}

impl Texture3D {
    fn new() -> Self {
        let mut id = 0;
        unsafe {
            gl::GenTextures(1, &mut id);
        }
        Self {
            id : id,
            format: TextureFormat::new(ColorFormat::RGBA, ComponentFormat::F32)
        }
    }

    pub fn get_dimension(&self) -> (usize, usize, usize) {
        (self.get_width(), self.get_height(), self.get_depth())
    }

    pub fn get_width(&self) -> usize {
        unsafe {
            let mut width = 0;
            gl::GetTexLevelParameteriv(gl::TEXTURE_3D, 0, gl::TEXTURE_WIDTH, &mut width);
            width as usize
        }
    }

    pub fn get_height(&self) -> usize {
        unsafe {
            let mut height = 0;
            gl::GetTexLevelParameteriv(gl::TEXTURE_3D, 0, gl::TEXTURE_HEIGHT, &mut height);
            height as usize
        }
    }

    pub fn get_depth(&self) -> usize {
        unsafe {
            let mut depth = 0;
            gl::GetTexLevelParameteriv(gl::TEXTURE_3D, 0, gl::TEXTURE_DEPTH, &mut depth);
            depth as usize
        }
    }

    pub fn allocate(dimension: (usize, usize, usize), format: &TextureFormat) -> Self {
        let mut texture = Self::new();
        texture.reallocate(dimension, &format);
        texture
    }

    pub fn from_data<T>(dimension: (usize, usize, usize), format: &TextureFormat, data: &[T], data_format: &TextureFormat) -> Self {
        let mut texture = Self::new();
        texture.set_data(dimension, &format, data, &data_format);
        texture
    }

    pub fn reallocate(&mut self, dimension: (usize, usize, usize), format: &TextureFormat) {
        self.format = format.clone();
        unsafe {
            gl::BindTexture(gl::TEXTURE_3D, self.id);
            gl::TexStorage3D(gl::TEXTURE_3D, 1, format.get_internal_format(), dimension.0 as i32, dimension.1 as i32, dimension.2 as i32);
        }
    }

    pub fn set_data<T>(&mut self, dimension: (usize, usize, usize), format: &TextureFormat, data: &[T], data_format: &TextureFormat) {
        self.format = format.clone();
        unsafe {
            gl::BindTexture(gl::TEXTURE_3D, self.id);
            let (color, ty) = data_format.get_format_type();
            gl::TexImage3D(gl::TEXTURE_3D, 0, format.get_internal_format() as i32, dimension.0 as i32, dimension.1 as i32, dimension.2 as i32, 0, color, ty, &data[0] as *const T as *const c_void);
        }
    }

    pub fn get_data<T>(&self) -> Vec<T> {
        let capacity = self.get_width() * self.get_height() * self.get_depth() * self.get_format().get_color_format().get_size();
        let mut data : Vec<T> = Vec::with_capacity(capacity);
        unsafe {
            data.set_len(capacity);

            gl::ActiveTexture(gl::TEXTURE0);
            gl::BindTexture(gl::TEXTURE_3D, self.get_id());
            let (format, ty) = self.format.get_format_type();
            gl::GetTexImage(gl::TEXTURE_3D, 0, format, ty, data.as_mut_ptr() as *mut c_void);

        }
        data
    }
}

impl Drop for Texture3D {
    fn drop(&mut self) {
        unsafe {
            gl::DeleteTextures(1, &mut self.id);
        }
    }
}

impl Resource for Texture3D {
    fn get_id(&self) -> u32 { self.id }
}

impl Texture for Texture3D {
    fn get_type(&self) -> u32 { gl::TEXTURE_3D }
    fn get_format(&self) -> &TextureFormat { &self.format }
}

#[cfg(test)]
mod tests {
    use crate::{ContextBuilder, ContextDisplay, initialize, Texture, Texture3D, TextureFormat, ColorFormat, ComponentFormat};

    #[test]
    fn allocation() {
        let context_builder = ContextBuilder::new().with_display(ContextDisplay::None);
        let mut context = context_builder.build();

        context.make_current().unwrap();
        initialize(|symbol| context.get_proc_address(symbol) as *const _);

        let dimension = (111, 222, 333);
        let texture = Texture3D::allocate(dimension, &TextureFormat(ColorFormat::RGBA, ComponentFormat::U8));
        assert_eq!(texture.get_dimension(), dimension);
    }

    #[test]
    fn from_data() {
        let context_builder = ContextBuilder::new().with_display(ContextDisplay::None);
        let mut context = context_builder.build();

        context.make_current().unwrap();
        initialize(|symbol| context.get_proc_address(symbol) as *const _);

        let mut data_in : Vec<f32> = Vec::new();
        let dimension = (8, 8, 8);
        let components = 2;
        for x in 0..dimension.0 {
            for y in 0..dimension.1 {
                for z in 0..dimension.2 {
                    for w in 1..(components+1) {
                        data_in.push((w * (dimension.1 * (y * dimension.0 + x) + z)) as f32);
                    }
                }
            }
        }

        let data_in_format = TextureFormat(ColorFormat::components(components), ComponentFormat::F32);
        let texture = Texture3D::from_data(dimension, &data_in_format, &data_in, &data_in_format);

        assert_eq!(components, texture.get_format().get_color_format().get_size());
        assert_eq!(dimension, texture.get_dimension());

        let data_out = texture.get_data();

        assert_eq!(data_in, data_out);
    }
}