X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftexture1d.h;h=506356c77676d98cea1a01d52d8a8f373a71f024;hp=ea673c3b8b8a606326e78963cdbe30b35fb3cc50;hb=4e4a3514961d130045619ea74d0bbab71580838c;hpb=4d7f66ea28c788e12f700216b9c53af9e71b8390 diff --git a/source/texture1d.h b/source/texture1d.h index ea673c3b..506356c7 100644 --- a/source/texture1d.h +++ b/source/texture1d.h @@ -1,8 +1,6 @@ #ifndef MSP_GL_TEXTURE1D_H_ #define MSP_GL_TEXTURE1D_H_ -#include "datatype.h" -#include "pixelformat.h" #include "texture.h" namespace Msp { @@ -10,24 +8,40 @@ namespace GL { class Texture1D: public Texture { +public: + class Loader: public DataFile::DerivedObjectLoader + { + public: + Loader(Texture1D &); + Loader(Texture1D &, Collection &); + private: + void init(); + + void raw_data(const std::string &); + void storage(PixelFormat, unsigned); + }; + private: - PixelFormat ifmt; unsigned width; + unsigned levels; unsigned allocated; public: Texture1D(); - void storage(PixelFormat, unsigned); + void storage(PixelFormat, unsigned, unsigned = 0); void allocate(unsigned); void image(unsigned, PixelFormat, DataType, const void *); + void sub_image(unsigned, int, unsigned, PixelFormat, DataType, const void *); + virtual void image(const Graphics::Image &, bool = false); unsigned get_width() const { return width; } private: - unsigned get_level_size(unsigned); + unsigned get_n_levels() const; + unsigned get_level_size(unsigned) const; public: - virtual AsyncLoader *load(IO::Seekable &) { return 0; } + virtual AsyncLoader *load(IO::Seekable &, const Resources * = 0) { return 0; } virtual UInt64 get_data_size() const; virtual void unload() { } };