X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Ftexture.cpp;h=b8a2614a1da9b697410067a7daaad807476ace7c;hb=e70662d7812464159f2e47f4bebb69d88f89ae93;hp=78053386a1e15e80ca2414d1d6261e19e4ac73ca;hpb=a7948dfc4192efbbf2b5ca9258fd7e72b971f8ea;p=libs%2Fgl.git diff --git a/source/core/texture.cpp b/source/core/texture.cpp index 78053386..b8a2614a 100644 --- a/source/core/texture.cpp +++ b/source/core/texture.cpp @@ -1,3 +1,4 @@ +#include #include #include "error.h" #include "resourcemanager.h" @@ -25,28 +26,8 @@ Texture::Texture(unsigned t): void Texture::set_format(PixelFormat fmt) { PixelComponents comp = get_components(fmt); - PixelComponents st_comp = comp; - FormatSwizzle swiz = NO_SWIZZLE; - switch(comp) - { - case LUMINANCE: - st_comp = RED; - swiz = R_TO_LUMINANCE; - break; - case LUMINANCE_ALPHA: - st_comp = RG; - swiz = RG_TO_LUMINANCE_ALPHA; - break; - case BGR: - st_comp = RGB; - swiz = RGB_TO_BGR; - break; - case BGRA: - st_comp = RGBA; - swiz = RGB_TO_BGR; - break; - default:; - } + ComponentSwizzle swiz = get_required_swizzle(comp); + PixelComponents st_comp = unswizzle_components(comp, swiz); PixelFormat st_fmt = make_pixelformat(st_comp, get_component_type(fmt), is_srgb(fmt)); require_pixelformat(st_fmt); @@ -87,11 +68,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 +91,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 +139,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