X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ftexture1d.h;h=5e6f254977f877a20565e131412bb333f6248ab4;hp=9957eeb466fedab882f10e84df69e46d2f9b55d2;hb=975162f86071985913b59a835d38046e1c271594;hpb=744dced516f11d072dc6176fdf2df7e464b9782e diff --git a/source/texture1d.h b/source/texture1d.h index 9957eeb4..5e6f2549 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,8 +8,20 @@ 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 allocated; @@ -21,10 +31,18 @@ public: void storage(PixelFormat, unsigned); 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 &, const Resources * = 0) { return 0; } + virtual UInt64 get_data_size() const; + virtual void unload() { } }; } // namespace GL