X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fcore%2Ftexture.cpp;h=5f21229fa8abc2d80c3e0029364bb519bd961bee;hp=78053386a1e15e80ca2414d1d6261e19e4ac73ca;hb=959efbf61663efd7879070ce0447e02c8a447ce0;hpb=a7948dfc4192efbbf2b5ca9258fd7e72b971f8ea diff --git a/source/core/texture.cpp b/source/core/texture.cpp index 78053386..5f21229f 100644 --- a/source/core/texture.cpp +++ b/source/core/texture.cpp @@ -1,3 +1,4 @@ +#include #include #include "error.h" #include "resourcemanager.h" @@ -87,11 +88,13 @@ Texture::Loader::Loader(Texture &t, Collection *c): CollectionObjectLoader(t, c), levels(0) { + add("external_data", &Loader::external_data); add("external_image", &Loader::external_image, false); add("external_image_srgb", &Loader::external_image, true); add("generate_mipmap", &Loader::generate_mipmap); add("image_data", &Loader::image_data); add("mipmap_levels", &Loader::mipmap_levels); + add("raw_data", &Loader::raw_data); } void Texture::Loader::finish() @@ -108,6 +111,19 @@ void Texture::Loader::load_external_image(Graphics::Image &img, const string &fn img.load_io(*io); } +void Texture::Loader::external_data(const string &fn) +{ + if(obj.manager) + obj.manager->set_resource_location(obj, get_collection(), fn); + else + { + DataFile::RawData rd; + rd.open_file(get_collection(), fn); + rd.load(); + obj.image(0, rd.get_data()); + } +} + void Texture::Loader::external_image(bool srgb, const string &fn) { obj.use_srgb_format = srgb; @@ -143,5 +159,13 @@ void Texture::Loader::mipmap_levels(unsigned l) levels = l; } +void Texture::Loader::raw_data(const string &data) +{ + if(obj.manager) + obj.set_manager(0); + + obj.image(0, data.data()); +} + } // namespace GL } // namespace Msp