]> git.tdb.fi Git - libs/gl.git/blobdiff - source/texture2d.cpp
Use libmspmath to provide vector and matrix operations
[libs/gl.git] / source / texture2d.cpp
index be4e1a112d08e8c02f189fbcd951dce4dfcdcf2c..0e9b40c6320d0a5514a9bde091abffe5cb131d69 100644 (file)
@@ -1,3 +1,4 @@
+#include <msp/io/memory.h>
 #include "bindable.h"
 #include "error.h"
 #include "texture2d.h"
@@ -20,6 +21,7 @@ void Texture2D::storage(PixelFormat fmt, unsigned wd, unsigned ht)
                throw invalid_operation("Texture2D::storage");
        if(wd==0 || ht==0)
                throw invalid_argument("Texture2D::storage");
+       require_pixelformat(fmt);
 
        ifmt = fmt;
        width = wd;
@@ -99,7 +101,7 @@ void Texture2D::get_level_size(unsigned level, unsigned &w, unsigned &h)
 
 
 Texture2D::Loader::Loader(Texture2D &t):
-       Texture::Loader(t)
+       DataFile::DerivedObjectLoader<Texture2D, Texture::Loader>(t)
 {
        add("image_data", &Loader::image_data);
        add("raw_data", &Loader::raw_data);
@@ -110,20 +112,20 @@ Texture2D::Loader::Loader(Texture2D &t):
 void Texture2D::Loader::image_data(const string &data)
 {
        Graphics::Image img;
-       img.load_memory(data.data(), data.size());
+       IO::Memory mem(data.data(), data.size());
+       img.load_io(mem);
 
-       static_cast<Texture2D &>(obj).image(img);
+       obj.image(img);
 }
 
 void Texture2D::Loader::raw_data(const string &data)
 {
-       Texture2D &t2d = static_cast<Texture2D &>(obj);
-       t2d.image(0, t2d.ifmt, UNSIGNED_BYTE, data.data());
+       obj.image(0, obj.ifmt, UNSIGNED_BYTE, data.data());
 }
 
 void Texture2D::Loader::storage(PixelFormat fmt, unsigned w, unsigned h)
 {
-       static_cast<Texture2D &>(obj).storage(fmt, w, h);
+       obj.storage(fmt, w, h);
 }
 
 void Texture2D::Loader::storage_b(PixelFormat fmt, unsigned w, unsigned h, unsigned)