X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexturecube.cpp;h=54a008ca50930054ee6c99507c27c032f4ff4e6c;hb=cb836adcf11f690188df9b7bc59f3fe87b67aaa7;hp=24d02f4022b2aeac380410ea481a2e392181f8af;hpb=f35535633aab06e80f0666d8551431364654c6dc;p=libs%2Fgl.git diff --git a/source/texturecube.cpp b/source/texturecube.cpp index 24d02f40..54a008ca 100644 --- a/source/texturecube.cpp +++ b/source/texturecube.cpp @@ -1,4 +1,6 @@ +#include #include +#include #include #include #include "bindable.h" @@ -36,6 +38,9 @@ void TextureCube::storage(PixelFormat fmt, unsigned sz) throw invalid_operation("TextureCube::storage"); if(sz==0) throw invalid_argument("TextureCube::storage"); + + if(MSP_sized_internal_formats) + fmt = get_sized_pixelformat(fmt); require_pixelformat(fmt); ifmt = fmt; @@ -47,10 +52,20 @@ void TextureCube::allocate(unsigned level) if(allocated&(1<>=1, ++level) ; - allocated |= (1<(img.get_data()); + unsigned face_size = img.get_stride()*size; + for(unsigned i=0; i<6; ++i) + image(enumerate_faces(i), 0, fmt, UNSIGNED_BYTE, cdata+i*face_size); +} + +unsigned TextureCube::get_n_levels() const +{ + unsigned n = 0; + for(unsigned s=size; s; s>>=1, ++n) ; + return n; +} + +unsigned TextureCube::get_level_size(unsigned level) const { return size>>level; } @@ -191,11 +247,21 @@ TextureCube::Loader::Loader(TextureCube &t, Collection &c): void TextureCube::Loader::init() { + add("external_image", &Loader::external_image); add("image_data", &Loader::image_data); add("raw_data", &Loader::raw_data); add("storage", &Loader::storage); } +void TextureCube::Loader::external_image(TextureCubeFace face, const string &fn) +{ + Graphics::Image img; + RefPtr io = get_collection().open_raw(fn); + img.load_io(*io); + + obj.image(face, img, srgb); +} + void TextureCube::Loader::image_data(TextureCubeFace face, const string &data) { Graphics::Image img;