X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexturecube.cpp;h=3c6f23bd94f05443fd5e872febca8edf19555875;hb=0221e39a685c4f3122a0fae032a7888b5ce40579;hp=7f5250ee99e1381195977b1a40e12b77a8220839;hpb=4d7f66ea28c788e12f700216b9c53af9e71b8390;p=libs%2Fgl.git diff --git a/source/texturecube.cpp b/source/texturecube.cpp index 7f5250ee..3c6f23bd 100644 --- a/source/texturecube.cpp +++ b/source/texturecube.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -47,8 +48,10 @@ 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_level_size(unsigned level) { return size>>level; @@ -187,11 +213,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;