X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Ftexture3d.cpp;h=0ee2e800086b2b940e634352be929da5b4cacd27;hb=e1be82a4dfce8d90358c506f65be09da4dc9d5ec;hp=0125dd0930a16a8a5dbc6cb5fe3c025cfdaddab9;hpb=4365124bd39bd6edbda6eaef64ec72a1a10565f8;p=libs%2Fgl.git diff --git a/source/core/texture3d.cpp b/source/core/texture3d.cpp index 0125dd09..0ee2e800 100644 --- a/source/core/texture3d.cpp +++ b/source/core/texture3d.cpp @@ -15,7 +15,7 @@ void Texture3D::storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp, { if(width>0) { - if(fmt!=format || wd!=width || ht!=height || dp!=depth || (lv && lv!=levels)) + if(fmt!=format || wd!=width || ht!=height || dp!=depth || (lv && lv!=n_levels)) throw incompatible_data("Texture3D::storage"); return; } @@ -26,9 +26,12 @@ void Texture3D::storage(PixelFormat fmt, unsigned wd, unsigned ht, unsigned dp, width = wd; height = ht; depth = dp; - levels = get_n_levels(); + unsigned size = max(width, height); + if(!is_array()) + size = max(size, depth); + n_levels = count_levels(size); if(lv>0) - levels = min(levels, lv); + n_levels = min(n_levels, lv); allocate(); } @@ -43,7 +46,7 @@ void Texture3D::sub_image(unsigned level, unsigned x, unsigned y, unsigned z, un { if(width==0 || height==0 || depth==0) throw invalid_operation("Texture3D::sub_image"); - if(level>=levels || x>width || x+wd>width || y>height || y+ht>height || z>depth || z+dp>depth) + if(level>=n_levels || x>width || x+wd>width || y>height || y+ht>height || z>depth || z+dp>depth) throw out_of_range("Texture3D::sub_image"); Texture3DBackend::sub_image(level, x, y, z, wd, ht, dp, data); @@ -63,16 +66,6 @@ void Texture3D::image(const Graphics::Image &img, unsigned lv) image(0, img.get_pixels()); } -unsigned Texture3D::get_n_levels() const -{ - unsigned s = max(width, height); - if(!is_array()) - s = max(s, depth); - unsigned n = 0; - for(; s; s>>=1, ++n) ; - return n; -} - LinAl::Vector Texture3D::get_level_size(unsigned level) const { unsigned w = width>>level; @@ -91,11 +84,6 @@ LinAl::Vector Texture3D::get_level_size(unsigned level) const return LinAl::Vector(w, h, d); } -uint64_t Texture3D::get_data_size() const -{ - return id ? width*height*depth*get_pixel_size(storage_fmt) : 0; -} - Texture3D::Loader::Loader(Texture3D &t): DataFile::DerivedObjectLoader(t) @@ -111,16 +99,10 @@ Texture3D::Loader::Loader(Texture3D &t, Collection &c): void Texture3D::Loader::init() { - add("raw_data", &Loader::raw_data); add("storage", &Loader::storage); add("storage", &Loader::storage_levels); } -void Texture3D::Loader::raw_data(const string &data) -{ - obj.image(0, data.data()); -} - void Texture3D::Loader::storage(PixelFormat fmt, unsigned w, unsigned h, unsigned d) { obj.storage(fmt, w, h, d);