X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Fbackends%2Fopengl%2Ftexture2d_backend.cpp;h=578cefe390f0a2ec2bfa4bdb15e73426fef43822;hp=9efc4351e65b47e8c6a08dda88d5cb3d344e4565;hb=b274dc87db4422498e72823649358114dfca0096;hpb=710363bade528b5015a7c472db3aa90eb08207ab diff --git a/source/backends/opengl/texture2d_backend.cpp b/source/backends/opengl/texture2d_backend.cpp index 9efc4351..578cefe3 100644 --- a/source/backends/opengl/texture2d_backend.cpp +++ b/source/backends/opengl/texture2d_backend.cpp @@ -1,3 +1,4 @@ +#include #include #include #include @@ -7,6 +8,8 @@ #include "texture2d.h" #include "texture2d_backend.h" +using namespace std; + namespace Msp { namespace GL { @@ -19,6 +22,7 @@ private: char *mapped_address = 0; Graphics::Image image; Graphics::ImageLoader *img_loader = 0; + DataFile::RawData *raw_data = 0; unsigned n_bytes = 0; int phase = 0; @@ -105,15 +109,27 @@ void OpenGLTexture2D::unload() OpenGLTexture2D::AsyncLoader::AsyncLoader(Texture2D &t, IO::Seekable &i): texture(t), - io(i), - img_loader(Graphics::ImageLoader::open_io(io)) -{ } + io(i) +{ + char magic[4] = { }; + io.read(magic, 4); + io.seek(0, IO::S_BEG); + + if(DataFile::RawData::detect_signature(string(magic, 4))) + { + raw_data = new DataFile::RawData; + raw_data->open_io(io, "async"); + } + else + img_loader = Graphics::ImageLoader::open_io(io); +} OpenGLTexture2D::AsyncLoader::~AsyncLoader() { if(mapped_address) pixel_buffer.unmap(); delete img_loader; + delete raw_data; } bool OpenGLTexture2D::AsyncLoader::needs_sync() const @@ -125,8 +141,13 @@ bool OpenGLTexture2D::AsyncLoader::process() { if(phase==0) { - image.load_headers(*img_loader); - n_bytes = image.get_stride()*image.get_height(); + if(raw_data) + n_bytes = raw_data->get_size(); + else + { + image.load_headers(*img_loader); + n_bytes = image.get_stride()*image.get_height(); + } } else if(phase==1) { @@ -134,7 +155,12 @@ bool OpenGLTexture2D::AsyncLoader::process() mapped_address = reinterpret_cast(pixel_buffer.map()); } else if(phase==2) - image.load_into(*img_loader, mapped_address); + { + if(raw_data) + raw_data->load_into(mapped_address); + else + image.load_into(*img_loader, mapped_address); + } else if(phase==3) { mapped_address = 0; @@ -147,10 +173,13 @@ bool OpenGLTexture2D::AsyncLoader::process() if(!texture.id) texture.create(); - unsigned w = image.get_width(); - unsigned h = image.get_height(); - texture.storage(pixelformat_from_image(image, texture.use_srgb_format), w, h); - texture.OpenGLTexture2D::sub_image(0, 0, 0, w, h, pixel_buffer, 0); + if(img_loader) + { + unsigned w = image.get_width(); + unsigned h = image.get_height(); + texture.storage(pixelformat_from_image(image, texture.use_srgb_format), w, h); + } + texture.OpenGLTexture2D::sub_image(0, 0, 0, texture.width, texture.height, pixel_buffer, 0); if(texture.auto_gen_mipmap) texture.generate_mipmap();