X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexture2d.cpp;h=96da77d1b9aba0400805461f0706c84d017ab60e;hb=e37851b98dde5082ee92570354746f2f92e21940;hp=7a9701f5e616f448465c1335f695b871d3d34d04;hpb=055f553b1a75f44e72f3c2b5a1c98c1e1e8f3f30;p=libs%2Fgl.git diff --git a/source/texture2d.cpp b/source/texture2d.cpp index 7a9701f5..96da77d1 100644 --- a/source/texture2d.cpp +++ b/source/texture2d.cpp @@ -2,6 +2,7 @@ #include "bindable.h" #include "error.h" #include "pixelstore.h" +#include "resources.h" #include "texture2d.h" using namespace std; @@ -46,7 +47,7 @@ void Texture2D::image(unsigned level, PixelFormat fmt, DataType type, const void unsigned h = height; get_level_size(level, w, h); - Bind _bind(this, true); + BindRestore _bind(this); glTexImage2D(target, level, ifmt, w, h, 0, fmt, type, data); allocated |= 1<(t) +{ + init(); +} + +Texture2D::Loader::Loader(Texture2D &t, Collection &c): + DataFile::DerivedObjectLoader(t, c) +{ + init(); +} + +void Texture2D::Loader::init() { add("image_data", &Loader::image_data); add("raw_data", &Loader::raw_data); @@ -119,16 +136,18 @@ void Texture2D::Loader::image_data(const string &data) IO::Memory mem(data.data(), data.size()); img.load_io(mem); - obj.image(img); + obj.image(img, srgb); } void Texture2D::Loader::raw_data(const string &data) { - obj.image(0, obj.ifmt, UNSIGNED_BYTE, data.data()); + obj.image(0, get_base_pixelformat(obj.ifmt), UNSIGNED_BYTE, data.data()); } void Texture2D::Loader::storage(PixelFormat fmt, unsigned w, unsigned h) { + if(srgb) + fmt = get_srgb_pixelformat(fmt); obj.storage(fmt, w, h); }