2 #include <msp/core/raii.h>
3 #include <msp/gl/extensions/arb_direct_state_access.h>
4 #include <msp/gl/extensions/arb_texture_storage.h>
5 #include <msp/gl/extensions/ext_texture3d.h>
6 #include <msp/gl/extensions/ext_texture_array.h>
7 #include <msp/graphics/image.h>
10 #include "pixelstore.h"
11 #include "texture3d.h"
18 Texture3D::Texture3D(GLenum t):
26 Texture3D::Texture3D():
27 Texture(GL_TEXTURE_3D),
33 static Require _req(EXT_texture3D);
36 void Texture3D::storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp, unsigned lv)
39 throw invalid_operation("Texture3D::storage");
40 if(wd==0 || ht==0 || dp==0)
41 throw invalid_argument("Texture3D::storage");
43 set_internal_format(fmt);
47 levels = get_n_levels();
49 levels = min(levels, lv);
52 void Texture3D::allocate(unsigned level)
54 if(width==0 || height==0 || depth==0)
55 throw invalid_operation("Texture3D::allocate");
57 throw invalid_argument("Texture3D::allocate");
58 if(allocated&(1<<level))
61 if(ARB_texture_storage)
63 if(ARB_direct_state_access)
64 glTextureStorage3D(id, levels, ifmt, width, height, depth);
67 BindRestore _bind(this);
68 glTexStorage3D(target, levels, ifmt, width, height, depth);
70 allocated |= (1<<levels)-1;
74 PixelFormat base_fmt = get_base_pixelformat(ifmt);
75 image(level, base_fmt, get_alloc_type(base_fmt), 0);
79 void Texture3D::image(unsigned level, PixelFormat fmt, DataType type, const void *data)
81 if(width==0 || height==0 || depth==0)
82 throw invalid_operation("Texture3D::image");
87 get_level_size(level, w, h, d);
89 if(ARB_texture_storage)
90 return sub_image(level, 0, 0, 0, w, h, d, fmt, type, data);
92 BindRestore _bind(this);
93 glTexImage3D(target, level, ifmt, width, height, depth, 0, get_upload_format(fmt), type, data);
95 allocated |= 1<<level;
96 if(auto_gen_mipmap && level==0)
99 allocated |= (1<<get_n_levels())-1;
103 void Texture3D::sub_image(unsigned level, int x, int y, int z, unsigned wd, unsigned ht, unsigned dp, PixelFormat fmt, DataType type, const void *data)
105 if(width==0 || height==0 || depth==0)
106 throw invalid_operation("Texture3D::image");
108 Conditional<BindRestore> _bind(!ARB_direct_state_access, this);
111 fmt = get_upload_format(fmt);
112 if(ARB_direct_state_access)
113 glTextureSubImage3D(id, level, x, y, z, wd, ht, dp, fmt, type, data);
115 glTexSubImage3D(target, level, x, y, z, wd, ht, dp, fmt, type, data);
117 if(auto_gen_mipmap && level==0)
121 void Texture3D::load_image(const string &fn, int dp)
126 unsigned w = img.get_width();
127 unsigned h = img.get_height();
133 throw incompatible_data("Texture3D::load_image");
139 for(d=h; d*d>h; d>>=2) ;
142 throw incompatible_data("Texture3D::load_image");
149 throw incompatible_data("Texture3D::load_image");
153 throw invalid_argument("Texture3D::load_image");
155 PixelFormat fmt = pixelformat_from_graphics(img.get_format());
157 storage(storage_pixelformat_from_graphics(img.get_format()), w, h, d);
158 else if(w!=width || h!=height || d!=depth)
159 throw incompatible_data("Texture3D::load_image");
161 PixelStore pstore = PixelStore::from_image(img);
162 BindRestore _bind_ps(pstore);
164 image(0, fmt, UNSIGNED_BYTE, img.get_data());
167 void Texture3D::image(const Graphics::Image &img, bool srgb)
169 unsigned w = img.get_width();
170 unsigned h = img.get_height();
176 throw incompatible_data("Texture3D::load_image");
183 throw incompatible_data("Texture3D::load_image");
188 PixelFormat fmt = pixelformat_from_graphics(img.get_format());
191 unsigned l = (is_mipmapped(min_filter) ? mipmap_levels ? mipmap_levels : 0 : 1);
192 storage(storage_pixelformat_from_graphics(img.get_format(), srgb), w, h, d, l);
194 else if(w!=width || h!=height || d!=depth)
195 throw incompatible_data("Texture3D::load_image");
197 PixelStore pstore = PixelStore::from_image(img);
198 BindRestore _bind_ps(pstore);
200 image(0, fmt, UNSIGNED_BYTE, img.get_data());
203 unsigned Texture3D::get_n_levels() const
205 unsigned s = max(width, height);
206 if(target!=GL_TEXTURE_2D_ARRAY)
209 for(; s; s>>=1, ++n) ;
213 void Texture3D::get_level_size(unsigned level, unsigned &w, unsigned &h, unsigned &d) const
217 if(target!=GL_TEXTURE_2D_ARRAY)
228 UInt64 Texture3D::get_data_size() const
230 return id ? width*height*depth*get_pixel_size(ifmt) : 0;
234 Texture3D::Loader::Loader(Texture3D &t):
235 DataFile::DerivedObjectLoader<Texture3D, Texture::Loader>(t)
240 Texture3D::Loader::Loader(Texture3D &t, Collection &c):
241 DataFile::DerivedObjectLoader<Texture3D, Texture::Loader>(t, c)
246 void Texture3D::Loader::init()
248 add("raw_data", &Loader::raw_data);
249 add("storage", &Loader::storage);
252 void Texture3D::Loader::raw_data(const string &data)
254 obj.image(0, get_base_pixelformat(obj.ifmt), UNSIGNED_BYTE, data.data());
257 void Texture3D::Loader::storage(PixelFormat fmt, unsigned w, unsigned h, unsigned d)
259 obj.storage(fmt, w, h, d);