]> git.tdb.fi Git - libs/gl.git/blobdiff - source/core/texture.cpp
Remove support for array size specialization from the engine as well
[libs/gl.git] / source / core / texture.cpp
index 78053386a1e15e80ca2414d1d6261e19e4ac73ca..5f21229fa8abc2d80c3e0029364bb519bd961bee 100644 (file)
@@ -1,3 +1,4 @@
+#include <msp/datafile/rawdata.h>
 #include <msp/io/memory.h>
 #include "error.h"
 #include "resourcemanager.h"
@@ -87,11 +88,13 @@ Texture::Loader::Loader(Texture &t, Collection *c):
        CollectionObjectLoader<Texture>(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