X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexturecube.cpp;h=26402695880dc12eba847ccb443fa8cb90fbb02c;hb=4a577ddc946bd279d7bc4942a2ce4c46c7ef5d35;hp=576f1c718b3848aa043cb165b04a578f83500a70;hpb=e079d5a878e83dc0baffcec66a57659c885cd593;p=libs%2Fgl.git diff --git a/source/texturecube.cpp b/source/texturecube.cpp index 576f1c71..26402695 100644 --- a/source/texturecube.cpp +++ b/source/texturecube.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -36,6 +37,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; @@ -76,6 +80,17 @@ void TextureCube::image(TextureCubeFace face, unsigned level, PixelFormat fmt, D } } +void TextureCube::sub_image(TextureCubeFace face, unsigned level, int x, int y, unsigned wd, unsigned ht, PixelFormat fmt, DataType type, const void *data) +{ + if(size==0) + throw invalid_operation("TextureCube::sub_image"); + + allocate(level); + + BindRestore _bind(this); + glTexSubImage2D(face, level, x, y, wd, ht, fmt, type, data); +} + void TextureCube::image(TextureCubeFace face, const Graphics::Image &img, bool srgb) { unsigned w = img.get_width(); @@ -97,6 +112,30 @@ void TextureCube::image(TextureCubeFace face, const Graphics::Image &img, bool s image(face, 0, fmt, UNSIGNED_BYTE, img.get_data()); } +void TextureCube::image(const Graphics::Image &img, bool srgb) +{ + unsigned w = img.get_width(); + unsigned h = img.get_height(); + + if(h!=w*6) + throw incompatible_data("TextureCube::image"); + h /= 6; + + PixelFormat fmt = pixelformat_from_graphics(img.get_format()); + if(size==0) + storage(storage_pixelformat_from_graphics(img.get_format(), srgb), w); + else if(w!=size || h!=size) + throw incompatible_data("TextureCube::image"); + + PixelStore pstore = PixelStore::from_image(img); + BindRestore _bind_ps(pstore); + + const char *cdata = reinterpret_cast(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; @@ -188,11 +227,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;