X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Ftexture2d.cpp;h=0e9b40c6320d0a5514a9bde091abffe5cb131d69;hb=27abdf9ad5d5e297fd74ddc23b39b0c7817a20d8;hp=dfd93f57c42e811a9c15c199083c50bd49d5497b;hpb=41b4cb3002f3551ce1bd6fdf15994ee7bc523788;p=libs%2Fgl.git diff --git a/source/texture2d.cpp b/source/texture2d.cpp index dfd93f57..0e9b40c6 100644 --- a/source/texture2d.cpp +++ b/source/texture2d.cpp @@ -1,3 +1,4 @@ +#include #include "bindable.h" #include "error.h" #include "texture2d.h" @@ -111,7 +112,8 @@ 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); obj.image(img); }